/* akash updated */
/*
 * General Styles
 * Global variables, resets, and common elements like body, h1-h3, and .container.
 */
:root {
    --navy-blue: #0A214A; /* Primary - Dark Navy Blue */
    --gold: #D4AF37; /* Accent - Gold */
    --white: #ffffff; /* surface/card BG - White */
    --light-grey: #f5f5f5; /* Neutral - Light Grey */
    --dark-grey: #333; /* Neutral - Dark Grey */
    --muted-grey: #6b7280; /* Muted Gray */
    --dark-section: #0f1724; /* footer - Dark Section Background */
    --very-light-gray: #f5f7fa; /* Section bg - Very Light Gray */
    --section-gap: 80px;
    --container-width: 1200px;

        /* Typography */
    --primary-font: 'Poppins', sans-serif; /* Body font */
    --heading-font: 'Playfair Display', serif; /* Heading font */
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    color: var(--dark-grey);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: var(--section-gap) 0;
}

/*
 * Utility Styles
 * Common classes and components used across all pages.
 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy-blue);
    border-color: var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-secondary {
    background-color: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--navy-blue);
    border-color: var(--navy-blue);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--navy-blue);
    border: 2px dashed var(--navy-blue);
}

.btn-tertiary:hover {
    background-color: var(--navy-blue);
    color: var(--white);
}

/* A general sticky button style, used on membership page */
.btn-join {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 12px 0;
    font-size: 1rem;
    background-color: var(--navy-blue);
    color: var(--white);
    border-radius: 8px;
    transition: background-color 0.3s;
    text-decoration: none;
    text-align: center;
}

.btn-join:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
}

.cta-buttons a {
    text-decoration: none;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 5px;
    margin: 10px;
}

/*
 * Header & Navigation
 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    z-index: 100;
}

.header.sticky {
    position: sticky;
    top: 0;
}

.logo img {
    height: 50px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark-grey);
    padding: 10px 15px;
    display: block;
}

.nav-menu li a:hover {
    color: var(--navy-blue);
}

.login-button {
    background-color: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    margin-right: 0;
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: transparent;
    color: var(--navy-blue);
}

.cta-button {
    background-color: var(--gold);
    color: var(--navy-blue);
    border-color: var(--gold);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--gold);
}

.hamburger {
    font-size: 39px;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--navy-blue);
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background: rgba(10, 61, 145, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-grey);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    z-index: 1000;
}

.side-drawer.active {
    width: 75%;
    right: 0;
}

.side-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.side-drawer .close-btn {
    font-size: 10vw;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--navy-blue);
}

.side-drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.side-drawer-nav a {
    text-decoration: none;
    font-size: 18px;
    color: var(--dark-grey);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.side-drawer-nav a:hover {
    color: var(--navy-blue);
}

.side-drawer-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 950px) {
    .nav-wrapper {
        display: none;
    }

    .hamburger {
        display: block;
        position: static;
        font-size: 2rem;
        color: var(--navy-blue);
    }
}

/*testimonials carousel overrides*/

/* 5. Member Testimonials (No Change) */
/* .testimonials-section {
    background-color: var(--white);
}

.testimonial-carousel-container {
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 20px;
}

.testimonial-card {
    background-color: var(--light-grey);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.reviewer .name {
    font-weight: 600;
    margin-top: 5px;
}

.reviewer .stars {
    color: var(--gold);
    font-size: 1rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.carousel-nav .dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-nav .dot.active {
    background-color: var(--navy-blue);
} */

/*
 * Testimonial Section Styles
 * Focus on mobile responsiveness and proper content display.
 */

/*
 * Testimonial Section Styles - REVISED FIX
 * Focus on eliminating horizontal overflow/clipping on small screens.
 */

.testimonials-section {
    background-color: var(--white);
    /* Set overflow hidden on the section itself to prevent horizontal scroll from carousel */
    overflow: hidden; 
}

/* Override .container padding for this specific section on small screens */
@media (max-width: 768px) {
    .testimonials-section > .container {
        /* Reduce the default 0 20px padding of the .container to allow carousel wider space */
        padding: 0 0; 
    }
}

.testimonial-carousel-container {
    overflow: hidden;
    position: relative;
    /* Removed padding here, as we'll use padding on the slide/card now */
    padding: 0; 
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    /* This padding acts as the gutter/margin for the card within the carousel. 
       Use it to control spacing from the edge of the screen. */
    padding: 0 20px; 
}

.testimonial-card {
    background-color: var(--light-grey);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    width: 100%; /* Ensure it always takes full width of its slide minus padding */
    margin: 0 auto; 
}

/* Mobile-specific adjustments for the card and slide */
@media (max-width: 768px) {
    .testimonial-slide {
        /* On mobile, use a slightly smaller gutter */
        padding: 0 15px; 
    }

    .testimonial-card {
        padding: 30px 20px; /* Adjusted padding inside the card for mobile */
        width: 300px; /* Allow full width on small screens */
    }

    .testimonial-card p {
        font-size: 1rem; /* Slightly smaller font for better fit */
        text-align: center;
        word-break: break-word; /* Essential for text wrapping */
    }
}

/* Remaining styles for text, stars, and navigation */
.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    text-align: center; 
}

.reviewer .name {
    font-weight: 600;
    margin-top: 5px;
}

.reviewer .stars {
    color: var(--gold);
    font-size: 1rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.carousel-nav .dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-nav .dot.active {
    background-color: var(--navy-blue);
}

/*
 * Footer
 */
footer {
    position: relative;
    background: var(--dark-section);
    background: linear-gradient(375deg,var(--navy-blue) 50%, var(--dark-section) 100%);
    color: var(--white);
    padding: 60px 20px;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    z-index: 2;
    position: relative;
    padding-bottom: 20px;
}

.footer-column h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-column li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--gold);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--dark-section);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--light-grey);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.badge i {
    color: var(--gold);
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--muted-grey);
    font-size: 14px;
    line-height: 1.5;
}

