/* 
    Visite India - Elite Peacock Luxury Theme
    Inspired by Modern High-End Travel Aesthetics
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Outfit:wght@100;300;400;500;600;700&display=swap');

:root {
    /* Minimalist Elegant Palette with Branded Primary */
    --primary: #7c164d;           /* Visite India Maroon */
    --primary-light: #9e2a6a;
    --secondary: #666666;         /* Soft Gray */
    --accent: #5e113a;            
    --accent-light: #8e1f5c;
    --gold: #c2a77a;              /* Champagne Gold */
    --gold-light: #e6d3a8;
    
    /* Neutral Palette */
    --text-dark: #212121;
    --text-muted: #555555;
    --bg-white: #ffffff;
    --bg-soft: #fafafa;           /* Minimalist subtle gray tint */
    --bg-dark: #111111;           /* Deep dark for dark sections */
    
    /* UI Constants */
    --container-max: 1450px;
    --section-pad: 120px;         /* Increased for more breathing room */
    --header-h: 90px;
    --h-scrolled: 75px;
    --radius-sm: 0px;             /* Sharper edges for minimalist look */
    --radius-md: 0px;
    --radius-lg: 0px;
    
    /* Transitions */
    --ts: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); /* Smoother easing */
    
    /* Shadow (Tinted) */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--ts);
    display: inline-block;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    padding: 14px 35px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--text-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-primary::before {
    display: none;
}

.btn-outline {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Header & Nav */
header {
    height: var(--header-h);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--ts);
    background: transparent;
}

header.scrolled {
    height: var(--h-scrolled);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    header.scrolled {
        height: 65px;
    }
    header.scrolled .header-logo-img {
        height: 65px;
    }
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.6rem;
    color: white;
    margin-left: 20px;
    z-index: 1002;
    transition: var(--ts);
}

.language-dropdown .dropdown-toggle {
    color: white;
}

header.scrolled .language-dropdown .dropdown-toggle {
    color: var(--text-dark);
}

header.scrolled .nav-links a {
    color: var(--text-dark);
}

header.scrolled .mobile-toggle {
    color: var(--text-dark) !important;
}

header.scrolled .dropdown-toggle {
    color: var(--text-dark);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-left, .nav-right {
    flex: 1; /* Assign equal space to left and right parts */
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.logo-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--ts);
}

.logo-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.header-logo-img {
    
    height: 110px;
    width: auto;
    object-fit: contain;
    transition: var(--ts);
    margin-left: -45px;
}

header.scrolled .header-logo-img {
    height: 90px; /* Slightly larger so the logo stays readable */
    margin-left: -42px; /* Proportional reduction of the -115px margin to prevent the logo from shooting off-screen */
}

@media (max-width: 768px) {
    .header-logo-img {
        margin-left: -15px !important;
        height: 75px !important;
    }
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--ts);
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.8), rgba(0, 0, 0, 0.1) 40%, rgba(17, 17, 17, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    color: white;
    margin-bottom: 35px;
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: none;
}

.hero p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.6em;
    margin-bottom: 25px;
    color: var(--bg-white);
    font-weight: 400;
    opacity: 0.9;
}

/* Sections */
section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-soft);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px;
}

.section-header .subtitle, .about-text .subtitle {
    display: block;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--text-dark);
}

/* Cards & Pillars */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pillar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pillar-card {
        padding: 40px 20px;
    }
    .pillar-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    .pillar-card h3 {
        font-size: 1.6rem;
    }
}

.pillar-card {
    background: transparent;
    padding: 60px 40px;
    border-radius: 0;
    text-align: center;
    transition: var(--ts);
    border: none;
    background-color: var(--bg-white);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.02);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.pillar-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 2.2rem;
    transition: var(--ts);
}

.pillar-card:hover .pillar-icon {
    background: var(--text-dark);
    color: var(--bg-white);
}

.pillar-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    padding: 30px;
    background: white;
    border-top: 3px solid var(--gold);
    transition: var(--ts);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item:hover {
    background: var(--bg-soft);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary);
}

.feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-item:hover h4 {
    color: var(--primary);
}

/* Why Us Side Image Layout */
.why-us-flex {
    display: flex;
    align-items: center;
    gap: 70px;
}

.why-us-image {
    flex: 1.4;
}

