/* Custom Properties */
:root {
    --color-bg-primary: #FDFDFD;
    --color-bg-secondary: #F8F6F0;
    --color-bg-tertiary: #EFEBE0;
    --color-text-main: #2A2A2A;
    --color-text-muted: #6B6965;
    --color-glass-text: #FFFFFF;
    --color-glass-muted: rgba(255, 255, 255, 0.7);
    --color-accent: #6d5335;
    --color-accent-hover: #523e28;

    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.08);

    /* Fluid Design Tokens - Refined for better mobile scaling */
    --fluid-100: clamp(50px, 12vw, 100px);
    --fluid-80: clamp(35px, 10vw, 80px);
    --fluid-margin: clamp(15px, 4vw, 100px);
    --fluid-radius: clamp(15px, 3vw, 40px);
    --fluid-h1: clamp(2rem, 10vw, 5rem);
    --fluid-h2: clamp(1.5rem, 6vw, 3rem);
    --fluid-h3: clamp(1.2rem, 4vw, 2.2rem);
    --fluid-p: clamp(0.95rem, 1.1vw, 1.2rem);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: transparent;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 600;
    /* Sora looks better at 600 for general headings */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.text-center {
    text-align: center;
}

.pointer-none {
    pointer-events: none;
}

/* Global Fixed Background */
.global-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.global-bg img,
.global-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Card-like sections */
section:not(.hero) {
    width: 96%;
    max-width: 1500px;
    margin: 0 auto var(--fluid-margin);
    border-radius: var(--fluid-radius);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-glass-text);
}

section:not(.hero) .section-heading p,
section:not(.hero) .highlights li,
section:not(.hero) .story-text p,
section:not(.hero) .quote,
section:not(.hero) .customer-info span,
section:not(.hero) .about-content {
    color: var(--color-glass-muted) !important;
}

section:not(.hero) h2,
section:not(.hero) h3,
section:not(.hero) h4,
section:not(.hero) .step-num {
    color: var(--color-glass-text);
}