.contact-icon {
    color: var(--gold);
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: var(--muted-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom .copyright {
    color: var(--muted-grey);
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-links a {
    color: var(--muted-grey);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--gold);
}

.footer-brand {
    position: static;
    margin-top: 20px;
    text-align: center;
    z-index: 1;
    user-select: none;
}

.footer-brand h2 {
    font-size: clamp(1rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.footer-brand p {
    font-size: clamp(0.8rem, 1.2vw, 1.2rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin: 5px 0 0;
    letter-spacing: 1px;
    white-space: normal;
}

footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns:  1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }
    .footer-column h3 {
        margin-top: 30px;
    }
    .social-icons {
        justify-content: flex-start;
    }
    .contact-item {
        text-align: left;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .legal-links {
        justify-content: center;
    }
}


/*
 * Homepage Sections
 * Styles specific to the homepage content.
 */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 61, 145, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/*
.partner-logos {
    padding: 60px 0;
    text-align: center;
    background-color: var(--light-grey);
    overflow: hidden;
    position: relative;
}

.logo-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.logo-grid::before,
.logo-grid::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-grid::before {
    left: 0;
    background: linear-gradient(to left, rgba(245, 245, 220, 0), var(--light-grey));
}

.logo-grid::after {
    right: 0;
    background: linear-gradient(to right, rgba(245, 245, 220, 0), var(--light-grey));
}

.logo-row {
    display: flex;
    white-space: nowrap;
    animation: slide-left 25s linear infinite;
    width: auto;
    align-items: center;
}

.logo-row:hover {
    animation-play-state: paused;
}

.logo-row.reverse {
    animation: slide-right 25s linear infinite;
}

.logo-row img {
    height: 50px;
    opacity: 0.7;
    margin: 0 40px;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.logo-row img:hover {
    opacity: 1;
}

@keyframes slide-left {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes slide-right {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
} */

.partner-logos {
    padding: 60px 0;
    text-align: center;
    background-color: #F5F5DC;
    overflow: hidden;
    position: relative;
}

.partner-logos h2 {
    color: #343434;
    margin-bottom: 40px;
}

.logo-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.logo-grid::before,
.logo-grid::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-grid::before {
    left: 0;
    background: linear-gradient(to left, rgba(245, 245, 220, 0), #F5F5DC);
}

.logo-grid::after {
    right: 0;
    background: linear-gradient(to right, rgba(245, 245, 220, 0), #F5F5DC);
}

@media (max-width: 768px) {
  .logo-grid::before,
  .logo-grid::after {
    content: none !important;
    display: none !important;
  }
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    overflow: hidden;
    min-width: 1000px; /* Adjust as needed for your logo count */
    /* Remove animation property */
}



@keyframes slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slide-right {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.logo-row img {
    height: 60px;
    opacity: 1.1;
    margin: 0 20px;
    flex-shrink: 0;
}
/*home page value propostion section css start*/
@media only screen and (max-width: 767px) {
.container {padding: 0 2px;}
}

.value-propositions {
    padding: 80px 20px;
    background-color: var(--white);
    text-align: center;
}

.value-propositions .container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* --- Card Styling --- */
.pillar-card {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--gold);
    box-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.075),
                0 2px 2px hsl(0deg 0% 0% / 0.075),
                0 4px 4px hsl(0deg 0% 0% / 0.075),
                0 8px 8px hsl(0deg 0% 0% / 0.075),
                0 16px 16px hsl(0deg 0% 0% / 0.075);
    max-width: 350px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(60px);
    position: relative;
    overflow: hidden;
}

.pillar-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Premium Hover Effect */
.pillar-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 -6px 20px rgba(212, 175, 55, 0.25);
    border-end-start-radius: 100px;
    border-start-end-radius: 100px;
}

/* --- Animated Gold Border --- */
.pillar-card::before {
    content: '';
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    border-radius: 12px;
    background: linear-gradient(90deg,
        rgba(212,175,55,0.6),
        rgba(212,175,55,0.9),
        rgba(212,175,55,0.6),
        rgba(212,175,55,0.9)
    );
    z-index: 0;
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 300% 300%;
    animation: border-slide 4s linear infinite;
}

/* Show border on hover */
.pillar-card:hover::before {
    opacity: 1;
}

@keyframes border-slide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Make card content above border */
.pillar-card > * { position: relative; z-index: 1; }

/* --- Icon Circle --- */
.icon-circle {
    position: relative;
    font-size: 2rem;
    width: 80px;
    height: 80px;
    background-color: var(--gold);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Sheen overlay */
.icon-circle::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg) translateX(-200%);
    pointer-events: none;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.5));
}

/* Sparkle trail container */
.icon-circle .sparkle {
    position: absolute;
    font-size: 0.7rem;
    color: #fffacd;
    opacity: 0;
    pointer-events: none;
    filter: blur(2px);
}

/* Shimmer + sheen animation */
@keyframes gold-shimmer-twice {
    0%   { box-shadow: 0 0 0 rgba(212,175,55,0); color: var(--navy-blue); transform: scale(1); }
    25%  { box-shadow: 0 0 25px rgba(212,175,55,0.7); color: var(--gold); transform: scale(1.12); }
    50%  { box-shadow: 0 0 0 rgba(212,175,55,0); color: var(--navy-blue); transform: scale(1); }
    75%  { box-shadow: 0 0 25px rgba(212,175,55,0.7); color: var(--gold); transform: scale(1.12); }
    100% { box-shadow: 0 0 0 rgba(212,175,55,0); color: var(--navy-blue); transform: scale(1); }
}

@keyframes sheen-pass {
    0% { transform: rotate(45deg) translateX(-200%); }
    50% { transform: rotate(45deg) translateX(0%); }
    100% { transform: rotate(45deg) translateX(200%); }
}

@keyframes sparkle-trail {
    0% { opacity: 0; transform: translate(var(--x0,0), var(--y0,0)) scale(0.5); }
    20% { opacity: 1; transform: translate(var(--x1,0), var(--y1,0)) scale(1); }
    60% { opacity: 1; transform: translate(var(--x2,0), var(--y2,0)) scale(1); }
    100% { opacity: 0; transform: translate(var(--x3,0), var(--y3,0)) scale(0.5); }
}

/* Combined shimmer + sheen + trail */
.icon-circle.shimmer {
    animation: gold-shimmer-twice 2.8s ease-in-out;
}
.icon-circle.shimmer::before {
    animation: sheen-pass 2.8s ease-in-out;
}

/* Hover sheen + sparkle */
.pillar-card:hover .icon-circle::before {
    animation: sheen-pass 1.5s ease-in-out;
}

.pillar-card:hover .icon-circle {
    background-color: var(--navy-blue);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.pillar-card:hover .icon-circle i {
    transform: scale(1.2) rotate(5deg);
    color: var(--gold);
}

.pillar-card h3 {
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.pillar-card p {
    color: var(--dark-grey);
}
/* Section Heading Responsive + Animation */
.section-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-heading .eyebrow {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-heading .main-heading {
    font-size: 2rem;
    font-family: var(--heading-font);
    color: var(--navy-blue);
    margin-bottom: 2px;
}

.section-heading .subheading {
    font-size: 1rem;
    color: var(--dark-grey);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section-heading .main-heading {
        font-size: 2.8rem;
    }
    
    .section-heading .subheading {
        font-size: 1.125rem;
    }
}

/* Animate heading parts sequentially */
.heading-line {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When visible, animate each line */
.section-heading.visible .heading-line:nth-child(1) {
  transition-delay: 0s;
  opacity: 1;
  transform: translateY(0);
}

.section-heading.visible .heading-line:nth-child(2) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}

.section-heading.visible .heading-line:nth-child(3) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}
/*home page value proposition section css end*/

.destinations-grid {
    padding: 80px 20px;
    background-color: var(--light-grey);
    text-align: center;
}

.destinations-grid h2 {
    color: var(--navy-blue);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    max-width: 100%;
    width: 100%;
    height: 300px;
    box-sizing: border-box;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    display: block;
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 61, 145, 0.6);
    color: var(--white);
    padding: 20px;
    text-align: center;
    /* transform: translateY(0); */
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
    z-index: 1;
}

/* .destination-card:hover .card-overlay {
    transform: translateY(-150%);
} */

.card-overlay h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--white);
}

