:root {
    --primary: #006A4E; /* Deep Sri Lankan Green */
    --secondary: #FFBE29; /* Golden Saffron */
    --accent: #8D153B; /* Crimson Maroon from Flag */
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --white: #FFFFFF;
    --section-bg: #F9FAFB;
    --header-height: 80px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --alert-height: 0px;
}

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

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
}

main {
    padding-top: calc(var(--header-height) + var(--alert-height));
}

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    text-align: left;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-text p,
.about-text li,
.info-content p,
.info-content li,
.intro p,
.intro li,
.service-card p,
.content-wrapper p,
.content-wrapper li,
.cta p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.intro .about-text.home-watermark {
    position: relative;
    z-index: 1;
}

.intro .about-text.home-watermark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('../Images/Site Photos/Sri-Lanka-flag.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3; /* Increased for better color definition as requested */
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 49%);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 49%);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Global Photo Attribution --- */
.img-container {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    border-radius: 20px;
}

.photo-attribution {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.95);
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    pointer-events: none;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255,255,255,0.15);
    white-space: nowrap;
    width: max-content;
    max-width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.img-container:hover .photo-attribution,
.hero:hover .photo-attribution,
.dest-card:hover .photo-attribution,
.about-image:hover .photo-attribution,
.dest-img-container:hover .photo-attribution,
.destination-hero-frame:hover .photo-attribution,
.gh-thumb:hover .photo-attribution,
.itinerary-hero:hover .photo-attribution {
    opacity: 1;
    transform: translate(-50%, -5px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 992px) {
    .container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        width: 100%;
        max-width: 100%;
    }
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 106, 78, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 106, 78, 0.4);
    background: #005a42;
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

}

/* --- CTA Button Layout --- */
.cta-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .cta-btns {
        flex-direction: column;
        width: 100%;
        gap: 1.2rem;
    }
    
    .cta-btns .btn-primary,
    .cta-btns .btn-secondary {
        width: 100% !important;
        max-width: 280px;
        margin: 0 !important; /* Force remove any side margins */
    }
}

/* --- Verified & Partner Badges --- */
.verified-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: #00b894;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
    border: 1px solid rgba(0, 184, 148, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verified-badge i {
    font-size: 0.9rem;
}

/* --- Rental Styles --- */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 4rem 0;
}

.rental-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    position: relative;
}

.rental-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.rental-img {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.rental-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rental-card:hover .rental-img img {
    transform: scale(1.08);
}

.rental-content {
    padding: 2.5rem;
    flex-grow: 1;
}

.rental-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.rental-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.8;
}

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

.rental-footer {
    padding: 1.5rem 2.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.rental-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.rental-price span {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.6;
}

/* --- Responsive Table --- */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}

.table-responsive table {
    width: 100%;
    min-width: 600px; /* Force internal scrolling on small screens */
    border-collapse: collapse;
}

/* --- Header & Nav --- */
header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: var(--alert-height);
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

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

.logo-img {
    height: 62px; /* Slightly increased for better visibility of the abstract elephant */
    width: auto;
    display: block;
    mix-blend-mode: multiply; /* Seamless transparency on white headers */
    transition: var(--transition);
}

footer .logo-img {
    mix-blend-mode: screen !important; /* Seamless transparency on dark footers */
}

.flag-img {
    height: 30px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    position: relative;
    z-index: 1001;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

.drawer-close {
    display: none;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    padding: 1.5rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1001;
    margin-top: 5px;
}

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

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 0.7rem 1.5rem;
    display: block;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: rgba(0, 106, 78, 0.05);
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


/* --- Hero Section --- */
.hero {
    height: calc(100vh - (var(--header-height) + var(--alert-height)));
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../Images/Site Photos/Beach In Sri Lanka/Sunny beach near Koggala Sri Lanka - Photo by Valerii Iavtushenko.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    bottom: 0;   /* Anchor to the bottom of the screen */
    left: 0;
    width: 100%;
    height: 50%; /* Only render in the lower half of the screen.Physically impossible to render in the sky. */
    object-fit: cover;
    z-index: 1;
    opacity: 0.85; /* Super look, glass look as requested */
    pointer-events: none;
    
    /* 
       1.Rotate 180 to make waves move upward.
       2.Since the element is only 50% height but full width, 'object-fit: cover' zooms in massively.
       3. 'object-position: top' aligns the deep sea (original video top) to the element top (visual screen bottom).
       4.The massive white shore splash (original video bottom) is cleanly cropped outside the 50% box boundary!
    */
    transform: rotate(180deg);
    object-position: center top; 
    
    /* 
       Smooth Horizon Blending:
       - Since element is rotated, Local Bottom = Visual Horizon line.
       - 'to top' starts at Local Bottom and goes to Local Top.
       - at 0% (Horizon): Transparent, so the hard box edge blends softly.
       - at 25% (Below Horizon): Fully solid super-wave effect.
    */
    -webkit-mask-image: linear-gradient(to top, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0) 20%, 
        rgba(0,0,0,0.9) 60%, 
        rgba(0,0,0,1) 100%);
    mask-image: linear-gradient(to top, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0) 20%, 
        rgba(0,0,0,0.9) 60%, 
        rgba(0,0,0,1) 100%);
}