.footer {
    width: 96%;
    max-width: 1500px;
    margin: 0 auto var(--fluid-margin);
    border-radius: var(--fluid-radius);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: #624a2f;
    /* Darker solid brown */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Buttons */
button,
.cta-primary,
.cta-secondary {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 100px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.cta-primary {
    background-color: #3d2e1e;
    color: #fff;
    font-weight: 500;
}

.cta-primary:hover {
    background-color: #2a2015;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-primary i {
    transition: transform 0.3s ease;
}

.cta-primary:hover i {
    transform: translateX(5px);
}

.cta-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.cta-text {
    background: none;
    color: #3d2e1e;
    padding: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-text i {
    transition: transform 0.3s ease;
}

.cta-text:hover i {
    transform: translateX(5px);
}

/* Typography Hierarchy */
.section-padding {
    padding: var(--fluid-100) 5%;
}

.section-heading {
    margin-bottom: var(--fluid-80);
}

.section-heading h2 {
    font-size: var(--fluid-h2);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-heading p {
    font-size: var(--fluid-p);
    color: var(--color-glass-muted);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 40px 15px; /* Reduced vertical padding and consistent horizontal */
    }

    .section-heading h2 {
        font-size: var(--fluid-h2);
        margin-bottom: 10px;
    }

    .section-heading {
        margin-bottom: 30px;
    }
    
    .section-heading p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 5%;
}

.navbar .logo {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo {
    color: #fff;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1;
}

.navbar.scrolled .nav-links a {
    color: #fff;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.navbar .nav-cta {
    padding: 10px 24px;
    border-radius: 50px !important;
    color: #fff !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center horizontally */
    text-align: center;
    /* Center text */
    padding: 0 10%;
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: var(--fluid-h1);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: var(--fluid-p);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 650px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: clamp(10px, 2vw, 20px);
    margin-bottom: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.urgency-cue {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.urgency-cue a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

/* Experiences */
.experiences {
    background-color: rgba(255, 255, 255, 0.05);
    /* very light glass */
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(15px, 2vw, 25px);
}

#bedouin-experience .section-heading h2,
#canopy-village .section-heading h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(30px, 5vw, 60px);
    max-width: 1200px;
    margin: 0 auto;
}

.company-stats-container {
    display: flex;
    gap: clamp(40px, 8vw, 80px);
    margin-bottom: var(--fluid-80);
    align-items: center;
    flex-wrap: wrap;
}

.company-stats-container > div {
    flex: 1;
    min-width: min(100%, 450px);
}


.experience-card,
.package-card,
.testimonial-card,
.glass-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.experience-card:hover,
.package-card:hover,
.testimonial-card:hover,
.glass-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.card-img-wrapper {
    height: 300px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.package-cost {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--color-text-muted);
}

.highlights i {
    color: var(--color-accent);
    width: 20px;
    text-align: center;
}

/* Storytelling */
.storytelling {
    padding: 50px 0;
    background-color: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.story-step {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 50px 10%;
    gap: 80px;
}

.story-step.reverse {
    flex-direction: row-reverse;
}

.story-img {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 60vh;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text {
    flex: 1;
    max-width: 500px;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(109, 83, 53, 0.25);
    display: block;
    margin-bottom: -10px;
    line-height: 1;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}



/* Our Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin: 40px auto 0;
    max-width: 1000px;
    justify-items: center;
}

.team-card {
    text-align: center;
    transition: var(--transition-smooth);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0;
    width: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--color-accent);
    box-shadow: var(--shadow-soft);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.2rem;
    color: var(--color-glass-text);
}


/* Trust / Proof */
.trust-proof {
    background-color: rgba(255, 255, 255, 0.05);
}

.stars-mini {
    color: #ffb400; /* TripAdvisor yellow/gold */
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Marquee Styles */
.marquee-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 40px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    width: 400px;
    margin: 0 15px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.quote {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
}

/* Base Customer Info Indent */
.customer-info strong {
    display: block;
    color: var(--color-text-main);
    font-size: 1rem;
}

.customer-info span {
    font-size: 0.8rem;
    color: var(--color-glass-muted);
}

/* Experiences Section & Slider */
.experiences {
    height: 600px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-card {
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
    width: 100%;
}

.cat-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease;
}

.cat-card:hover img {
    transform: scale(1.1);
}

.cat-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    pointer-events: none;
}

.cat-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}



/* Footer Element */
.footer {
    padding: 80px 10% 40px;
    background: rgba(255, 255, 255, 0.05); /* Translucent glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px 50px 0 0;
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer-cta {
    text-align: center;
    margin-bottom: 80px;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #3d2b1a;
    /* Deeper dark brown */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.socials a:hover {
    color: var(--color-accent);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        top: 0;
        width: 100%;
        padding: 10px 5%;
        border-radius: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 380px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        flex-direction: column;
        justify-content: center;
        gap: 50px;
        transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 9998 !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        padding: 60px 10%;
    }

    .nav-container .nav-cta {
        width: 100% !important;
        padding: 16px 30px !important;
        font-size: 1.1rem;
    }

    .nav-container.show-menu {
        right: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .nav-links a {
        color: #fff;
        font-size: 1.4rem;
        font-weight: 500;
        text-align: center;
        width: 100%;
        padding: 10px 0;
        transition: color 0.3s ease;
    }

    .nav-container.show-menu .nav-links a {
        opacity: 0;
        transform: translateY(20px);
        animation: slideInFade 0.5s forwards;
    }

    @keyframes slideInFade {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-container.show-menu .nav-links a:nth-child(1) { animation-delay: 0.1s; }
    .nav-container.show-menu .nav-links a:nth-child(2) { animation-delay: 0.2s; }
    .nav-container.show-menu .nav-links a:nth-child(3) { animation-delay: 0.3s; }
    .nav-container.show-menu .nav-links a:nth-child(4) { animation-delay: 0.4s; }
    .nav-container.show-menu .nav-links a:nth-child(5) { animation-delay: 0.5s; }


    .navbar .logo {
        position: relative;
        z-index: 1002;
        height: 35px; /* Slightly smaller logo on mobile */
    }

    .nav-toggle {
        position: relative;
        z-index: 1002;
    }

    .section-heading h2 {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .story-step {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
        padding: 60px 5%;
        min-height: auto;
    }

    .story-img {
        width: 100%;
        height: 400px;
    }

    .story-text {
        max-width: 100%;
    }

    .story-text p {
        margin: 0 auto;
    }

    .carousel-track {
        flex-direction: column;
    }

    .footer-links {
        gap: 40px;
    }
}

/* ==========================================================================
   Responsive Design System
   ========================================================================== */

/* Laptop & Large Tablets (1200px) */
@media (max-width: 1200px) {

    .packages-section .container,
    #tours-packages,
    #experiences {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-title {
        font-size: 4rem;
    }
}

/* Tablets (992px) */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        height: auto !important;
    }

    .category-grid a {
        height: 300px !important;
    }

    #tours-packages .experience-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .company-stats-container {
        flex-direction: column !important;
        gap: 60px !important;
        text-align: center;
    }

    .company-stats-container>div {
        width: 100% !important;
    }

    /* Stack stats into grid on tablet */
    .company-stats-container div[style*="display: grid"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }

    .company-stats-container div[style*="justify-content: center"] {
        align-items: center !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 2.8rem) !important;
        line-height: 1.2;
        margin-bottom: 25px;
        letter-spacing: -1px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 30px;
        gap: 15px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        padding: 16px 20px;
    }

    .category-grid {
        grid-template-columns: 1fr !important;
    }

    #tours-packages .experience-grid {
        grid-template-columns: 1fr !important;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .company-stats-container h2 {
        font-size: 2rem !important;
        margin-bottom: 20px !important;
    }

    /* Stack stats vertically on mobile */
    .company-stats-container div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    section:not(.hero),
    .experiences,
    .footer {
        width: 95% !important; /* Slightly more edge-to-edge but with breathing room */
        margin-left: auto !important;
        margin-right: auto !important;
        border-radius: 20px !important; /* Slightly smaller radius for mobile */
        margin-bottom: 30px !important; /* Tighter vertical flow */
        max-width: none !important;
    }

    .experiences {
        height: 550px !important;
        padding: 0 !important;
    }

    .category-grid.is-slider {
        display: flex !important;
        grid-template-columns: none !important;
        width: 400% !important;
        height: 100% !important;
        cursor: grab;
    }

    .category-grid.is-slider .cat-card {
        flex: 0 0 25% !important;
        height: 100% !important;
    }

    .footer {
        padding: 50px 5% !important;
    }

    .footer-content {
        flex-direction: column;
        text-align: left;
    }

    .footer-brand {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .footer-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }

    .socials {
        justify-content: flex-start;
    }

    .cta-banner {
        display: none !important;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 cols on small mobile, too much space if 1 */
        gap: 20px;
    }

    .stat-counter {
        font-size: 2.5rem !important;
    }

    .company-stats-container h2 {
        font-size: 1.6rem !important;
    }

    .logo {
        font-size: 1.1rem;
    }
}

/* Packages Page - New Structure */
.packages-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 20px;
}

.sidebar-filters {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.search-box input:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.15);
}

.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent);
}