.view-more-btn {
    display: block;
    background-color: var(--gold);
    color: var(--navy-blue);
    text-decoration: none;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 5px;
}

.cta-bottom {
    margin-top: 40px;
}

.why-choose-us {
    padding: 80px 20px;
    background-color: var(--white);
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-content {
    flex: 1;
    min-width: 300px;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.checklist li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.check-icon {
    margin-right: 10px;
    color: var(--gold);
    font-weight: bold;
}

.trust-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.trust-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.membership-page {
        background: url('/site-images/memebrship-bg.avif') no-repeat center center/cover;
        z-index: 1;
}

.membership-highlight {
    padding: 80px 20px;
    background-color: var(--navy-blue);
    color: var(--white);
    text-align: center;
    background-image: linear-gradient(
        rgba(10, 61, 145, 0.8),
        rgba(10, 61, 145, 0.8)
    ),
    url("https://plus.unsplash.com/premium_photo-1733317328038-4aa0269ac803");
    background-size: cover;
    background-position: center;
}

.highlight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.highlight-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}





.blog-section {
    padding: 80px 20px;
    background-color: var(--white);
    text-align: center;
}

.blog-section h2 {
    color: var(--navy-blue);
}

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

.blog-card {
    background: var(--light-grey);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-card h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--navy-blue);
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--dark-grey);
}

.blog-card a {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: bold;
}

.newsletter-section {
    padding: 60px 20px;
    background-color: var(--light-grey);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.newsletter-content p {
    color: var(--dark-grey);
}

.newsletter-form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 28px;
    border-radius: 5px;
    border: 1px solid var(--gold);
    width: 300px;
    height: 25px;
}

.newsletter-form .cta-buttons {
    display: flex;
    align-items: center;
}

.newsletter-form .btn-primary {
    padding: 28px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
}

.newsletter-form button {
    border: none;
    cursor: pointer;
}

/*
 * Membership Page Sections
 * Styles specific to the membership page.
 */
.plans-section {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-grey);
}

.membership-pricing-wrap {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.membership-pricing .section-title {
    margin-bottom: 6px;
    color: var(--navy-blue);
}

.membership-pricing .section-subtitle {
    text-align: left;
    margin-bottom: 18px;
    color: var(--dark-grey);
}

.seg-wrap {
    text-align: center;
    margin: 18px 0 28px;
}

.seg {
    display: inline-flex;
    background: var(--light-grey);
    padding: 6px;
    border-radius: 999px;
    gap: 6px;
}

.seg button {
    background: transparent;
    border: 0;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--dark-grey);
    cursor: pointer;
}

.seg button[aria-pressed="true"] {
    background: var(--white);
    color: var(--navy-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.membership-pricing .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

@media(min-width:900px) {
    .membership-pricing .grid {
        grid-template-columns: 1fr 1fr;
    }
}

.membership-pricing .card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--light-grey);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}

.membership-pricing .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.membership-pricing .card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(180deg, #fffdf5, var(--white));
}

