/* 
    Metropolis Club Pvt Ltd - Premium Styles 
    Aesthetic: Sophisticated Dark Mode with Gold Accents 
*/

:root {
    --bg-color: #03070d;   /* Deeper Midnight Sapphire */
    --bg-light: #070d1a;   /* Slightly lighter */
    --bg-card: #0a1426;    /* Rich navy card */
    --text-main: #ffffff;  /* Pure white */
    --text-muted: #9ba8bc; /* Soft blue-grey */
    --accent: #d4af37;     /* Classic Gold */
    --accent-gold: #c5a028;
    --accent-soft: rgba(212, 175, 55, 0.15);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Director's Note Specifics */
.directors-note-body {
    max-width: 800px;
    margin: 40px auto;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.lead {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 30px;
}

.sign-off {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    margin-top: 40px;
    color: var(--text-main);
}

.director-signature {
    margin-top: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
}

.director-signature h4 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.director-signature span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.section-header h2 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.w-100 {
    width: 100%;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: #000;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    border-radius: 2px;
    cursor: pointer;
}

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

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--text-main);
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(3, 7, 13, 0.85); /* Matches deeper bg-color */
    padding: 12px 0;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
}

.btn-nav {
    border: 1px solid var(--accent) !important;
    padding: 8px 18px !important;
    border-radius: 4px;
    margin-left: 10px;
}

.btn-nav:hover {
    background-color: var(--accent);
    color: #000 !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo img {
    height: 140px; /* Massively increased as requested */
    max-height: 14vh;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0px 2px 10px rgba(0,0,0,0.5)); /* Adds punch */
}

.navbar.scrolled .logo img {
    height: 100px; /* Shrinks cleanly to maintain elegance when scrolling */
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-main);
    line-height: 1.1;
    display: none; /* Hidden by default, shown via JS if image fails */
}

.logo-text small {
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: var(--accent);
    font-weight: 400;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:not(.btn-primary):hover {
    color: var(--accent);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 500px; /* Reduced from 550px */
    padding-top: 80px; /* Reduced steeply from 140px to cut blank space below navbar */
    padding-bottom: 40px; /* Reduced */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1542314831-c6a4d14d8373?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(3, 7, 13, 0.4) 0%, rgba(3, 7, 13, 0.9) 100%);
    z-index: 1;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(-1%, -1%); }
    100% { transform: scale(1) translate(0, 0); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: kenBurns 30s infinite alternate ease-in-out;
}

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

.hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px; /* Space between logo and text */
    margin-bottom: 0px; /* Massive cut to tighten connection to subtitle */
    flex-wrap: wrap; /* Allows stacking on very small mobile if necessary */
}

.hero-main-logo {
    height: 160px; /* Very large adjacent logo */
    object-fit: contain;
    filter: drop-shadow(0px 4px 15px rgba(0,0,0,0.6));
}

.hero-title-main {
    font-size: 3rem; /* Significantly reduced to fit one line */
    letter-spacing: 5px;
    margin-bottom: 0px;
    color: var(--text-main);
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    line-height: 1.1;
    white-space: nowrap; /* Forces onto one unbroken line */
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem; /* Reduced size */
    color: var(--accent-hover);
    margin-bottom: 5px; /* Squeezed drastically right under title */
}

.hero-subtitle {
    font-size: 1.05rem; /* Reduced size */
    color: var(--text-muted);
    margin-bottom: 10px; /* Squeezed drastically */
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Check glow on primary buttons to make them pop against dark blue */
.btn-primary {
    box-shadow: 0 4px 15px rgba(230, 184, 162, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(230, 184, 162, 0.4);
}

/* Destinations Section */
.destinations {
    padding: 80px 0 100px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1200px;
}

.destination-card {
    min-height: 340px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-card);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    padding: 30px 24px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255,255,255,0.08);
    transform-style: preserve-3d;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.4),
        0 1px 0 rgba(255,255,255,0.05) inset;
}

.destination-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.06) 0%,
        transparent 50%,
        rgba(0,0,0,0.2) 100%
    );
    pointer-events: none;
    z-index: 1;
    border-radius: 16px;
    transition: opacity 0.5s ease;
}

