/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Navy, Gold, White Theme */
    --primary: #B99253;
    --primary-light: #7B3900;
    --accent: #7B3900;
    --accent-dark: #263b66;
    --background: hsl(0, 0%, 100%);
    --secondary: hsl(220, 30%, 98%);
    --text: hsl(220, 20%, 20%);
    --text-muted: hsl(220, 10%, 50%);
    --border: hsl(220, 15%, 90%);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.4);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-arabic: 'Cairo', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
/* ===============================
   Top Contact Bar (Responsive)
=============================== */
.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    background: #0f172a;
    padding: 6px 12px;
    font-size: 14px;
    z-index: 1100;

    display: flex;
    justify-content: center;
}

.top-contact-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap; /* مهم جداً للموبايل */
    justify-content: center;
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #e5e7eb;
    text-decoration: none;
    white-space: nowrap;

    transition: color 0.3s ease;
}

.contact-item i {
    width: 16px;
    height: 16px;
    color: #caa45c;
}

/* Hover */
.contact-item:hover {
    color: #caa45c;
}

/* ===============================
   Mobile Adjustments
=============================== */
@media (max-width: 768px) {
    .top-contact-bar {
        font-size: 13px;
        padding: 6px 8px;
    }

    .top-contact-left {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .top-contact-bar {
        font-size: 9px;
    }

    .contact-item i {
        width: 10px;
        height: 10px;
    }
}


/* ===========================
   Header
=========================== */
.header {
    position: fixed;
    top: 36px; /* ارتفاع Top Bar */
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

/* مسافة للمحتوى عشان ميدخلش تحت الهيدر */
body {
    padding-top: 110px; /* Top bar + header */
}

/* ===========================
   Navbar
=========================== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    text-decoration: none; /* مهم علشان اللينك */
    color: var(--primary);

    font-weight: 700;
    font-size: 1.25rem;

    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

/* الصورة */
.logo img,
.logo-image {
    width: 45px;
    height: 45px;
    object-fit: cover;

    border-radius: 50%;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-gold);

    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* النص */
.logo-text {
    white-space: nowrap;
}

/* ===========================
   Navigation Menu
=========================== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-dark);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

/* ===========================
   Dropdown Menu
=========================== */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: " ▾";
    font-size: 0.75rem;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 180px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1200;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background: var(--primary);
    color: #fff;
}

/* ===========================
   Mobile
=========================== */


/* ===========================
   Sign In Button
=========================== */
.btn-sign-in {
    padding: 0.625rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sign-in:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ===========================
   Mobile Menu Button
=========================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* =========================
   Hero Slider Wrapper
========================= */
.hero-slider {
    margin-top: -100px;
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

/* =========================
   Slider Container
========================= */
.slider-container {
    position: relative;
    height: 100%;
}

/* =========================
   Slides
========================= */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   Overlay Content
========================= */
.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.7)
    );
    color: #fff;
    text-align: center;
    z-index: 5;
}

.slide-content .container {
    max-width: 900px;
    padding: 0 20px;
}

/* =========================
   Typography (IMPROVED)
========================= */
.slide-title {
    font-size: clamp(1rem, 3vw, 2rem); 
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.9s ease-out;
}

.slide-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    margin-bottom: 2.2rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 0.9s ease-out 0.2s backwards;
}

/* =========================
   Primary Button
========================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.4rem;
    background: var(--accent);
    color: var(--primary);
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: fadeInUp 0.9s ease-out 0.4s backwards;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

/* =========================
   Navigation Buttons
========================= */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.25s ease;
}

.slider-btn svg {
    width: 22px;
    height: 22px;
    color: #222;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

/* =========================
   Slider Dots (Optional)
========================= */
.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.slider-dots span.active {
    background: var(--accent);
}

/* =========================
   Animations
========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   Responsive Tweaks
========================= */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 580px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
    }

    .slider-btn.prev {
        left: 1rem;
    }

    .slider-btn.next {
        right: 1rem;
    }
}