.pill {
    position: absolute;
    left: 20px;
    top: -12px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 999px;
}

.discount-badge {
    position: absolute;
    right: 18px;
    top: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    display: none;
}

.badge-amber {
    background: var(--gold);
    color: var(--navy-blue);
}

.badge-green {
    background: var(--navy-blue);
    color: var(--white);
}

.membership-pricing .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
}

.membership-pricing .title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: var(--navy-blue);
}

.membership-pricing .subtitle {
    color: var(--dark-grey);
    font-size: 13px;
    margin-top: 6px;
}

.price-block {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    align-items: flex-end;
    justify-content: space-between;
}

.price-left {
    flex: 0 0 55%;
}

.price-meta {
    flex: 0 0 40%;
    text-align: right;
}

.price-current {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy-blue);
    margin: 0;
    line-height: 1;
    transition: transform .18s cubic-bezier(.2,.9,.25,1), color .18s;
}

.price-label {
    font-size: 13px;
    color: var(--dark-grey);
    margin-top: 8px;
}

.original {
    color: var(--dark-grey);
    text-decoration: line-through;
    font-size: 14px;
    opacity: .95;
    margin-bottom: 6px;
}

.per-year {
    color: var(--dark-grey);
    font-size: 14px;
    margin-bottom: 6px;
}

.savings {
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
}

@media (max-width:700px) {
    .price-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .price-meta {
        width: 100%;
        text-align: left;
    }
    .price-left {
        width: 100%;
    }
}

.price-pop {
    transform-origin: left center;
}

.price-pop.animate {
    transform: scale(1.06);
}

.features {
    margin-top: 18px;
    padding: 0;
    list-style: none;
    color: var(--dark-grey);
    font-size: 14px;
}

.features li {
    display: flex;
    gap: 12px;
    margin: 10px 0;
    align-items: center;
}

.tick {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--light-grey);
    color: var(--navy-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.actions .btn {
    border: 0;
    cursor: pointer;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
}

.actions .btn.primary {
    background: var(--gold);
    color: var(--navy-blue);
    flex: 1;
    transition: background .25s;
}

.actions .btn.primary:hover {
    background: #c19b2e;
}

.actions .btn.ghost {
    background: transparent;
    color: var(--dark-grey);
    border: 1px solid var(--light-grey);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@media (min-width: 600px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.why-member-section {
    background-color: var(--light-grey);
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 600px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .benefit-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 10px;
}

.whats-included-section {
    background-color: var(--light-grey);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.included-item i {
    font-size: 3rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.included-item p {
    font-weight: 500;
}



.how-it-works-section {
    background-color: var(--light-grey);
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .step-arrow {
        font-size: 2rem;
        color: var(--navy-blue);
        margin-top: 50px;
    }
}

.step-card {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background-color: var(--navy-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 10px;
}

.faq-section {
    background-color: var(--white);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--light-grey);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy-blue);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding-top: 15px;
    color: #555;
    font-size: 0.95rem;
}

.final-cta-section {
    background-color: var(--navy-blue);
    text-align: center;
    color: var(--white);
}

.final-cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.final-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
}

.final-cta-buttons .btn-primary {
    background-color: var(--gold);
    color: var(--navy-blue);
}

.final-cta-buttons .btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

.final-cta-buttons .btn-secondary {
    background-color: var(--white);
    color: var(--navy-blue);
    border-color: var(--white);
}

.final-cta-buttons .btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}

.sticky-cta-mobile .btn-join {
    margin: 0;
}

@media (max-width: 767px) {
    .sticky-cta-mobile {
        display: block;
    }
}

/*
 * About Page Sections
 * Styles specific to the about page.
 */
.about-hero {
    position: relative;
    background: url("https://cdn.pixabay.com/photo/2024/05/18/01/09/ai-generated-8769302_1280.jpg") no-repeat center center/cover;
    padding: 100px 20px;
    color: var(--white);
    text-align: center;
}



.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.about-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-story h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.about-story p {
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.mvv-card {
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(10, 62, 145, 0.16);
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(10, 62, 145, 0.3);
    border-end-start-radius: 100px;
    border-start-end-radius: 100px;
}

.mvv-card h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin: 15px 0;
}

.mvv-card .icon {
    font-size: 2.5rem;
    color: var(--gold);
}

.growth-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}

.stat-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(10, 62, 145, 0.3);
}

.stat-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.stat-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0;
}

.stat-card p {
    color: var(--dark-grey);
    font-size: 1rem;
    margin-top: 5px;
}

.trust-commitment-section .container {
    max-width: 800px;
}

.trust-commitment-section h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
    text-align: center;
}

.trust-commitment-section p {
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 20px;
    text-align: center;
}

.trust-commitment-section ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.trust-commitment-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--dark-grey);
    line-height: 1.6;
}

.trust-commitment-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.why-choose-us .container {
    padding: 0 20px;
}

.trust-factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.trust-card {
    padding: 40px;
    background: var(--light-grey);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(10, 62, 145, 0.3);
    border-end-start-radius: 100px;
    border-start-end-radius: 100px;
}

.trust-card h4 {
    color: var(--navy-blue);
    font-size: 1.25rem;
    margin: 15px 0;
}

.trust-card p {
    color: var(--dark-grey);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.team-member {
    background: var(--light-grey);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.2rem;
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--dark-grey);
}



.about-cta {
    background-color: var(--navy-blue);
    color: var(--white);
    text-align: center;
}

.about-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/*
 * Contact Page Sections
 * Styles specific to the contact page.
 */
.contact-hero {
    position: relative;
    background: url("https://cdn.pixabay.com/photo/2020/02/27/17/24/connection-4885313_1280.jpg") no-repeat center center/cover;
    padding: 100px 20px;
    color: var(--white);
    text-align: center;
}