.hero-video-full {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    text-align: center;
}

.hero-content h1, .hero-content h2 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin: 0 auto 1.5rem auto;
    text-align: center;
}

.hero-content h1 span {
    color: var(--secondary);
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    text-align: center !important;
    text-wrap: balance;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

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

/* --- Sections --- */
section {
    padding: 60px 0;
}

.cta p {
    text-align: center;
}

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

.section-title p {
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- Grids --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

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

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card p {
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.dest-card {
    position: relative;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    background: #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.dest-card .card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dest-card:hover .card-bg {
    transform: scale(1.1);
}

.dest-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    transition: opacity 0.3s ease;
}

.dest-card:hover::after {
    background: linear-gradient(to top, rgba(0, 106, 78, 0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.dest-info {
    position: relative;
    z-index: 10;
    padding: 1.5rem;
    width: 100%;
    transition: var(--transition);
}


.dest-info h3 {
    margin-bottom: 0.3rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dest-info h3 i {
    font-size: 1rem;
    color: var(--secondary);
}

.dest-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: left;
    margin-bottom: 0;
}

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

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: start;
}

/* --- Footer --- */
footer {
    background: #0B110F;
    color: #D1D5DB;
    padding: 70px 0 30px; /* Reduced from 100px */
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1.4fr; /* Balanced proportions with more room for contact */
    gap: 3.5rem; /* Slightly more breathable gap */
    max-width: 1200px; /* Slightly wider for the address line */
    margin: 0 auto 60px;
}

.footer-info p {
    margin-top: 1.5rem;
    text-align: left; /* Consistent left alignment for desktop */
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a i {
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover img {
    transform: scale(1.1);
}

.social-links a:hover i {
    color: var(--secondary);
    transform: scale(1.1);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Specific adjustment for Booking.com icon size */
.social-links a[title="Booking.com"] img {
    transform: scale(1.2); /* Increase default size slightly */
}

.social-links a[title="Booking.com"]:hover img {
    transform: scale(1.3); /* Ensure hover effect still scales up */
}

/* Remove the semi-transparent background for brand images to avoid double-circle effect */
.social-links a:has(img) {
    background: transparent;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h3, .footer-contact h3 {
    color: var(--white);
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    line-height: 1.4;
    color: #9CA3AF;
}

.footer-contact i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.footer-contact a {
    color: inherit;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    text-align: center;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

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

/* --- Mobile --- */
@media (max-width: 992px) {
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -105% !important; /* Move off-screen */
        width: 400px !important;
        max-width: 85% !important;
        height: 100vh !important;
        background: #FFFFFF !important; /* Solid white */
        z-index: 9999 !important;
        transform: none !important; /* Avoid fixed+transform bugs */
        visibility: hidden !important; /* Prevent width push/interaction when closed */
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0s 0.4s !important;
        padding: 80px 1.5rem 6rem !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        box-shadow: -15px 0 40px rgba(0,0,0,0.2) !important;
        margin: 0 !important;
        border-left: 1px solid rgba(0,0,0,0.05) !important;
    }

    .nav-links.active {
        right: 0 !important;
        visibility: visible !important;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0s 0s !important;
    }

    .nav-links li {
        width: 100% !important;
        margin: 0 0 0.1rem 0 !important;
        display: block !important;
    }

    .nav-links a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0.5rem 0 !important;
        font-size: 1.05rem !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    }

    /* Drawer Internal Close Button */
    .drawer-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        color: var(--text-dark);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.05);
        border-radius: 50%;
        z-index: 10001;
    }

    /* Mobile Overlay */
    .nav-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0,0,0,0.6) !important;
        backdrop-filter: blur(4px) !important;
        z-index: 9998 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.4s ease !important;
    }

    .nav-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    body.menu-open {
        overflow: hidden !important;
        height: 100vh !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        padding: 0 1rem;
    }

    .hero, .itinerary-hero {
        height: calc(100vh - (var(--header-height) + var(--alert-height))) !important;
        min-height: 400px;
    }


    /* Mobile Dropdown */
    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 0.5rem 0 0 1.5rem !important;
        min-width: 100% !important;
        display: none;
        background: transparent !important;
        border: none !important;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-links a {
        color: var(--text-dark);
        width: 100%;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    /* Enhanced Mobile Chevron Toggle Hit Area */
    .nav-links a i.fa-chevron-down {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.05);
        border-radius: 50%;
        margin-left: 1rem;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        font-size: 0.8rem;
        color: var(--primary);
    }

    .dropdown.active > a i.fa-chevron-down {
        background: var(--primary);
        color: var(--white);
        transform: rotate(180deg);
    }


    .nav-links a.btn-primary {
        color: var(--white) !important;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* --- Booking Platforms Section --- */
.booking-section {
    padding: 80px 0;
    background: var(--section-bg);
    text-align: center;
}

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

.booking-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
}

.booking-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.booking-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.booking-card .partner-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.booking-card.booking-com i { color: #003580; }
.booking-card.tripadvisor i { color: #34E0A1; }
.booking-card.airbnb i { color: #FF5A5F; }

.booking-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.booking-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.footer-partners {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-partners:hover {
    opacity: 1;
}

.footer-partners a {
    color: var(--white);
    transition: var(--transition);
    display: inline-block;
}

.footer-partners a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-partners i {
    font-size: 1.5rem;
}

/* --- Map Section --- */
.map-section {
    padding-bottom: 80px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: 0 15px 45px rgba(0, 106, 78, 0.15);
    transform: translateY(-5px);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


@media (max-width: 768px) {
    .hero, .itinerary-hero {
        height: calc(100vh - (var(--header-height) + var(--alert-height))) !important;
        min-height: 350px;
    }
    
    .hero h1, .itinerary-hero h1 {
        font-size: 2.2rem;
    }

    .map-container {
        height: 400px;
    }
}

/* --- Hero Waves --- */
.hero {
    position: relative;
    overflow: hidden;
}

.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12vh;
    min-height: 80px;
    max-height: 120px;
    z-index: 5;
}

.wave-svg {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: -7px; /* Fix for potential gaps */
    min-height: 80px;
    max-height: 120px;
}

/* Animation */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Shrinking for mobile and tablets */
@media (max-width: 992px) {
    .waves {
        height: 60px;
        min-height: 60px;
    }

    footer .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
        width: 100% !important;
    }

    footer .footer-links,
    footer .footer-contact {
        text-align: center;
        margin-top: 2rem;
        width: 100% !important;
    }

    footer .footer-links h3, 
    footer .footer-contact h3 {
        color: var(--white) !important;
        margin-bottom: 1.5rem;
        display: block !important;
        visibility: visible !important;
        font-weight: 700;
        text-align: center !important;
    }

    footer .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100% !important;
    }

    footer .footer-info .logo-img {
        margin: 0 auto 1.5rem !important;
        mix-blend-mode: screen !important; /* Perfect transparency on dark backgrounds */
    }

    footer .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100% !important;
    }

    footer .footer-info p {
        text-align: center !important;
        margin: 1.5rem auto 0 !important;
        max-width: 95% !important;
    }

    footer .social-links {
        justify-content: center !important;
        width: 100% !important;
        gap: 1.25rem !important;
        flex-wrap: wrap !important;
    }

    footer .footer-contact p {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.8rem;
        width: 100% !important;
    }

    /* Shrink Cards & Grids for Mobile Lineup */
    .dest-card {
        height: 250px;
        width: 100% !important;
        max-width: 320px;
        margin: 0 auto;
    }

    .dest-info h3 {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
        text-align: center !important;
    }

    section {
        padding: 40px 0 !important;
        width: 100% !important;
        overflow: hidden;
    }

    .destinations-grid, .services-grid, .about-grid, .booking-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }

    .about-text {
        order: 1;
    }

    .about-text p {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }

    .about-image {
        order: 2;
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }

    .service-card {
        padding: 2.5rem 1.5rem !important;
        width: 100% !important;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-content {
        padding: 0 1rem !important;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1rem !important;
        max-width: 100% !important;
        padding: 0 5%;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100% !important;
        max-width: 250px;
        padding: 0.8rem 1.5rem !important;
        text-align: center;
    }

    /* Fix Intro Text Alignment & Padding */
    .intro .about-text {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }

    /* Emergency Numbers Shrink */
    .info-content h2 {
        font-size: 1.4rem !important;
        margin-top: 1.5rem !important;
    }

    .info-content p strong {
        font-size: 0.95rem !important;
    }

    .info-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.8rem !important;
    }

    /* Table Responsiveness Improvements */
    .table-responsive {
        margin: 1rem 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
    }

    .info-content table {
        min-width: 600px !important; /* Allow internal scrolling without breaking parent width */
        font-size: 0.85rem !important;
    }

    .info-content th, .info-content td {
        padding: 0.6rem !important;
    }
}

/* --- Trust Bar & Milestones --- */
.trust-bar-section {
    padding: 2rem 0 4rem 0;
    margin-top: -30px; /* Pull up to overlap slightly with previous section for modern feel */
    position: relative;
    z-index: 10;
}

.trust-bar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    max-width: 1200px;
    margin: 0 auto;
}

.milestone-item {
    text-align: center;
    padding: 0.5rem;
    position: relative;
}

.milestone-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(0, 106, 78, 0.1);
}

.milestone-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: block;
}

.milestone-item .counter-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.milestone-item .counter-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
}

