/* Typography & Reset */
:root {
    --bg-dark: #0a0a0c;
    --bg-darker: #050507;
    --primary: #f26419;
    --primary-hover: #f6894c;
    --text-main: #fcfcfc;
    --text-muted: #9aa8a1;
    --glass-bg: rgba(25, 25, 25, 0.3);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

.highlight {
    color: var(--primary);
}

.highlight-italic {
    color: var(--primary);
    font-style: italic;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Glassmorphism Utilities */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Badges */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(242, 100, 25, 0.1);
    border: 1px solid rgba(242, 100, 25, 0.2);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.section-badge.center {
    margin-left: auto;
    margin-right: auto;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.5s ease, padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, background, padding;
}

/* News Ticker (Pinned to Bottom of Hero Section) */
.news-ticker-container {
    width: 100%;
    background: rgba(10, 10, 12, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid var(--primary);
    color: #e0e0e0;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 50;
    padding: 12px 0;
    backdrop-filter: blur(8px);
}

.news-ticker {
    display: inline-block;
    animation: ticker 45s linear infinite;
    font-size: 0.95rem;
    font-weight: 500;
}

.news-ticker span {
    margin-right: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#navbar.scrolled {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 2.5rem;
    width: calc(100% - 3rem);
    max-width: 1300px;
    margin: 1.2rem auto 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

#navbar.scrolled .logo-img {
    height: 60px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.logo h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: 'Rye', cursive;
    color: #FFD700;
}

.logo span {
    color: #FFAA00;
}

.logo-slogan {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    color: #e0e0e0;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -6px;
    font-weight: 500;
}

.logo-slogan .slogan-highlight {
    color: var(--primary);
    font-weight: 700;
}

#navbar.scrolled .logo-slogan {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:not(.btn-book)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn-book):hover::after {
    width: 100%;
}

.btn-book {
    background: var(--primary);
    color: var(--bg-darker) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700 !important;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    font-size: 0.95rem !important;
    box-shadow: 0 8px 20px -5px rgba(242, 100, 25, 0.4);
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(242, 100, 25, 0.6);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    color: white;
}

.page-header {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
    z-index: 1;
    overflow: hidden;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background-image: url('assets/nilwala_hero_main_croc.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background-image: url('assets/services_hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.wildlife-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background-image: url('assets/wildlife_hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background-image: url('assets/gallery_hero_bg.png');
    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 50% 120%, rgba(242, 100, 25, 0.25) 0%, rgba(5, 5, 5, 0.8) 50%, rgba(3, 3, 5, 0.95) 100%);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.hero .subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    letter-spacing: 5px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.hero .hero-slogan-top {
    font-family: 'Cinzel', serif;
    color: #FFD700;
    letter-spacing: 12px;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.hero .title {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero .title.giant-title {
    font-size: 5rem;
    letter-spacing: 0;
}

.hero .title .highlight {
    background: linear-gradient(135deg, #f26419 0%, #ff8f4d 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(242, 100, 25, 0.5);
    font-style: normal;
}

.hero .description {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border-radius: 50px;
    transition: var(--transition);
    border: 1px solid var(--primary);
    box-shadow: 0 10px 20px -5px rgba(242, 100, 25, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(242, 100, 25, 0.6);
}

.btn-secondary-light {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border-radius: 50px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary-light:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background-color: var(--bg-dark);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.glass-panel:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(242, 100, 25, 0.3);
}

.stat-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    border-radius: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.5;
    transition: var(--transition);
}

.about-image:hover .image-accent {
    top: -10px;
    right: -10px;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background-color: var(--bg-darker);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-top: 10px;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 400px;
    gap: 1.5rem;
    will-change: transform;
}

.gallery-grid-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 450px;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 992px) {

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-rows: 350px;
        gap: 1.2rem;
    }

    .gallery-grid-preview {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 350px;
    }
}

@media (max-width: 576px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .gallery-grid-preview {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    backdrop-filter: blur(4px);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Service Cards */
.service-card {
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--glass-border);
}

.service-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(242, 100, 25, 0.4);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: rgba(242, 100, 25, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    transition: var(--transition);
    border: 1px solid rgba(242, 100, 25, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(242, 100, 25, 0.4);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: white;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Special Highlight for Free Pick & Drop (Green) */
.service-green {
    border-color: rgba(40, 167, 69, 0.4) !important;
}

.service-green .service-icon,
.service-green .package-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #2ecc71;
    border-color: rgba(40, 167, 69, 0.3);
}

.service-green:hover {
    border-color: #2ecc71 !important;
    box-shadow: 0 30px 60px -15px rgba(46, 204, 113, 0.35) !important;
}

.service-green:hover .service-icon,
.service-green:hover .package-icon {
    background: #2ecc71 !important;
    color: white !important;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.45) !important;
}

.gallery-tag {
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
}

.gallery-item:hover .gallery-tag {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--primary);
    font-size: 1rem;
}

/* Packages Section */
.packages-section {
    padding: 8rem 0;
    background-color: var(--bg-dark);
}

/* Currency Switcher Styles */
.currency-switcher-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.currency-switcher {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 100px;
    width: 260px;
    backdrop-filter: blur(10px);
}

.currency-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 2;
    transition: all 0.4s ease;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.currency-btn.active {
    color: white;
}

.currency-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: linear-gradient(135deg, var(--primary) 0%, #ff8f4d 100%);
    border-radius: 100px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(242, 100, 25, 0.3);
}

.currency-switcher[data-curr="LKR"] .currency-slider {
    transform: translateX(100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding-top: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding-top: 3rem;
}

.package-card {
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
    background: linear-gradient(145deg, rgba(20, 20, 22, 0.6), rgba(10, 10, 12, 0.8));
    backdrop-filter: blur(20px);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(242, 100, 25, 0.3);
    box-shadow: 0 40px 60px -15px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.package-icon {
    width: 60px;
    height: 60px;
    background: rgba(242, 100, 25, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(242, 100, 25, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.package-card:hover .package-icon {
    background: rgba(242, 100, 25, 0.15);
    transform: scale(1.05);
}

.package-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: white;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.package-features {
    margin-bottom: 3rem;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 1.2rem;
    color: #ddd;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.package-features li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 4px;
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.highlight-card {
    background: linear-gradient(145deg, rgba(30, 25, 20, 0.7), rgba(15, 12, 10, 0.9));
    border: 1px solid rgba(242, 100, 25, 0.4);
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 30px 50px -15px rgba(242, 100, 25, 0.15);
}

.highlight-card:hover {
    transform: scale(1.05) translateY(-15px);
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -16px;
    right: 30px;
    background: var(--primary);
    color: var(--bg-darker);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(242, 100, 25, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Booking / Contact Section (Modern Screenshot Match) */
.contact-section {
    padding: 8rem 0;
    background-color: var(--bg-darker);
}

.contact-card-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
}

@media (max-width: 992px) {
    .contact-card-wrapper {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 3rem;
    }
}

.form-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.booking-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
    border-radius: 12px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-row.half > * {
    flex: 1;
    min-width: 0; /* Prevents overflow in flexbox */
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Fix for Select Dropdown Visibility in some browsers */
.form-row select option {
    background-color: #1a1a1a;
    color: white;
    padding: 10px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit-capsule {
    background: linear-gradient(135deg, #f26419 0%, #ff8f4d 100%);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(242, 100, 25, 0.3);
    margin-top: 1rem;
}

.btn-submit-capsule:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(242, 100, 25, 0.5);
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 2.2rem;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(242, 100, 25, 0.4);
    min-width: 50px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover .contact-icon {
    transform: scale(1.1) translateY(-3px);
    color: var(--primary-hover);
    text-shadow: 0 0 25px rgba(242, 100, 25, 0.7);
}

/* On-Board Refreshments Specific Polish */
.hospitality-section .section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hospitality-section .section-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.refreshment-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
}

.refreshment-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #f0f0f0;
}

.refreshment-item i {
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 5px;
    width: 30px;
    text-align: center;
}

.refreshment-item strong {
    color: white;
    font-weight: 700;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: white;
    font-weight: 600;
}

.info-card span {
    color: var(--text-muted);
    font-size: 1rem;
}

.instant-booking-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.wa-header i {
    color: #25D366;
    font-size: 1.8rem;
}

.wa-header h3 {
    font-size: 1.5rem;
    color: white;
}

.instant-booking-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-wa-pill {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #2ecc71;
    color: white;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.btn-wa-pill:hover {
    background: #27ae60;
    transform: scale(1.02);
}

.testimonials-section {
    padding: 8rem 0;
    background-color: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}

.testimonial-card {
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--glass-border);
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.5), rgba(10, 10, 15, 0.7));
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.rating {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #ddd;
    line-height: 1.8;
}

.reviewer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.reviewer-info h4 {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.reviewer-info span {
    color: var(--primary);
    font-size: 0.9rem;
}

.tripadvisor-icon {
    color: #34E0A1;
    font-size: 2rem;
}

.google-icon {
    color: #EA4335;
    font-size: 2rem;
}

.retro-icon {
    color: var(--text-muted);
    font-size: 2rem;
}

/* Add Review Form styles */
.add-review-container {
    margin-top: 4rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.add-review-box {
    padding: 2.5rem 2.5rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.7), rgba(10, 10, 15, 0.9));
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(242, 100, 25, 0.3);
    position: relative;
    overflow: hidden;
}

.add-review-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #FFD700);
}

.add-review-header {
    text-align: center;
    margin-bottom: 2rem;
}

.add-review-header h3 {
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
    color: white;
}

.add-review-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Modern Review Card (to match screenshot) */
.review-card-container {
    max-width: 650px;
    margin: 4rem auto 0;
    perspective: 1000px;
}

.review-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.review-card-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    color: white;
}

.review-card-title .highlight-italic {
    color: var(--primary);
    font-style: italic;
    font-family: 'Outfit', sans-serif;
}

.review-card-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.review-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin-bottom: 0.5rem;
}

.rating-label {
    font-size: 1rem;
    color: #ddd;
    font-weight: 500;
}

.btn-submit-modern {
    background: linear-gradient(135deg, #f26419 0%, #ff8f4d 100%);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 10px 20px rgba(242, 100, 25, 0.3);
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(242, 100, 25, 0.5);
    filter: brightness(1.1);
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 15px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

/* FAQ Section (Modern Screenshot Match) */
.faq-section {
    padding: 8rem 0;
    background-color: var(--bg-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.faq-tag {
    background: rgba(242, 100, 25, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(242, 100, 25, 0.2);
}

.faq-main-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.faq-main-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn-capsule-outline {
    display: inline-block;
    padding: 0.9rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-capsule-outline:hover {
    border-color: var(--primary);
    background: rgba(242, 100, 25, 0.05);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.accordion-item {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(15, 15, 15, 0.6);
}

.accordion-item.active {
    border-color: rgba(242, 100, 25, 0.4);
    background: rgba(20, 15, 10, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accordion-header i {
    color: var(--primary);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.highlight-italic {
    color: var(--primary);
    font-style: italic;
    font-family: inherit;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    border-color: var(--primary);
    background: rgba(30, 20, 15, 0.8);
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: white;
    margin: 0;
    pointer-events: none;
    text-transform: none;
    letter-spacing: normal;
}

.accordion-header i {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-body {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-body {
    padding: 0 2rem 1.5rem;
    max-height: 300px;
}

.accordion-body p {
    color: #ccc;
    font-size: 1.05rem;
    margin: 0;
}

/* Footer */
footer {
    background: #020202;
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand a {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.8));
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: 'Rye', cursive;
    color: #FFD700;
}

.footer-brand h2 span {
    color: #FFAA00;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 400px;
}

.footer-links h3,
.footer-social h3 {
    font-family: 'Outfit', sans-serif;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--bg-darker);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.95rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.2s;
}

.fade-in.delay-2 {
    animation-delay: 0.4s;
}

.fade-in.delay-3 {
    animation-delay: 0.6s;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s ease forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: 1s ease forwards;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: 1s ease forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
    visibility: visible !important;
}

/* River Status & Safety States */
.status-good {
    color: #2ecc71 !important;
}

.status-normal {
    color: #3498db !important;
}

.status-caution {
    color: #f39c12 !important;
}

.status-alert {
    color: #e74c3c !important;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid currentColor;
}

.status-glow {
    animation: statusPulse 2s infinite alternate;
}

@keyframes statusPulse {
    from {
        filter: drop-shadow(0 0 2px currentColor);
    }

    to {
        filter: drop-shadow(0 0 8px currentColor);
    }
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .hero .title {
        font-size: 4rem;
    }

    .packages-grid {
        gap: 1.5rem;
    }

    .package-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 992px) {

    .about-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonials-grid,
    .packages-grid,
    .guides-grid,
    .services-grid,
    #dynamic-gallery {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.2rem;
        padding: 0 1.5rem 2rem 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: 100%;
        margin: 0;
    }

    .testimonials-grid::-webkit-scrollbar,
    .packages-grid::-webkit-scrollbar,
    .guides-grid::-webkit-scrollbar,
    .services-grid::-webkit-scrollbar,
    #dynamic-gallery::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card,
    .package-card,
    .guide-card,
    .service-card,
    #dynamic-gallery .gallery-item {
        min-width: 0;
        /* Removed hardcoded 280px min-width so 75vw works accurately on all phones */
        width: 75vw;
        /* Keeps the card perfectly sized so the edge of the next one is always peeking! */
        max-width: 320px;
        flex: 0 0 auto;
        scroll-snap-align: start;
        white-space: normal;
    }

    .about-image {
        margin-top: 2rem;
    }

    .highlight-card {
        transform: none;
    }

    .highlight-card:hover {
        transform: translateY(-15px);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-row: auto;
        height: 350px;
    }

    .stats-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: radial-gradient(circle at top right, rgba(242, 100, 25, 0.15) 0%, rgba(8, 8, 10, 0.98) 60%);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 20px;
        gap: 0;
        overflow-y: auto;
        transition: right 0.7s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for links */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.5s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.6s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.7s;
    }

    /* Hide redundant elements from mobile sidebar menu */
    #navbar .nav-links>li:has(.btn-book),
    #navbar .nav-links>li .btn-book,
    #navbar .nav-links>li:last-child {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    .nav-links a {
        display: block;
        padding: 1.2rem;
        font-size: 1.8rem !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: rgba(255, 255, 255, 0.7);
        font-family: 'Cinzel', serif;
        position: relative;
    }

    .nav-links a:hover,
    .nav-links a:active {
        color: var(--primary);
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(242, 100, 25, 0.5);
    }

    .nav-links a::after {
        display: none;
        /* remove normal desktop underline */
    }

    /* Native Mobile Language Selection Display */
    .lang-switcher {
        width: 100%;
        margin-top: 10px;
    }

    .lang-selected {
        display: none !important;
        /* Hide the toggle text completely */
    }

    .lang-dropdown {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
        background: transparent !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin-top: 0 !important;
        width: 100% !important;
        transform: none !important;
    }

    .lang-dropdown li {
        flex: 0 0 calc(33% - 12px) !important;
        justify-content: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
        font-size: 0.9rem !important;
        padding: 12px 5px !important;
        font-family: 'Outfit', sans-serif !important;
        color: rgba(255, 255, 255, 0.6) !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 12px !important;
        transition: all 0.3s ease !important;
    }

    .lang-dropdown li:hover,
    .lang-dropdown li:active {
        color: white !important;
        background: rgba(242, 100, 25, 0.2) !important;
        border-color: rgba(242, 100, 25, 0.5) !important;
        transform: translateY(-3px) !important;
    }

    .lang-dropdown li img {
        width: 28px !important;
        border-radius: 4px !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5) !important;
    }

    .hamburger {
        display: block;
        font-size: 2.2rem;
        color: white;
        transition: transform 0.3s ease;
    }

    .hamburger i.fa-times {
        color: var(--primary);
    }

    #navbar,
    #navbar.scrolled {
        padding: 0.8rem 1.25rem;
        width: 100%;
        margin: 0;
        transform: none;
        left: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        background: rgba(10, 10, 12, 0.95);
        backdrop-filter: blur(20px);
    }

    .logo-img {
        height: 45px !important;
    }

    .logo h2 {
        font-size: 1.4rem;
    }

    .logo-link {
        gap: 8px;
    }

    .hero .title {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero .title.giant-title {
        font-size: 2.4rem;
    }

    .hero .hero-slogan-top {
        font-size: 0.8rem;
        letter-spacing: 4px;
        margin-bottom: 0.5rem;
    }

    .hero .description {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
        padding: 0;
        color: rgba(255, 255, 255, 0.7);
    }

    .section-title {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .floating-whatsapp {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 28px !important;
    }

    .logo-slogan {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stats-grid-4 {
        grid-template-columns: 1fr;
    }

    .guides-grid,
    .testimonials-grid,
    .packages-grid,
    .services-grid,
    .services-wrapper {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        padding: 1rem 1.5rem 3rem 1.5rem !important;
        gap: 1.2rem !important;
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
    }

    .guides-grid::-webkit-scrollbar,
    .testimonials-grid::-webkit-scrollbar,
    .packages-grid::-webkit-scrollbar,
    .services-grid::-webkit-scrollbar,
    .services-wrapper::-webkit-scrollbar {
        height: 6px;
        display: block;
    }

    .guides-grid::-webkit-scrollbar-track,
    .testimonials-grid::-webkit-scrollbar-track,
    .packages-grid::-webkit-scrollbar-track,
    .services-grid::-webkit-scrollbar-track,
    .services-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        margin: 0 1.5rem;
    }

    .guides-grid::-webkit-scrollbar-thumb,
    .testimonials-grid::-webkit-scrollbar-thumb,
    .packages-grid::-webkit-scrollbar-thumb,
    .services-grid::-webkit-scrollbar-thumb,
    .services-wrapper::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }

    .guide-card,
    .testimonial-card,
    .package-card,
    .service-card,
    #dynamic-gallery .gallery-item {
        flex: 0 0 75vw !important;
        scroll-snap-align: start;
        width: 75vw !important;
        min-width: 0;
        margin: 0 !important;
    }

    .guide-card {
        padding: 1.5rem 1rem;
    }

    .guide-img-box {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .guide-avatar i {
        font-size: 2rem;
    }

    .guide-experience {
        font-size: 0.7rem;
        padding: 3px 8px;
        bottom: -8px;
    }

    .guide-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .guide-card p,
    .review-text {
        font-size: 0.85rem;
        line-height: 1.6;
        white-space: normal;
        word-wrap: break-word;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .reviewer {
        padding-top: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-content {
        padding: 3rem 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    body {
        font-size: 15px;
    }

    p {
        font-size: 0.95rem;
    }

    .package-card {
        padding: 1.8rem 1.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .mb-large {
        margin-bottom: 3rem !important;
    }

    .stats-grid-4 .stat-item {
        padding: 1.5rem;
    }

    .add-review-box {
        padding: 2rem 1.25rem !important;
    }

    .rating-input {
        flex-direction: column;
        gap: 10px !important;
    }
}

/* 3D Transform Classes */
.package-card,
.testimonial-card,
.glass-panel,
.gallery-item {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.package-icon,
.package-card h3,
.package-card .price,
.stat-item h3 {
    transform: translateZ(40px);
}

.package-features {
    transform: translateZ(20px);
}

.testimonial-card .review-text {
    transform: translateZ(30px);
}

.testimonial-card .rating,
.testimonial-card .reviewer {
    transform: translateZ(20px);
}

.gallery-overlay h3,
.gallery-overlay p {
    transform: translateZ(30px);
}

/* Page Headers for new Subpages */
.page-header {
    height: 50vh;
    background: url('assets/hero_bg_1772769136315.png') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
}

.page-header.gallery-hero {
    background: url('assets/gallery_hero_croc_centered.png') center/cover no-repeat;
    background-attachment: initial;
    height: 60vh;
}

.page-header.services-hero {
    background: url('assets/ultimate_services_hero.png') center/cover no-repeat;
    background-attachment: initial;
    height: 60vh;
}

.page-header.wildlife-hero {
    background: url('assets/nilwala_hero_main_croc.png') center/cover no-repeat;
    background-attachment: fixed;
    height: 60vh;
}

.page-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 12, 0.1) 0%, var(--bg-dark) 100%);
}

.page-title {
    position: relative;
    z-index: 10;
    font-size: 4rem;
    font-family: 'Oswald', sans-serif;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .page-header {
        height: 50vh;
    }
}

.page-subtitle {
    position: relative;
    z-index: 10;
    font-size: 1.2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

/* Gallery filtering grid update */
.gallery-grid.expanded {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
}

@media (max-width: 992px) {
    .gallery-grid.expanded {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid.expanded {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
}

/* Guides Section */
.guides-section {
    padding: 3rem 0 8rem;
    background-color: var(--bg-dark);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding-top: 2rem;
}

.guide-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(242, 100, 25, 0.2);
}

.guide-img-box {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(242, 100, 25, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-avatar i {
    font-size: 3.5rem;
    color: var(--text-muted);
}

.guide-card:hover .guide-img-box {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(242, 100, 25, 0.4);
}

.guide-experience {
    position: absolute;
    bottom: -10px;
    background: var(--primary);
    color: var(--bg-darker);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
}

.guide-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.guide-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
    display: none;
}


@media (max-width: 768px) {

    /* Hide floating wa button and adjust for mobile sticky bar */
    .floating-whatsapp {
        display: none !important;
    }

    body {
        padding-bottom: 70px;
        /* Space for sticky bar */
    }

    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: rgba(10, 10, 12, 0.95);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    }

    .msb-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        color: white;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        position: relative;
    }

    .msb-btn i {
        font-size: 1.3rem;
    }

    .msb-btn:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        height: 50%;
        width: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .msb-book {
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        color: var(--bg-darker);
    }

    .msb-wa {
        color: #25D366;
    }

    .news-ticker-container {
        padding: 8px 0;
        font-size: 0.85rem;
    }

    /* Adjust map height on mobile */
    .map-container {
        height: 250px !important;
    }
}

/* Special Offer Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.popup-container {
    max-width: 450px;
    width: 90%;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: rgba(242, 100, 25, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(242, 100, 25, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(242, 100, 25, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(242, 100, 25, 0);
    }
}

.popup-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.popup-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Bird Discovery Cards */
.bird-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.bird-card {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.bird-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.bird-card-image {
    height: 240px;
    overflow: hidden;
}

.bird-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bird-card:hover .bird-card-image img {
    transform: scale(1.1);
}

.bird-card-content {
    padding: 2rem;
    flex-grow: 1;
}

.bird-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(242, 100, 25, 0.1);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.bird-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: white;
}

.bird-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .bird-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bird-showcase-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        padding: 1rem 1.5rem 3rem 1.5rem !important;
        gap: 1.2rem !important;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: calc(100% + 3rem);
        scrollbar-width: none;
    }

    .bird-showcase-grid::-webkit-scrollbar {
        display: none;
    }

    .bird-card {
        flex: 0 0 85vw !important;
        scroll-snap-align: center;
    }
}

/* --- PREMIUM TOP-TIER ENHANCEMENTS --- */

/* 1. Premium Pre-loader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0c;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    max-width: 300px;
    width: 90%;
}

.loader-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(242, 100, 25, 0.3));
}

.logo-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--primary);
    opacity: 0.3;
    z-index: 1;
    border-radius: 50%;
    animation: fillLoader 2.5s ease-in-out infinite;
}

@keyframes fillLoader {
    0% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

.loader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.bar-progress {
    height: 100%;
    width: 0%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: barProgress 2.5s ease-in-out infinite;
}

@keyframes barProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.loader-text {
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* 2. Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    opacity: 1;
    transition: opacity 1s ease;
}

/* 3. Weather Widget */
.weather-widget {
    position: absolute;
    top: 140px;
    right: 5%;
    background: rgba(10, 10, 12, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 60;
}

.weather-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

.weather-info {
    display: flex;
    flex-direction: column;
}

.weather-info span {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
}

.weather-info label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.weather-divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
}

.icon-glow {
    filter: drop-shadow(0 0 5px var(--primary));
}

/* 4. Interactive safari map */
.map-section {
    padding: 8rem 0;
    background: var(--bg-darker);
}

.map-container {
    margin-top: 4rem;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.01);
}

.map-wrapper {
    position: relative;
    height: 400px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.safari-route-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-spot {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.spot-pulse {
    display: block;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(242, 100, 25, 0.4);
    animation: spotPulse 2s infinite;
}

@keyframes spotPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(242, 100, 25, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(242, 100, 25, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(242, 100, 25, 0);
    }
}

.spot-label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.3s ease;
}

.map-spot:hover .spot-label {
    opacity: 1;
    top: -30px;
}

.map-spot.start {
    top: 150px;
    left: 50px;
}

.map-spot.island {
    top: 80px;
    left: 300px;
}

.map-spot.croc {
    top: 220px;
    left: 600px;
}

.map-spot.sunset {
    top: 250px;
    left: 850px;
}

.route-line {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.animated-path {
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0.2;
    animation: drawPath 5s ease-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(242, 100, 25, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-card h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-card p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* 5. Blog Insights */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-content a {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.blog-content a:hover {
    gap: 12px;
    color: white;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .map-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .weather-widget {
        top: 100px;
        right: 20px;
    }
}

@media (max-width: 768px) {

    /* Horizontal Card Scrolling for Mobile */
    .blog-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 1rem 0 !important;
        margin: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Webkit scrollbar styling for better visibility */
    .blog-grid::-webkit-scrollbar {
        height: 6px;
        display: block !important;
    }

    .blog-grid::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }

    .blog-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        margin: 0 1.5rem;
        border-radius: 10px;
    }

    .blog-card {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .highlight-card {
        transform: scale(1) !important;
    }

    .weather-widget {
        display: flex;
        top: 85px;
        right: 15px;
        padding: 5px 12px;
        gap: 12px;
        transform: scale(0.85);
        transform-origin: right center;
        background: rgba(10, 10, 12, 0.6);
    }

    .weather-divider {
        height: 15px;
    }

    .weather-info span {
        font-size: 0.85rem;
    }

    .weather-info label {
        font-size: 0.6rem;
    }

    .map-container {
        padding: 1rem;
    }

    .map-wrapper {
        height: 250px;
    }
}

/* --- LUXURY SCROLL --- */

/* 1. Luxury Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0c;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary), #b34a12);
    border-radius: 10px;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-selected {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    /* Match other nav links */
    color: white;
    font-size: 1rem;
    /* Match other nav links */
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    height: 100%;
}


.lang-selected img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.lang-selected:hover {
    color: var(--primary);
}

.lang-dropdown {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.lang-dropdown li {
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: white;
    transition: var(--transition);
}

.lang-dropdown li img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.lang-dropdown li:hover {
    background: rgba(242, 100, 25, 0.1);
    color: var(--primary);
}

@media (max-width: 1024px) {
    .lang-switcher {
        padding: 15px 0;
    }

    .lang-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .lang-switcher.active .lang-dropdown {
        display: block;
    }
}

/* intl-tel-input Dark Theme Support */
.iti {
    width: 100%;
}

.iti__country-list {
    background-color: #1a1a1a !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    z-index: 1050 !important;
    width: 300px !important;
    max-height: 300px !important;
}

.iti__country {
    padding: 12px 15px !important;
    transition: all 0.2s ease !important;
}

.iti__country:hover, .iti__country.iti__highlight {
    background-color: rgba(242, 100, 25, 0.2) !important;
}

.iti__selected-flag {
    background-color: transparent !important;
    border-radius: 10px 0 0 10px !important;
    padding-left: 15px !important;
}

.iti__flag-container:hover .iti__selected-flag {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.iti__divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-left: 95px !important;
}

.iti__selected-dial-code {
    color: white !important;
    margin-left: 8px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.95rem !important;
}

.iti__arrow {
    border-top-color: rgba(255, 255, 255, 0.5) !important;
}

.iti__arrow--up {
    border-bottom-color: rgba(255, 255, 255, 0.5) !important;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 10px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.msb-btn {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 5px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.msb-btn i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.msb-call { background: rgba(231, 76, 60, 0.15); color: #e74c3c; border: 1px solid rgba(231, 76, 60, 0.2); }
.msb-book { background: var(--primary); color: white; box-shadow: 0 4px 15px rgba(242, 100, 25, 0.3); }
.msb-wa { background: rgba(37, 211, 102, 0.15); color: #25D366; border: 1px solid rgba(37, 211, 102, 0.2); }

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: grid;
    }
    body {
        padding-bottom: 80px; /* Space for sticky bar */
    }
    .back-to-top {
        bottom: 170px !important; /* Move higher on mobile to avoid overlapping WA and Sticky bar */
    }
    .floating-whatsapp {
        bottom: 95px !important; /* Move above sticky bar on mobile */
        width: 55px !important;
        height: 55px !important;
        font-size: 30px !important;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(242, 100, 25, 0.4);
    border: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
}

.back-to-top:hover {
    background: #d35400;
    transform: translateY(-15px) scale(1.1);
}

/* User Friendly Date Picker Enhancement */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.7;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .btn-primary[data-t="serv_view_more"] {
        display: block;
        width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }
}