.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-hero-content p {
    font-size: 1.2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-info-block {
    text-align: left;
}

.contact-info-block h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.contact-info-block .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-block .info-icon {
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-block p {
    margin: 0;
    line-height: 1.6;
    color: var(--dark-grey);
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: break-spaces;
}

.g-recaptcha {
    overflow: auto;
}

.contact-info-block a {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: bold;
}

.contact-info-block a.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact-info-block a.whatsapp-btn:hover {
    background-color: #128c7e;
}

.contact-form-card {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px #d4af37a8;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

@media (max-width: 370px) {
    .contact-form input,
.contact-form select, .g-recaptcha,
.contact-form textarea {
        width:95%;
    }
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: var(--gold);
    color: var(--navy-blue);
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
}

.map-section h2 {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .map-container {
    position: relative;
    padding-bottom: 130%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}
    .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 500px !important;
}
    
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.why-contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 1px 2px 15px rgba(10, 62, 145, 0.247);
    transition: all 0.3s ease;
    min-width:250px;
}

.why-contact-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(10, 62, 145, 0.3);
}

.why-contact-card .icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.why-contact-card h4 {
    font-size: 1.2rem;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.why-contact-card p {
    color: var(--dark-grey);
    line-height: 1.6;
}

.final-cta {
    background-color: var(--navy-blue);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-secondary-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    text-decoration: none;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 0 10px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary-white:hover {
    background-color: var(--white);
    color: var(--navy-blue);
}

/* terms and conditions page */
.hero-section.terms-hero {
            background: url('https://images.pexels.com/photos/4152508/pexels-photo-4152508.jpeg') no-repeat center center/cover;
        }

        .terms-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            text-align: left;
        }

        .terms-content h2, .terms-content h3 {
            margin-top: 3rem;
            margin-bottom: 1rem;
            color: var(--navy-blue);
        }

        .terms-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: var(--dark-grey);
        }

        .terms-content ul {
            list-style: disc;
            margin-left: 20px;
            padding-left: 0;
            color: var(--dark-grey);
            margin-bottom: 1.5rem;
        }

        .terms-content li {
            margin-bottom: 0.5rem;
        }

        /* Privacy Policy Page */
        .hero-section.privacy-hero {
            background: url('https://images.pexels.com/photos/33961363/pexels-photo-33961363.jpeg') no-repeat center center/cover;
        }

        .privacy-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            text-align: left;
        }

        .privacy-content h2, .privacy-content h3 {
            margin-top: 3rem;
            margin-bottom: 1rem;
            color: var(--navy-blue);
        }

        .privacy-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: var(--dark-grey);
        }

        .privacy-content ul {
            list-style: none;
            padding-left: 20px;
        }

        .privacy-content li {
            margin-bottom: 0.5rem;
        }
        /* 404 Page */
        .error-page {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
            padding: 20px;
            background-color: var(--very-light-gray);
        }

        .error-code {
            font-size: 8rem;
            font-weight: 700;
            color: var(--navy-blue);
            font-family: 'Playfair Display', serif;
            line-height: 1;
            margin-bottom: 10px;
        }

        .error-message-page {
            font-size: 2rem;
            color: var(--dark-grey);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .error-description {
            font-size: 1.1rem;
            color: var(--muted-grey);
            max-width: 600px;
            margin-bottom: 30px;
        }

        .error-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .error-cta-buttons .btn-primary, .error-cta-buttons .btn-secondary {
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 50px;
        }

        @media (min-width: 600px) {
            .cta-buttons {
                flex-direction: row;
            }
        }
        
        
        /*500 page */
        .error-page {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
            padding: 20px;
            background-color: var(--very-light-gray);
        }

        .error-code {
            font-size: 8rem;
            font-weight: 700;
            color: var(--navy-blue);
            font-family: 'Playfair Display', serif;
            line-height: 1;
            margin-bottom: 10px;
        }

        .error-message-page {
            font-size: 2rem;
            color: var(--dark-grey);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .error-description {
            font-size: 1.1rem;
            color: var(--muted-grey);
            max-width: 600px;
            margin-bottom: 30px;
        }

        .error-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .error-cta-buttons .btn-primary, .error-cta-buttons .btn-secondary {
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 50px;
        }

        @media (min-width: 600px) {
            .cta-buttons {
                flex-direction: row;
            }
        }

/*destination.ejs*/
.hero-section.destinations-hero {
            background: url('/site-images/destination/destination-bg.avif') no-repeat center center/cover;
        }
        

        .pillar-page-content {
            padding: var(--section-gap) 0;
            text-align: center;
        }

        .pillar-grid {
            /* Flexbox changes start here */
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            text-align: center;
            margin-top: 40px;
        }

        .pillar-card {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease-in-out;
            /* Flexbox sizing for cards */
            flex-basis: 350px;
            flex-grow: 1;
            max-width: 500px;
        }

        .pillar-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .pillar-card-img {
            height: 300px;
            overflow: hidden;
        }

        .pillar-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
        }

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

        .pillar-card-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            height: auto;
        }
        
        .pillar-card-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--navy-blue);
        }

        .pillar-card-content p {
            color: var(--dark-grey);
            margin-bottom: 20px;
        }


/* --- Mobile Side Drawer Custom Styles --- */

.dashboard-menu-section {
    /* Reverted: Remove strong background-color */
    background-color: transparent; 
    padding: 10px 0;
    margin-bottom: 0; 
    border-bottom: 2px solid var(--navy-blue); /* Strong separator below the dashboard links */
    padding-bottom: 20px;
    margin-bottom: 20px;
    /* Removed border-top */
}