.price-inputs {
    display: flex;
    gap: 12px;
}

.price-inputs input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-glass-muted);
    transition: color 0.3s ease;
}

.filter-item input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-accent);
}

.filter-item:hover {
    color: #fff;
}

.clear-filters {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: 50px;
    margin-top: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 0.9rem;
}

.clear-filters:hover {
    background: var(--color-accent);
    color: #fff;
}

.results-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.results-count {
    font-size: 0.95rem;
    color: var(--color-glass-muted);
}

.control-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-select {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    outline: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.view-toggles {
    display: flex;
    gap: 12px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.view-toggles i {
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--color-glass-muted);
    transition: 0.3s;
}

.view-toggles i.active, .view-toggles i:hover {
    color: var(--color-accent);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.page-link.active, .page-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(109, 83, 53, 0.3);
}

.package-meta {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    font-size: 0.85rem;
    color: var(--color-glass-muted);
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-meta span i {
    color: var(--color-accent);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .packages-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sidebar-filters {
        position: static;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .results-controls {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .control-group {
        width: 100%;
        justify-content: space-between;
    }
}

/* Reservation Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.reservation-modal {
    background: rgba(25, 20, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 550px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .reservation-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 1;
}

.modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.reservation-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #c4a484;
}

.submit-reservation {
    grid-column: 1 / -1;
    background: #3d2b1a;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.3s, background 0.3s;
}

.submit-reservation:hover {
    transform: translateY(-2px);
    background: #4d3a2a;
}

@media (max-width: 600px) {
    .reservation-form {
        grid-template-columns: 1fr;
    }
    
    .reservation-modal {
        padding: 30px 20px;
    }
}
/* Footer Bottom Updates */
.footer-bottom-info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Footer Bottom Right Alignment */
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-bottom-right {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: center;
    }
}

/* Floating WhatsApp Widget Styling */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Pulse animation for the trigger button */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-trigger {
    background-color: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: wa-pulse 2s infinite;
    padding: 0;
    position: relative;
}

.whatsapp-trigger:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

.whatsapp-trigger i {
    pointer-events: none;
}

.whatsapp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #e53935;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.whatsapp-popup {
    width: 360px;
    max-width: calc(100vw - 40px);
    background-color: #f0f0f0;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    margin-bottom: 15px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-popup.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-popup-header {
    background-color: #075e54;
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.whatsapp-avatar {
    position: relative;
    margin-right: 15px;
}

.whatsapp-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 11px;
    height: 11px;
    background-color: #4CAF50;
    border-radius: 50%;
    border: 2px solid #075e54;
}

.whatsapp-header-text h4 {
    margin: 0 0 2px 0;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    color: #ffffff;
}

.whatsapp-header-text p {
    margin: 0;
    font-size: 12px;
    opacity: 0.85;
}

.whatsapp-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    color: #ffffff;
    font-size: 24px;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    padding: 0;
    line-height: 1;
}

.whatsapp-close-btn:hover {
    opacity: 1;
}

.whatsapp-popup-body {
    padding: 20px;
    max-height: 250px;
    overflow-y: auto;
    background-color: #efeae2;
    flex-grow: 1;
}

.whatsapp-message {
    background-color: #ffffff;
    padding: 12px 15px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    max-width: 90%;
    position: relative;
}

.whatsapp-sender-name {
    font-size: 11px;
    font-weight: bold;
    color: #075e54;
    margin: 0 0 4px 0;
}

.whatsapp-message-text {
    font-size: 13.5px;
    color: #111111;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.whatsapp-message-time {
    font-size: 10px;
    color: #888888;
    text-align: right;
    display: block;
}

.whatsapp-popup-footer {
    background-color: #ffffff;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-popup-footer input {
    flex: 1;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background-color: #fafafa;
}

.whatsapp-popup-footer input:focus {
    border-color: #075e54;
}

.whatsapp-popup-footer button {
    background-color: #075e54;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.whatsapp-popup-footer button:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

/* Adjust layout on mobile devices */
@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-popup {
        width: 320px;
        bottom: 75px;
        position: fixed;
        right: 20px;
    }
}