.why-us-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.why-us-content {
    flex: 2.5;
}

.why-us-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

#why-us {
    background-color: #111111; /* Clean dark background */
    color: white;
}

#why-us .section-header h2 {
    color: white;
}

#why-us .section-header .subtitle {
    color: var(--gold-light);
}

#why-us .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--gold);
    color: rgba(255, 255, 255, 0.8);
}

#why-us .feature-item h4 {
    color: var(--gold-light);
}

#why-us .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-top-color: var(--secondary);
    color: white;
}

@media (max-width: 1100px) {
    .why-us-flex {
        flex-direction: column;
    }
    
    .why-us-image {
        width: 100%;
    }
    
    .why-us-image img {
        height: 400px;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .why-us-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
    display: block;
    font-weight: 700;
}

.footer-col h5 {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: var(--ts);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Contact Page Specific */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--bg-dark), var(--primary));
    color: white;
    text-align: center;
}

.page-header h2 {
    font-size: 4.5rem;
    color: white;
    font-weight: 400;
}

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

.hero-content, .section-header, .pillar-card, .feature-item, .about-text, .about-image {
    animation: fadeInUp 1s ease-out forwards;
}

.pillar-card:nth-child(2) { animation-delay: 0.2s; }
.pillar-card:nth-child(3) { animation-delay: 0.4s; }
.pillar-card:nth-child(4) { animation-delay: 0.6s; }

.feature-item:nth-child(2) { animation-delay: 0.1s; }
.feature-item:nth-child(3) { animation-delay: 0.2s; }
.feature-item:nth-child(4) { animation-delay: 0.3s; }
.feature-item:nth-child(5) { animation-delay: 0.4s; }
.feature-item:nth-child(6) { animation-delay: 0.5s; }

/* Responsive */
@media (max-width: 1200px) {
    .container { padding: 0 25px; }
    .hero h1 { font-size: 4.5rem; }
}

@media (max-width: 992px) {
    .feature-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-header h2 { font-size: 2.8rem; }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    header {
        background: rgba(17, 17, 17, 0.4); /* Subtle dark tint to ensure white icons pop */
        backdrop-filter: blur(10px);
    }
    
    .mobile-toggle {
        display: block !important;
        position: relative;
        z-index: 1100;
    }

    .nav-links {
        display: none; /* Hide by default and use flex when active to prevent any flickering */
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        padding: 100px 20px;
        z-index: 1001;
        gap: 15px;
        overflow-y: auto;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links a, .nav-links .dropdown-toggle {
        font-size: 1.25rem;
        color: white !important;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 10px 0;
        display: block;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .nav-links .nav-dropdown {
        width: 100%;
    }

    .nav-links .nav-dropdown .dropdown-content {
        position: static; /* Force relative/static flow on mobile */
        display: none;
        background: rgba(255,255,255,0.05);
        padding: 0;
        box-shadow: none;
    }
    
    .nav-links .nav-dropdown.active .dropdown-content {
        display: block;
    }

    .nav-links .dropdown-content a {
        font-size: 1rem;
        padding: 12px 0 !important;
        opacity: 0.7;
    }

    .nav-center {
        display: none; /* Desktop center logic reset */
    }

    .nav-left {
        justify-content: flex-end;
    }

    .hero h1 { font-size: 2.8rem; line-height: 1.1; }
    .section-pad { padding: 80px 0; }
    .feature-grid, .footer-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2.2rem; }
    .section-header p { font-size: 1rem; }
}
/* Destination Page Styles */
.destination-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-banner/luxury-dunes.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: var(--header-h);
}

.destination-hero h1 {
    font-size: 5rem;
    color: white;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-text {
    flex: 1.1;
    padding-right: 20px;
}

.about-text h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); /* Elegant, soft shadow instead of hard borders */
}

.about-image::after {
    display: none; /* Remove the clunky background block */
}

@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .about-image::after {
        display: none;
    }
}

.destination-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-md);
    transition: var(--ts);
    cursor: pointer;
}

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

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--ts);
}

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.9) 10%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    transition: var(--ts);
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 20%, rgba(34, 34, 34, 0.2) 100%);
}

.destination-overlay h3 {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 15px;
    transition: var(--ts);
}