.dashboard-menu-title {
    font-family: var(--primary-font);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-blue); /* Use Navy Blue for the section title */
    padding: 15px 20px 5px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-menu-divider {
    padding-top: 15px;
    border-top: none; /* Removed redundant top border */
    margin-top: 0;
    color: var(--dark-grey);
}

/* Base style for site drawer links (used by standard links) */
.side-drawer-nav a {
    text-decoration: none;
    font-size: 18px;
    color: var(--dark-grey);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
    padding: 10px 20px; /* Consistent padding for all links */
    border-bottom: 1px solid var(--light-grey); /* Subtle separator between standard links */
}

/* Style specifically for dashboard links */
.dashboard-menu-link {
    /* Reverted: Use dark text and light background like other links in the drawer */
    color: var(--dark-grey);
    background-color: var(--light-grey); /* Subtle light grey background for grouping */
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: none; /* Remove individual link borders if present */
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Subtle border inside the section */
}

.dashboard-menu-link i {
    color: var(--navy-blue); /* Use Navy Blue for the dashboard link icons */
}

.dashboard-menu-link:hover {
    background-color: rgba(10, 33, 74, 0.1); /* Light Navy hover effect */
    color: var(--navy-blue);
}

/* --- Contact Form Message Styles --- */

.message-box {
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
    border: 1px solid transparent;
    animation: fadeIn 0.5s ease-out;
}

.success-message {
    background-color: #d4edda; /* Light Green */
    color: #155724; /* Dark Green Text */
    border-color: #c3e6cb; /* Subtle Green Border */
}

.contact-form-error-message {
    background-color: #f8d7da; /* Light Red */
    color: #721c24; /* Dark Red Text */
    border-color: #f5c6cb; /* Subtle Red Border */
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Refund Policy Page Styles */
.hero-section.policy-hero {
            background: url('https://images.pexels.com/photos/6863323/pexels-photo-6863323.jpeg?_gl=1*1m5fjau*_ga*MjA4MDM1Mjg1Ni4xNzU4OTAzNTA0*_ga_8JE65Q40S6*czE3NTg5MDM1MDMkbzEkZzEkdDE3NTg5MDM2NDMkajQwJGwwJGgw') no-repeat center center/cover;
        }

        .policy-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            text-align: left;
        }

        .policy-content h1 {
            color: var(--navy-blue);
        }

        .policy-content h2, .policy-content h3 {
            margin-top: 3rem;
            margin-bottom: 1rem;
            color: var(--navy-blue);
        }

        .policy-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: var(--dark-grey);
        }

        .refund-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            font-size: 0.95rem;
        }

        .refund-table th, .refund-table td {
            border: 1px solid var(--light-grey);
            padding: 12px;
            text-align: left;
        }

        .refund-table th {
            background-color: var(--navy-blue);
            color: var(--white);
            font-weight: 600;
        }

        .refund-table tr:nth-child(even) {
            background-color: var(--very-light-gray);
        }
        
        .refund-note {
            margin-top: 20px;
            padding: 15px;
            background-color: var(--gold);
            color: var(--navy-blue);
            border-radius: 5px;
            font-weight: 600;
        }

        /* --- UNREADABLE STYLES APPLIED TO MAIN TEXT --- */
        .unreadable-policy {
            /* Small, low-contrast text */
            color: #AAAAAA; /* Very light gray, low contrast on white */
            font-size: 10px; /* Tiny font */
            line-height: 1.2; /* Minimal spacing for density */
            text-align: justify; /* Justify text for a dense block look */
            word-spacing: 0px; /* Reduce spacing */
            letter-spacing: 0px; /* Tighten up letters */
        }
        
        .unreadable-policy p {
            margin-bottom: 5px; /* Minimal paragraph spacing */
            line-height: 1.2; /* Override normal line height */
        }

        .unreadable-heading {
            /* Make key headings look less like distinct sections */
            font-size: 1.1rem;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
            color: #666666; /* Muted color for headings */
            text-decoration: underline; /* Add underline to make it look like dense legal text */
        }

/*tablet styles*/
@media (max-width: 1024px) { /* Adjust the max-width based on your project's breakpoints */
  header#myHeader .nav-wrapper {
    /* Adjust styles for the navigation wrapper on tablets */
    /* For example, you might want to hide the navigation links by default */
    display: none;
  }

  header#myHeader button#hamburger {
    /* Make the hamburger icon visible on tablets */
    display: block;
    /* Add any other necessary styles for positioning and appearance */
  }
}

a.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

@media (max-width: 768px) { /* Replace <some-breakpoint> with your desired screen size */
      form.newsletter-form {
        flex-direction: column;
      }
      .newsletter-form .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
  }
  .newsletter-form .btn-primary {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    height: 50px;
  }
  
}
.blog-section {
    display: none;
}

/* --- Fix for Tablet/Narrow Desktop (1024px to 1255px) --- */
@media (max-width: 1255px) and (min-width: 951px) {
    /* * 1. Shrink the main navigation links to occupy less space 
     * and prevent wrapping/misplacement of the buttons.
     */
    .nav-menu ul {
        /* Allow navigation links to shrink */
        flex-shrink: 1; 
        min-width: 0; /* Prevents overflow caused by large minimum widths */
        overflow: hidden; /* Hide if links still overflow slightly */
    }

    /* 2. Reduce padding/font size on the links slightly */
    .nav-menu li a {
        /* Reduce horizontal padding to save space */
        padding: 10px 10px; 
        font-size: 0.95rem; /* Slightly smaller font if needed */
    }

    /* 3. Ensure buttons don't wrap and stay visually aligned */
    .nav-buttons {
        flex-shrink: 0; /* Prevents the buttons from shrinking, giving them priority */
        gap: 8px; /* Slightly reduce space between buttons */
    }
}