.destination-card:hover {
    transform: translateY(-12px) rotateX(4deg) rotateY(-2deg) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.destination-card:hover::after {
    opacity: 0;
}

.card-content {
    position: relative;
    z-index: 2;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
}

.destination-card:hover .card-content {
    transform: translateY(0);
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-main);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.card-content p {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 16px;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
    line-height: 1.5;
}

.destination-card:hover .card-content p {
    opacity: 1;
}

.explore-link {
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease 0.15s;
}

.destination-card:hover .explore-link {
    opacity: 1;
    transform: translateX(0);
}

.explore-link:hover {
    color: var(--text-main);
    gap: 12px;
}

/* Benefits Section */
.benefits {
    padding: 140px 0;
    background: radial-gradient(circle at top right, #0a1426, #03070d);
}

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

.benefit-item {
    padding: 50px 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.benefit-item:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.icon-wrapper {
    width: 80px; /* slightly larger */
    height: 80px;
    margin: 0 auto 30px;
    background-color: rgba(230, 184, 162, 0.1); /* Match our accent color with opacity */
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Experiences Section */
.experiences {
    padding: 140px 0;
    background-image: linear-gradient(rgba(5, 10, 20, 0.92), rgba(5, 10, 20, 0.92)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Testimonials Slider Enhancements */
.testimonials-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    text-align: center;
}

.slider-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent);
    color: #000;
}

.slider-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* Contact Section */
.contact {
    padding: 140px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.company-details h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-list i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
}

.contact-list span, .contact-list a {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

.contact-list a:hover {
    color: var(--accent);
}

.contact-form {
    background: var(--glass);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
    transition: var(--transition);
}

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

/* Footer */
.footer {
    background-color: #03060c; /* deepest black/blue */
    padding: 100px 0 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px; /* Increased gap */
    margin-bottom: 80px;
}

.footer-logo {
    height: 120px; /* Large logo in footer */
    object-fit: contain;
    margin-bottom: 24px;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    line-height: 1;
}

.footer-club {
    font-size: 1rem;
    letter-spacing: 8px;
    color: var(--accent);
    font-family: var(--font-body);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-links a:hover {
    background-color: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.footer-links-group {
    display: flex;
    justify-content: space-around;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    background-color: var(--bg-color);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 13, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

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

.modal-content {
    background: var(--bg-light);
    width: 90%;
    max-width: 700px;
    padding: 60px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content.modal-large {
    max-width: 900px;
    height: 85vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background: radial-gradient(circle at bottom right, #0a1426, #03070d);
}

.directors-note-modal-body {
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-header-premium {
    margin-bottom: 30px;
}

.modal-header-premium h2 {
    font-size: 3.5rem;
    margin-bottom: 5px;
}

.directors-note-content-scroll {
    overflow-y: auto;
    padding-right: 20px;
}

.directors-note-content-scroll p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.directors-note-content-scroll::-webkit-scrollbar {
    width: 4px;
}

.directors-note-content-scroll::-webkit-scrollbar-track {
    background: var(--glass);
}

.directors-note-content-scroll::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001; /* Above modal content */
}

.modal-close:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.modal-body h2 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 20px 0;
}

#modalDesc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.modal-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.modal-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent), #b8942e);
    color: #0a0a0a;
    border: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.modal-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.modal-actions .btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.modal-actions .btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.modal-actions .btn-primary i,
.modal-actions .btn-secondary i {
    font-size: 1rem;
}

/* Scroll Reveals */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-group {
        justify-content: flex-start;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 24px;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title-wrapper {
        flex-direction: column; /* Stack logo on top of text on mobile */
        gap: 15px;
    }

    .hero-main-logo {
        height: 100px; /* Shrink logo on mobile */
    }

    .hero-title-main {
        font-size: 1.8rem;
        letter-spacing: 2px;
        white-space: normal; /* Allow wrapping on very small screens */
    }

    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .destination-card {
        min-height: 280px;
    }
    
    /* Ensure padding adjustments hold on mobile */
    .destinations, .benefits, .Experiences, .contact {
        padding: 60px 0;
    }

    .modal-content.modal-large {
        height: 90vh;
    }

    .directors-note-modal-body {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-card {
        min-height: 260px;
    }

    .destination-card:hover {
        transform: translateY(-6px) scale(1.01);
    }
}

/* Floating Contact Widget */
.contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2500;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

.contact-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #c5a028);
    color: #03070d;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.contact-main-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Tooltip labels for options */
.contact-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    position: relative;
}

.contact-widget:hover .contact-options,
.contact-widget.active .contact-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.contact-widget:not(:hover) .contact-options {
    pointer-events: none;
}

.contact-option::before {
    content: attr(title);
    position: absolute;
    right: 65px;
    background: rgba(10, 20, 38, 0.9);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    color: #fff;
    border: 1px solid var(--glass-border);
}

.contact-option:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-option.call { background: #3498db; }
.contact-option.whatsapp { background: #25d366; }
.contact-option.sms { background: #f39c12; }
.contact-option.email { background: #e74c3c; }

.contact-option:hover {
    transform: scale(1.15);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .contact-widget {
        bottom: 20px;
        right: 20px;
    }
    .contact-main-btn {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    .contact-option {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}