.video-reviews-section {
    padding: 60px 0;
    background: var(--secondary);
    color: var(--text);
}

.video-reviews-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-reviews-section .section-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.video-reviews-section .section-description {
    font-size: 1rem;
    color: var(--text-muted);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-gold);
    transition: transform 0.3s ease;
}

.video-card iframe:hover {
    transform: scale(1.05);
}


/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-arabic);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-arabic);
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, var(--background), var(--secondary));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.stat-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: rgba(212, 175, 55, 0.2);
}

.stat-icon svg {
    color: var(--accent-dark);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-arabic);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== Packages Section ===== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Card */
.package-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 200, 0, 0.3); /* gold-ish shadow */
}

/* Image */
.package-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

/* Overlay */
.package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 35, 66, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.package-card:hover .package-overlay {
    opacity: 1;
}

/* Content */
.package-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Title */
.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2342; /* primary color */
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.package-card:hover .package-title {
    color: #d4af37; /* accent dark */
}

/* Info */
.package-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d; /* muted text */
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.package-info svg {
    color: #d4af37; /* accent dark */
}

/* Badge */
.package-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d4af37;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
}

/* Button */
.btn-package {
    width: 100%;
    padding: 0.875rem;
    background: #ffc107; /* accent */
    color: #1a2342; /* primary */
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    margin-top: auto;
}

.btn-package:hover {
    background: #d4af37; /* accent dark */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .package-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .package-title {
        font-size: 1.3rem;
    }

    .package-info {
        font-size: 0.85rem;
    }

    .package-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .package-image {
        height: 160px;
    }

    .package-title {
        font-size: 1.2rem;
    }
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(to bottom, var(--secondary), var(--background));
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars svg {
    color: var(--accent-dark);
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-gold);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.review-name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.review-location {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars svg {
    color: var(--accent-dark);
}

.review-text {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.9rem;
}
.package-card {
    position: relative;
}

.package-card .package-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}
/* =========================
   FAQ Section
========================= */
.faq-section {
    background: var(--background);
}

/* FAQ List */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-gold);
}

/* FAQ Question */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    background: transparent;
    border: none;
    font-family: var(--font-arabic);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    text-align: right;
    direction: rtl;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-dark);
}

/* FAQ Icon */
.faq-icon {
    color: var(--accent-dark);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    pointer-events: none; /* prevent click issues */
}

/* Rotate icon when active */
.faq-item.active .faq-icon,
.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.2s ease;
    opacity: 0;
}

/* Open state */
.faq-item.active .faq-answer,
.faq-question.active + .faq-answer {
    max-height: 1000px;
    opacity: 1;
}

/* FAQ Answer Text */
.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-family: var(--font-arabic);
    color: var(--text);
    text-align: right;
    line-height: 1.8;
}
/* Owner Section */
.owner-section {
    background: var(--secondary);
}

.owner-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.owner-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.owner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.owner-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.owner-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.partner-card {
    text-align: center;
}

.partner-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent);
    box-shadow: var(--shadow);
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.partner-title {
    color: var(--text-muted);
    font-weight: 500;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    background: var(--secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    width: auto;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item svg {
    color: var(--accent-dark);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-muted);
}
/* =========================
   Footer
========================= */

.footer {
    background: linear-gradient(
        to bottom,
        var(--secondary),
        var(--background)
    );
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

/* =========================
   Footer Layout
========================= */

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* =========================
   Brand Section
========================= */

.footer-title {
    font-family: var(--font-arabic);
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    max-width: 420px;
}

/* =========================
   Social Icons
========================= */

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 2.6rem;
    height: 2.6rem;
    background: linear-gradient(
        135deg,
        rgba(185, 146, 83, 0.12),
        rgba(123, 57, 0, 0.12)
    );
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );
    color: #fff;
    transform: translateY(-4px);
}

/* =========================
   Headings
========================= */

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* =========================
   Links
========================= */

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

/* =========================
   Contact Info
========================= */

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* =========================
   Footer Bottom