/* --- Fix for Narrow Desktop (951px to 1160px) --- */
@media (max-width: 1160px) and (min-width: 951px) {
    /* 1. Force the main navigation links to occupy minimum space */
    .nav-menu ul {
        flex-shrink: 1; 
        min-width: 0;
        overflow: hidden; 
    }

    /* 2. Dramatically reduce horizontal padding on links */
    .nav-menu li a {
        /* Reduce padding significantly (e.g., from 15px to 6px) */
        padding: 10px 6px; 
        font-size: 0.9rem; /* Slightly smaller font to save vertical space too */
        white-space: nowrap; /* Keep the icon and text on one line */
    }
    
    /* Reduce the space below the icon text to prevent vertical wrapping/misplacement */
    .nav-menu li a p {
        margin-top: 0;
    }

    /* 3. Ensure the action buttons keep their space priority and stay aligned */
    .nav-buttons {
        flex-shrink: 0; 
        gap: 6px; /* Reduced gap between buttons */
    }
    
    /* If the icon text itself is an element (which is the main cause of the wrap) */
    .nav-menu li a span {
        display: block; /* Ensure the text wraps below the icon only if needed */
        line-height: 1; /* Tighten up line height */
    }

    .contact-info-block p {
        word-break: break-all; /* Allow breaking long words to prevent overflow */
        word-wrap: break-word; /* Ensure long words wrap properly */
        hyphens: auto; /* Enable hyphenation for better text flow */
    }
}

/* --- Fix for Button Overflow (1025px to 1066px) --- */
@media (max-width: 1066px) and (min-width: 1025px) {
    /* 1. Target the navigation buttons directly */
    .nav-buttons .login-button,
    .nav-buttons .cta-button,
    .nav-buttons .btn {
        /* Reduce horizontal padding on the buttons to save space */
        padding: 10px 15px; 
        font-size: 0.9rem; /* Optionally slightly reduce font size */
    }
    
    /* 2. Slightly reduce the gap between the buttons */
    .nav-buttons {
        gap: 5px;
    }
}

/* --- Hero Section Mobile Optimisation (Max 768px) --- */
@media (max-width: 768px) {
    
    /* 2. Target the content container */
    .hero-content {
        /* Ensure the content is centered, but allow it to use the max width */
        max-width: 98%; 
        /* Use flex properties to manage vertical space more tightly */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* Temporarily setting a fixed height for testing if needed, but flex-basis is better */
        min-height: calc(100vh - 80px); /* Account for header/padding */
    }

    .about-hero-content {
        /* Ensure the content is centered, but allow it to use the max width */
        max-width: 98%; 
        /* Use flex properties to manage vertical space more tightly */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        }
    
    /* 3. Reduce the main heading size using a viewport unit (vw) */
    .hero-content h1 {
        /* Clamp is excellent here, but if not available, use a fixed vw size: */
        font-size: 10vw; /* Example: 10vw will be 40px on a 400px screen */
        line-height: 1.1; /* Reduce line height for tighter spacing */
        margin-bottom: 0.5rem; /* Reduce margin below the title */
    }

    .about-hero-content h1 {
        /* Clamp is excellent here, but if not available, use a fixed vw size: */
        font-size: 10vw; /* Example: 10vw will be 40px on a 400px screen */
        line-height: 1.1; /* Reduce line height for tighter spacing */
        margin-bottom: 0.5rem; /* Reduce margin below the title */
    }

    .contact-hero-content h1 {
        /* Clamp is excellent here, but if not available, use a fixed vw size: */
        font-size: 10vw; /* Example: 10vw will be 40px on a 400px screen */
        line-height: 1.1; /* Reduce line height for tighter spacing */
        margin-bottom: 0.5rem; /* Reduce margin below the title */
    }
    
    /* 4. Reduce the paragraph text size and margin */
    .hero-content p {
        /* Smaller font size */
        font-size: 1rem; 
        /* Tighter margin above and below */
        margin-bottom: 1.5rem; 
        /* Max width adjustment to make text block more compact */
        max-width: 95%; 
    }

    .about-hero-content p {
        /* Smaller font size */
        font-size: 1rem; 
        /* Tighter margin above and below */
        margin-bottom: 1.5rem; 
        /* Max width adjustment to make text block more compact */
        max-width: 95%; 
    }
    
    /* 5. Adjust the CTA button padding/size if necessary */
    .hero-buttons .btn {
        padding: 10px 20px; 
        font-size: 1rem;
    }

    .about-hero-buttons .btn {
        padding: 10px 20px; 
        font-size: 1rem;
    }
}

@media (max-width: 375px) {

    .contact-form-card {
        padding: 10px; /* Reduce padding for very small screens */
        max-width: 95%; /* Ensure it fits within the viewport */
    }

    .contact-info-block p {
        font-size: 0.9rem; /* Slightly smaller text for readability */
    }
}

@media (min-width: 520px) and (max-width: 1024px) {
    .side-drawer-nav a {
        font-size: 2.5vh; /* Slightly smaller font for medium screens */
    }
    .side-drawer-nav h3 {
        font-size: 3vh; /* Slightly smaller icons */
    }
     .logo img {
        width: 80px;
        height: 80px;
    }
    .side-drawer-footer {
        font-size: 2vh; /* Slightly smaller footer text */
    }
}

/*new footer contact css start*/
        /* Section Styling */
.contact-section h4 {
    font-size: 0.8em;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #3a506b;
}

/* Individual Contact Item */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 6px;
    border-radius: 6px;
}

/* Icons */
.icon {
    color: #ffc107; /* Gold accent color for icons */
    font-size: 1em;
    margin-right: 15px;
    flex-shrink: 0; /* Prevents icon from shrinking */
    padding-top: 2px; /* Align icon better with text */
}