.milestone-item .counter-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.milestone-item p {
    font-size: 0.82rem;
    font-weight: 700;
    color: #555;
    margin: 0.4rem 0 0 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

/* Visitor Badge Specific Styles */
.milestone-item.visitor-badge {
    background: rgba(0, 106, 78, 0.03);
    border-radius: 18px;
    padding: 1rem;
    border: 1px solid rgba(0, 106, 78, 0.08);
}

@media (max-width: 992px) {
    .trust-bar {
        grid-template-columns: 1fr 1fr;
        padding: 2rem;
        gap: 2rem;
        margin: 0 1.5rem;
    }
}

@media (max-width: 600px) {
    .trust-bar {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .milestone-item:not(:last-child)::after {
        display: none;
    }
    
    .milestone-item .counter-number {
        font-size: 1.8rem;
    }
}

/* --- Ceylon Tea Section --- */
.tea-experience {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #fff;
}

.tea-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.tea-image-container {
    position: relative;
    max-width: 350px; /* Even smaller for a cuter look */
    margin: 0 auto;
    border-radius: 30px; /* Rounding the container to fix the shadow edges */
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: var(--transition);
    /* overflow: visible so steam is not clipped */
    overflow: visible;
}

.tea-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.tea-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px; /* Rounding the image directly */
}

/* Smoke/Steam Animation */
.steam-overlay {
    position: absolute;
    top: 10%;
    bottom: 45%; /* Brim is approximately 45% from the bottom of the container */
    left: 49%; 
    width: 60px;
    pointer-events: none;
    z-index: 100;
}

.steam-particle {
    position: absolute;
    bottom: 0;
    left: 48%;
    width: 60px; /* Larger and more visible */
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 80%);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0;
}