.destination-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    opacity: 0.8;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.destination-card:hover .destination-overlay p {
    max-height: 150px;
    opacity: 1;
    margin-top: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-card .btn-small {
    margin-top: 25px;
    padding: 8px 20px;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--ts);
}

.destination-card:hover .btn-small {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header Hero Backgrounds */
.about-header {
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)), url('../images/hero-banner/luxury-palace.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

.contact-header {
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)), url('../images/hero-banner/india_palace_maroon.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

.page-header {
    padding: 180px 0 100px;
    text-align: center;
    color: white;
}

.page-header h2 {
    font-size: 4.5rem;
    color: white;
    font-weight: 400;
}

/* Unified Hero Height for Subpages */
.page-header, .destination-hero {
    height: 60vh !important;
    min-height: 450px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin-top: 0 !important;
}

.page-header .container, .destination-hero .container {
    padding-top: var(--header-h);
}

/* Refined Destination Hero Overlay */
.destination-hero {
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)), url('../images/hero-banner/luxury-dunes.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* ====== Added for Minimalist Redesign ====== */
/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 10;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.nav-dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-content a {
    color: var(--text-dark) !important;
    padding: 12px 16px !important;
    text-decoration: none;
    display: block;
    text-transform: none !important;
    letter-spacing: normal !important;
}
.dropdown-content a::after {
    display: none !important;
}
.dropdown-content a:hover {
    background-color: var(--bg-soft);
    color: var(--primary) !important;
}
.lang-content {
    left: auto;
    right: 0;
    min-width: 120px;
}

/* Header Adjustments */
.nav-center {
    flex: 2;
    justify-content: center;
}

/* Replaced Inline CSS */
.hero-video-container {
    position: absolute; top:0; left:0; width:100%; height:100%; overflow:hidden; z-index:0; pointer-events:none;
}
.hero-video-iframe {
    position:absolute; top:50%; left:50%; width:100vw; height:56.25vw; min-height:100vh; min-width:177.77vh; transform:translate(-50%, -50%);
}
.destination-btn-container {
    text-align: center; margin-top: 40px;
}
.why-us-header {
    text-align: left; margin-left: 0; margin-bottom: 30px;
}
.footer-socials {
    margin-top: 25px; font-size: 1.2rem; display: flex; gap: 20px;
}
.social-icon {
    color: var(--gold);
}
.footer-icon {
    color: var(--gold); margin-right: 15px;
}

/* Premium Prestige Testimonials Segment */
.testimonial-section {
    padding: var(--section-pad) 0;
    background-color: var(--bg-soft);
    text-align: center;
    position: relative;
}
.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-weight: 300;
}
.testimonial-quote::before {
    content: "“";
    font-size: 6rem;
    color: var(--gold);
    display: block;
    line-height: 0;
    margin-bottom: 30px;
}
.testimonial-author {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-dark);
    font-weight: 400;
}
.testimonial-author::before {
    content: "—";
    margin-right: 10px;
    color: var(--gold);
}

/* Google Translate Cleanup */
.goog-te-banner-frame.skiptranslate, 
.goog-te-gadget-icon,
.goog-te-gadget-simple span,
.goog-te-menu-value span:nth-child(3),
.goog-te-menu-value span:nth-child(5),
.goog-te-menu-value img {
    display: none !important;
}

.goog-te-gadget {
    font-family: inherit !important;
    color: transparent !important;
}

body {
    top: 0 !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#google_translate_element {
    display: none !important;
}

.skiptranslate {
    display: none !important;
}

/* Responsiveness for Contact & Destination Details */
.contact-info-grid, .destination-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .contact-info-grid, .destination-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info-grid, .destination-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-header h2 {
        font-size: 2.8rem !important;
    }
    
    .contact-header p {
        font-size: 1rem !important;
        padding: 0 20px;
    }
    
    .nav-right {
        flex: 1;
        justify-content: flex-end;
    }
    
    /* Destination Detail Editorial Split Fix */
    .destination-detail-split {
        flex-direction: column !important;
        gap: 40px !important;
    }
    
    .page-header h2 {
        font-size: 2.8rem;
    }
    
    .destination-detail-hero h1 {
        font-size: 3rem !important;
    }
    
    .destination-detail-split h2 {
        font-size: 2.5rem !important;
    }
}