/* Text Content */
.text-content {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 0.7em;
    color: #aebfd0; /* Lighter blue/grey for the label */
    margin: 0;
    line-height: 1.4;
}

.detail {
    font-size: 0.9em;
    font-weight: 500;
    color: #f0f8ff;
    margin: 0;
    line-height: 1.4;
}

/* Link Items (Phone and Email) */
.link-item {
    text-decoration: none;
    color: inherit; /* Inherit color from parent */
    cursor: pointer;
}

/* Hover Effect for all items */
.contact-item:hover {
    transform: translateX(5px);
    background-color: rgba(255, 193, 7, 0.05); /* Subtle hover background */
}

/* Specific styling for International Office */
.international .detail {
    font-style: italic;
    color: #90ee90; /* Light green to highlight international */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .contact-card {
        padding: 25px;
    }

    .title {
        font-size: 1.8em;
    }

    .icon {
        font-size: 0.9em;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* Styles for tablets go here */
  .label {
    font-size: 0.95em;
}

.detail {
    font-size: 1.1em;
}
}
/*new footer contact css end*/

/* === NEW SECTIONS CSS === */

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FAQ Section */
.faq-section {
    background-color: var(--very-light-gray);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy-blue);
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--gold);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding-top: 15px;
    color: var(--dark-grey);
    font-size: 0.95rem;
}

/* Members Videos Section (Instagram Reels) */
.videos-section {
    background-color: var(--white);
    text-align: center;
}

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

.video-card {
    background: var(--light-grey);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.video-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Video Player Aspect Ratio Adjustment for Instagram Reels (using 4:5) */
.video-player {
    position: relative;
    padding-bottom: 177.78%; /* 4:5 Aspect ratio for vertical Reels (height is 125% of width) */
    height: 0;
    overflow: hidden; 
}

.video-player .instagram-reel-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--dark-grey); /* Dark background for video */
}

.instagram-reel-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.video-info {
    padding: 15px 20px;
    text-align: left;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-top: 0;
    color: var(--navy-blue);
}

.video-info p {
    font-size: 0.9rem;
    color: var(--muted-grey);
}

/* === NEW DESTINATION SHOWCASE CSS (CAROUSEL IMPLEMENTATION) === */

.destination-showcase-container {
    background-color: var(--very-light-gray);
    padding: var(--section-gap) 0;
    text-align: center;
}

.destination-showcase-container .container {
    padding: 0 0; /* Remove horizontal padding from container */
}

.destination-showcase-container .section-title,
.destination-showcase-container .section-subtitle {
    padding: 0 20px; /* Add padding back to text elements */
}

.carousel-wrapper {
    position: relative;
    margin: 40px auto 20px;
    max-width: 1200px; /* Limits the wrapper size */
}

.carousel-track-container {
    overflow-x: clip; /* CRITICAL: This hides cards outside the viewport */
}

.destination-set {
    display: flex;
    overflow: visible; 
    width: 100%;
    transition: transform 0.5s ease-in-out;
    padding-bottom: 20px; /* Space for indicators */
    /* Padding left/right handled by JS for centering */
}

.destination-card-premium {
    flex-shrink: 0; 
    width: 350px;
    height: 450px;
    margin-right: 30px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    perspective: 1000px; 
    transition: transform 0.5s ease-out;
    transform-style: preserve-3d; /* Enable 3D effects for hover */
}

/* For the first item, remove desktop specific margin that interferes with mobile centering */
.destination-set .destination-card-premium:first-child {
    margin-left: 0;
}

.destination-card-premium:last-child {
    margin-right: 30px; /* Keep standard margin */
}

.destination-card-premium:hover {
    transform: scale(1.02);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    transition: transform 0.8s ease-out;
    backface-visibility: hidden;
}

.destination-card-premium:hover .card-img {
    transform: scale(1.1) rotateX(2deg);
}

.card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    color: var(--white);
    z-index: 2;
    transition: background 0.5s ease;
}

.destination-card-premium h3 {
    font-size: 2.5rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.card-details-wrapper {
    opacity: 0;
    max-height: 0;
    transition: all 0.5s ease-out;
    overflow: hidden;
    transform: translateY(20px);
    text-align: center;
}

.destination-card-premium:hover .card-details-wrapper {
    opacity: 1;
    max-height: 150px;
    transform: translateY(0);
}

.card-details-wrapper p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.card-details-wrapper .btn-primary {
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Graphic/Aesthetic Touches */
.graphics-icon {
    position: absolute;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    top: 20px;
    left: 20px;
    z-index: 3;
    transform: rotate(-10deg);
    transition: opacity 0.5s;
}

/* CAROUSEL CONTROLS & INDICATORS */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy-blue);
    color: var(--white);
    border: none;
    padding: 15px 12px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s, background 0.3s;
}

.carousel-control:hover {
    opacity: 1;
    background: var(--gold);
    color: var(--navy-blue);
}

.carousel-control.prev {
    left: 0;
    border-radius: 0 50px 50px 0;
}

.carousel-control.next {
    right: 0;
    border-radius: 50px 0 0 50px;
}

.carousel-control:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--navy-blue);
    color: var(--white);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    padding: 0 20px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background-color: var(--muted-grey);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.indicator-dot.active {
    background-color: var(--navy-blue);
    transform: scale(1.2);
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .destination-card-premium {
        /* FIX: Set a standard width for JS calculation */
        width: 300px; 
        margin-right: 20px; /* Standard margin for mobile spacing */
        height: 400px;
    }
    
    /* FIX: Remove padding on mobile, as JS handles the calculated centering space */
    .destination-set {
        padding-left: 20px; 
    }
    
    .destination-card-premium:last-child {
        margin-right: 20px;
    }
    
    .carousel-control {
        padding: 10px 8px;
    }
}