.steam-particle:nth-child(1) { animation: steamRise 4s infinite 0s; left: 30%; }
.steam-particle:nth-child(2) { animation: steamRise 5s infinite 1s; left: 50%; }
.steam-particle:nth-child(3) { animation: steamRise 4.5s infinite 2s; left: 70%; }
.steam-particle:nth-child(4) { animation: steamRise 6s infinite 0.5s; left: 40%; }
.steam-particle:nth-child(5) { animation: steamRise 5.5s infinite 1.5s; left: 60%; }

@keyframes steamRise {
    0% {
        transform: translateY(0) scale(1) translateX(0);
        opacity: 0;
    }
    15% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(-60px) scale(3) translateX(15px);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-120px) scale(5) translateX(-10px);
        opacity: 0;
    }
}

.tea-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.tea-content .accent-text {
    color: var(--secondary);
    font-style: italic;
    font-family: "Playfair Display", serif;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.tea-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .tea-experience {
        padding: 60px 0;
    }
    .tea-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .tea-content h2 {
        font-size: 2.8rem;
    }
    .steam-overlay {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* --- Video Gallery --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-card iframe {
    width: 100%;
    height: 100%;
    pointer-events: none; /* Prevents interaction with iframe controls directly */
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 40%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.8rem;
    z-index: 10;
    transition: var(--transition);
    pointer-events: none;
}

.video-card:hover .video-card-overlay {
    background: linear-gradient(to top, rgba(0, 106, 78, 0.7) 0%, transparent 60%);
}

.video-card-info {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-card:hover .video-card-info {
    transform: translateY(-5px);
    background: rgba(0, 106, 78, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}


.video-card-info h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.video-card-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-bottom: 0;
    text-align: left;
}

.video-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 20;
}

.video-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.video-btn:hover {
    background: var(--secondary);
    color: var(--text-dark);
    transform: scale(1.1);
}

.play-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 15;
    box-shadow: 0 0 20px rgba(255, 190, 41, 0.4);
}

.video-card:hover .play-hint {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Modal Styling */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: modalFadeIn 0.4s ease;
}

@media (max-width: 768px) {
    .video-modal {
        padding: 0;
    }
}

.video-modal.active {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease, transform 0.3s ease, opacity 0.3s ease;
}

.swipe-overlay {
    position: absolute;
    inset: 0;
    z-index: 100;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swipe-overlay::after {
    content: '\f04b'; /* Play Icon by default? Or nothing? */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.swipe-overlay.paused::after {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .modal-content {
        border-radius: 0;
    }
}

.modal-content.is-short {
    max-width: 450px;
    aspect-ratio: 9/16;
}

@media (max-width: 768px) {
    .modal-content.is-short {
        width: 95%;
        max-height: 85vh;
    }
}

.modal-content iframe {
    width: 100%;
    height: 100%;
}


/* --- YouTube Shorts Gallery --- */
.shorts-section-title {
    margin: 4rem 0 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.shorts-section-title i {
    color: #ff0000; /* YouTube Red */
    font-size: 1.8rem;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.shorts-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9/16;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shorts-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    z-index: 5;
}

.shorts-card iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Modal Close Refinement */
.modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2100;
}

.modal-close:hover {
    background: var(--secondary);
    color: var(--text-dark);
    transform: rotate(90deg) scale(1.1);
}

.modal-close::after {
    content: 'Close';
    position: absolute;
    right: 60px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0,0,0,0.5);
    padding: 5px 12px;
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    white-space: nowrap;
}

.modal-close:hover::after {
    opacity: 1;
    transform: translateX(-10px);
}

@media (max-width: 992px) {
    .shorts-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    .modal-close {
        top: 20px;
        right: 20px;
    }
    .modal-close::after {
        display: none;
    }
}

/* --- FAQ Accordion --- */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(0, 106, 78, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--white);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: #fdfdfd;
}

.faq-item.active .faq-content {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-body {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.03);
    color: #555;
    line-height: 1.8;
}

.faq-body ul {
    margin-left: 1.5rem;
    list-style: disc;
    margin-top: 1rem;
}

.faq-body li {
    margin-bottom: 0.5rem;
}





/* --- Travel Alert Bar (News Ticker) --- */
.travel-alert-bar {
    background: var(--accent);
    color: var(--secondary);
    height: 40px; /* Fixed height for ticker consistency */
    display: flex;
    align-items: center;
    position: fixed; /* Locked at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200; /* Above everything */
    overflow: hidden;
    border-bottom: 2px solid rgba(255, 190, 41, 0.3);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.alert-label {
    background: var(--secondary);
    color: var(--accent);
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 10px 0 20px rgba(0,0,0,0.2);
}

.alert-ticker-container {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%; /* Start outside the view */
    animation: tickerLoop 30s linear infinite;
    will-change: transform; /* Performance optimization */
}

/* Pause logic: Hover (Desktop) OR .paused class (Toggled by Click/Touch) */
@media (hover: hover) {
    .travel-alert-bar:hover .ticker-content {
        animation-play-state: paused;
        cursor: default;
    }
}

.travel-alert-bar.paused .ticker-content {
    animation-play-state: paused;
}

.travel-alert-bar {
    cursor: pointer; /* Show it's interactive */
}

.ticker-content strong {
    color: var(--white);
}

@keyframes tickerLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 992px) {
    .travel-alert-bar {
        height: 35px;
        font-size: 0.8rem;
    }
    .alert-label {
        padding: 0 1rem;
    }
}

/* --- Hero Text Responsiveness Overrides --- */
@media (max-width: 992px) {
    .hero-content p {
        max-width: 650px;
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-content p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content p {
        font-size: 0.95rem;
    }
}

/* --- GDPR Cookie Consent Banner --- */
.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: 30px; /* On mobile it will be full width minus padding */
    max-width: 550px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(150%);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (min-width: 993px) {
    .cookie-consent-banner {
        left: auto;
        right: 40px;
        bottom: 40px;
    }
}

.cookie-consent-banner.active {
    transform: translateY(0);
}

.cookie-content h3 {
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.cookie-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0;
    text-align: justify;
}

.cookie-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-btns .btn-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 106, 78, 0.25);
}

.cookie-btns .btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 106, 78, 0.35);
}

.cookie-btns .btn-decline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btns .btn-decline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .cookie-consent-banner {
        padding: 1.8rem;
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    .cookie-btns {
        flex-direction: column;
        width: 100%;
    }
    .cookie-btns button {
        width: 100%;
    }
}