========================= */

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================
   Flag Counter
========================= */

.footer-flag-counter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-flag-counter img {
    max-width: 160px;
    opacity: 0.85;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-flag-counter img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* =========================
   Bottom Links
========================= */

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
}

.footer-links-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--primary);
}

/* =========================
   Responsive
========================= */

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 57px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .btn-sign-in {
        display: none;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn.prev {
        left: 1rem;
    }
    
    .slider-btn.next {
        right: 1rem;
    }
    
    .owner-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .owner-text .section-title {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid,
    .packages-grid,
    .reviews-grid,
    .partners-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .btn-primary {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}



















.floating-book-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1.6rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: 0.3s ease;
    z-index: 9999;
    font-size: 1rem;
}

.floating-book-btn:hover {
    transform: translateY(-3px);
}

.floating-book-btn .btn-icon {
    display: none;
}

@media (max-width: 768px) {
    .floating-book-btn {
        border-radius: 50%;
        width: 58px;
        height: 58px;
        padding: 0;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
    }

    .floating-book-btn .btn-text {
        display: none;
    }

    .floating-book-btn .btn-icon {
        display: block;
        font-size: 1.6rem;
    }
}





/* ================================
   MODAL OVERLAY
================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
    z-index: 999999;
    padding: 1.5rem; 
}

/* ================================
   MODAL BOX
================================ */
.modal-box {
    background: var(--background);
    width: 100%;
    max-width: 550px;
    border-radius: 1rem;
    box-shadow: var(--shadow-gold);
    position: relative;
    
    /* علشان لو المحتوى طويل، يبقى فيه scroll داخلي */
    max-height: 90vh;
    overflow-y: auto;

    padding: 2rem 1.8rem;
    animation: fadeIn var(--transition);
}

/* Scroll Styling */
.modal-box::-webkit-scrollbar {
    width: 6px;
}
.modal-box::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* ================================
   CLOSE BUTTON
================================ */
.modal-close {
    position: sticky;  
    top: 0;
    right: 0;
    float: right; 
    background: white;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.35rem 0.6rem;
    border-radius: 0.4rem;
    color: var(--text-muted);
    transition: var(--transition);
    z-index: 99999999;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
.modal-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* ================================
   HEADER
================================ */
.modal-header {
    text-align: center;
    margin-bottom: 1.8rem;
}
.modal-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.modal-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--accent-dark);
}
.modal-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================================
   FORM 
================================ */

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-dark);
}

/* Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}
.form-group.wide {
    grid-column: span 2;
}

/* Labels */
.form-group label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.35rem;
    display: block;
}
.form-group label span {
    color: var(--primary);
}

/* Inputs */
input, select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 0.6rem;
    font-size: 1rem;
    transition: var(--transition);
}
input:focus, select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(185, 146, 83, 0.25);
    outline: none;
}

/* ================================
   BUTTONS
================================ */
.form-actions {
    margin-top: 1.5rem;
    text-align: right;
}
.btn-next {
    padding: 0.85rem 1.7rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.6rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}
.btn-next:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 600px) {

    .modal-box {
        max-height: 85vh;
        padding: 1.6rem 1.2rem;
    }

    .modal-close {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.wide {
        grid-column: span 1;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}










/* ===========================
   Visit Modal (Premium Style)
=========================== */
.visit-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    font-family: var(--font-primary);
}

.visit-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(38, 59, 102, 0.85),
        rgba(0, 0, 0, 0.75)
    );
}

.visit-box {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 22px;
    box-shadow: var(--shadow-gold);
    text-align: center;
    animation: scaleIn 0.45s ease;
}

.visit-box h2 {
    color: var(--accent-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.visit-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.visit-box input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 0.95rem;
}

.visit-box input:focus {
    outline: none;
    border-color: var(--primary);
}

.visit-box button {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    border: none;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.visit-box button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Close Button - Top Right */
.visit-close {

    position:relative;
    border-radius: 50%;
    border: none;
    background: var(--accent-dark);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.visit-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
