:root {
    --bg-primary: #ffffff;
    --text-primary: #1a1a1a;
    --accent-blue: #003057;
    --accent-gold: #ffcc00;
}

[data-theme="dark"] {
    --bg-primary: #121212;
    --text-primary: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background: var(--bg-primary); color: var(--text-primary); transition: 0.3s; overflow-x: hidden; }

/* Navigation */
.top-header { position: fixed; width: 100%; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1001; }
.logo-box img { height: 60px; }
.nav-controls { display: flex; align-items: center; gap: 20px; }
.theme-switch { cursor: pointer; font-size: 24px; color: white; }

.menu-btn { width: 30px; cursor: pointer; display: flex; flex-direction: column; gap: 6px; }
.line { width: 100%; height: 2px; background: white; transition: 0.4s; }
.menu-btn.active .line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.active .line:nth-child(2) { opacity: 0; }
.menu-btn.active .line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Side Nav */
.side-nav { position: fixed; left: -320px; top: 0; width: 320px; height: 100vh; background: var(--bg-primary); z-index: 2000; transition: 0.5s; padding: 80px 40px; }
.side-nav.open { left: 0; }
.menu-list { list-style: none; }
.menu-list li { padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.menu-list a { text-decoration: none; color: var(--text-primary); font-weight: 600; }
.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); opacity: 0; visibility: hidden; z-index: 1500; transition: 0.4s; }
.menu-overlay.active { opacity: 1; visibility: visible; }

/* Hero */
.hero-section { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; text-align: center; color: white; z-index: 10; max-width: 800px; padding: 20px; }
.hero-title { font-size: clamp(32px, 6vw, 64px); font-weight: 800; margin-bottom: 20px; }
.highlight { color: var(--accent-gold); display: block; }
.hero-btns { display: flex; gap: 20px; justify-content: center; margin-top: 30px; }

.btn-explore, .btn-whatsapp { padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-explore { background: rgba(255,255,255,0.2); border: 1px solid white; color: white; }
.btn-whatsapp { background: #25D366; color: white; }
.btn-explore:hover { background: white; color: black; }

/* About Section */
.about-section { padding: 100px 5%; position: relative; }
.watermark-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 15vw; opacity: 0.03; font-weight: 900; z-index: -1; }
.about-container { display: flex; align-items: center; gap: 50px; }
.about-img-box { width: 30%; }
.about-img-box img { width: 100%; border-radius: 20px; }
.about-content-box { flex: 1; text-align: center; }

/* Stats */
.stats-section { padding: 60px 5%; border-top: 1px solid rgba(0,0,0,0.05); }
.stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stat-number { font-size: 48px; color: var(--accent-blue); }
[data-theme="dark"] .stat-number { color: var(--accent-gold); }

/* Features */
.features-section { padding: 80px 5%; text-align: center; }
.feature-rows { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
.feature-item { display: flex; gap: 20px; padding: 25px; background: var(--bg-primary); border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; }
.feature-item:hover { transform: translateY(-10px); }

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-container { flex-direction: column; }
    .about-img-box { width: 100%; }
    .hero-btns { flex-direction: column; }
    .top-header { padding: 15px 20px; }
}
/* Hero Content එක මැදට ගැනීම */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px; 
    z-index: 10;
}

/* Scroll Down Style */
.scroll-indicator {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 2px;
    color: white;
    text-transform: uppercase;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-gold);
    transform: rotate(45deg);
    margin: -3px;
    animation: scroll-arrows 2s infinite;
}

@keyframes scroll-arrows {
    0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

/* Floating Cards (🏝️ Best Beaches, etc.) */
.floating-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.f-card {
    width: 220px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    cursor: pointer;
}

.f-card:hover {
    background: var(--accent-gold);
    color: black;
    transform: scale(1.05);
}

/* Mobile එකේදී බටන් වල ප්‍රමාණය වෙනස් කිරීම */
@media screen and (max-width: 768px) {
    .f-card {
        width: 180px;
        font-size: 13px;
        padding: 10px 20px;
    }
    .hero-title {
        font-size: 36px;
    }
}
/* --- Scroll Indicator Style --- */
.scroll-indicator {
    position: relative !important;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 2px;
    color: white;
    text-transform: uppercase;
}

/* Arrows Animation */
.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #ffcc00; /* Gold Color */
    border-right: 2px solid #ffcc00;
    transform: rotate(45deg);
    margin: -3px;
    animation: scroll-arrows 2s infinite;
}

@keyframes scroll-arrows {
    0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

/* --- Floating Cards (🏝️ Best Beaches, etc.) --- */
.floating-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.f-card {
    width: 220px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    justify-content: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.f-card:hover {
    background: #ffcc00; /* Gold on hover */
    color: black;
    transform: scale(1.05);
}
/* --- About Us Button Style --- */
.about-btn-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #003057; /* Walkers Tours Blue */
    margin-top: 30px;
    transition: 0.3s;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background-color: #003057;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
    font-weight: 300;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-text {
    font-weight: 700;
    font-size: 25px;
    letter-spacing: 2px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

/* Hover කළාම සිදුවන වෙනස්කම් */
.about-btn-link:hover .icon-circle {
    transform: rotate(90deg) scale(1.1);
    background-color: #ffcc00; /* Hover කළාම රන්වන් පාට වේ */
    color: #000;
}

.about-btn-link:hover .btn-text {
    color: #ffcc00;
    border-bottom: 2px solid #ffcc00;
}
/* style.css */

.about-header {
    text-align: center;
    width: 100%;
    /* මේ අගය (60px) ඔයාට අවශ්‍ය විදිහට වැඩි කරන්න (උදා: 100px හෝ 120px) */
    margin-bottom: 100px; 
}

/* පින්තූර තවත් ටිකක් පල්ලෙහාට ගන්න ඕනේ නම් මේ margin-top එකත් වැඩි කරන්න පුළුවන් */
.about-img-box {
    width: 85%;
    margin-top: 67px; /* පින්තූර අකුරු වලට වඩා තවත් පහළින් තැබීමට */
}
.about-img-box img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-img-box:hover img {
    transform: scale(1.05); /* පොඩ්ඩක් zoom වේ */
    box-shadow: 0 30px 60px rgba(0,0,0,0.2); /* හෙවනැල්ල තද වේ */
}
.premium-features {
    padding: 100px 10%;
    background: var(--bg-primary);
}

.section-title-premium {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.premium-list {
    max-width: 900px;
    margin: 0 auto;
}

.premium-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: 0.3s;
}

[data-theme="dark"] .premium-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.premium-item:hover {
    padding-left: 20px;
    background: rgba(0, 48, 87, 0.02);
}

.premium-icon {
    width: 50px;
    height: 50px;
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-icon img {
    width: 100%;
    height: auto;
}

.premium-text p {
    font-size: 17px;
    font-weight: 500;
    color: #444;
}

[data-theme="dark"] .premium-text p {
    color: #ccc;
}
/* Premium Features Styling */
.premium-features-section {
    padding: 100px 5%;
    background-color: var(--bg-primary);
    text-align: center;
}

.premium-header {
    margin-bottom: 60px;
}

.rating-stars {
    color: #ffcc00;
    font-size: 22px;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.agent-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
}

.premium-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 10px;
}

/* List Style Layout */
.premium-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.premium-card {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

[data-theme="dark"] .premium-card {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.premium-card:hover {
    background: rgba(0, 48, 87, 0.03);
    padding-left: 45px; /* පොඩ්ඩක් ඉස්සරහට ඇදෙන effect එක */
}

[data-theme="dark"] .premium-card:hover {
    background: rgba(255, 204, 0, 0.03);
}

.p-icon {
    font-size: 30px;
    margin-right: 35px;
    min-width: 50px;
    display: flex;
    justify-content: center;
}

.p-content p {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    line-height: 1.5;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .premium-title { font-size: 30px; }
    .premium-card { padding: 20px; }
    .p-icon { font-size: 24px; margin-right: 20px; }
    .p-content p { font-size: 14px; }
}
.premium-benefits {
    padding: 100px 8%;
    background: var(--bg-primary);
}

.benefits-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

/* පින්තූරය පැත්ත */
.benefits-image {
    flex: 1;
    position: relative;
}

.benefits-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffcc00;
    color: #000;
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* විස්තර පැත්ත */
.benefits-content {
    flex: 1;
}

.benefits-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.benefits-subtitle {
    color: #666;
    margin-bottom: 35px;
    font-size: 18px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-icon {
    background: #003057;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
}

[data-theme="dark"] .check-icon {
    background: #ffcc00;
    color: #000;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
}

.btn-book-now {
    display: inline-block;
    padding: 15px 40px;
    background: #003057;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-book-now:hover {
    background: #ffcc00;
    color: #000;
    transform: translateY(-5px);
}

/* Mobile එකට ගැලපෙන විදිහ */
@media (max-width: 992px) {
    .benefits-container {
        flex-direction: column;
        text-align: center;
    }
    .benefits-image {
        width: 100%;
        margin-bottom: 40px;
    }
    .benefit-item {
        text-align: left;
    }
}
/* --- Premium Benefits Layout Fix --- */
.benefits-container {
    display: flex;          /* මේක අනිවාර්යයි */
    align-items: center;    /* මැදින් පෙළගස්වන්න */
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* වම් පැත්තේ පින්තූරය */
.benefits-image {
    flex: 1;               /* ඉඩෙන් භාගයක් ගන්න */
    max-width: 500px;      /* පින්තූරය ඕනෑවට වඩා ලොකු වීම වළක්වන්න */
    position: relative;
}

.benefits-image img {
    width: 100%;           /* Container එකට ගැලපෙන්න */
    height: auto;
    border-radius: 20px;
}

/* දකුණු පැත්තේ අකුරු ටික */
.benefits-content {
    flex: 1;               /* ඉතිරි භාගය ගන්න */
    text-align: left;      /* වම් පැත්තට පෙළගස්වන්න */
}

/* Mobile එකේදී එක යට එක එන්න */
@media (max-width: 992px) {
    .benefits-container {
        flex-direction: column; /* phone එකේදී එක යට එක */
        text-align: center;
    }
    
    .benefits-image {
        max-width: 100%;
    }
}
/* Tour Categories Section Styling */
.tour-categories-section {
    padding: 80px 5%;
    background-color: #e3f2fd; /* ලා නිල් පාට පසුබිම */
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 40px;
}

.cat-title {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #000;
}

.cat-title span {
    font-weight: 400;
}

.header-right {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header-right p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

.explore-all {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #003057;
    font-weight: 700;
    letter-spacing: 1px;
}

.plus-icon {
    background: #003057;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grid Layout */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
}

.card-overlay h3 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.card-explore {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.small-plus {
    background: #fff;
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card:hover img {
    transform: scale(1.1);
}

/* --- Tour Categories Refined Style --- */
.tour-categories-section {
    padding: 80px 5% 120px;
    background-color: #d1f0ff; /* පින්තූරයේ ඇති ලා නිල් පාට */
    position: relative;
}

/* Desktop & Mobile visibility toggle */
.desktop-only { display: grid; }
.mobile-only { display: none; }

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.cat-title { font-size: 50px; line-height: 1.1; font-weight: 700; color: #000; }
.cat-title span { font-weight: 400; }

.categories-grid {
    grid-template-columns: repeat(4, 1fr); /* පේළියට 4ක් */
    gap: 20px;
}

/* Card Styling */
.category-card, .m-category-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.category-card img, .m-category-card img {
    width: 100%; height: 100%; object-fit: cover; transition: 0.5s;
}

.card-overlay, .m-card-content {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 30px; color: #fff; text-align: left;
}

.card-line, .line {
    height: 2px; width: 40px; background: #fff; display: inline-block; margin-left: 10px;
}

.card-explore, .m-explore-btn {
    display: flex; align-items: center; gap: 10px; margin-top: 15px; font-weight: 600;
}

.small-plus, .m-plus {
    background: #fff; color: #000; width: 35px; height: 35px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* Inquire Now Bar */
.inquire-now-bar {
    background: #003057; color: #fff; padding: 18px;
    width: 100%; position: absolute; bottom: 0; left: 0;
    font-weight: 700; text-align: center; letter-spacing: 2px;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; }
    
    .categories-header { flex-direction: column; text-align: center; align-items: center; }
    .header-right { margin-top: 20px; }
    
    .m-nav-controls {
        display: flex; justify-content: center; gap: 20px; margin: 30px 0;
    }
    
    .m-nav-controls button {
        width: 50px; height: 50px; border-radius: 50%; border: 1px solid #003057;
        background: transparent; font-size: 24px; color: #003057;
    }
}
.tour-categories-section {
    background-color: #d1f0ff;
    padding: 60px 0 100px; /* Inquire bar එකට ඉඩ තැබීමට */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.categories-header { padding: 0 20px; margin-bottom: 30px; }
.cat-title { font-size: 38px; font-weight: 700; color: #000; line-height: 1.1; }
.cat-title span { font-weight: 400; }

/* Slider Logic */
.mobile-slider-container {
    width: 100%;
    max-width: 350px; /* කාඩ් එකේ පළල */
    margin: 0 auto;
    overflow: hidden; /* පිටතට යන ඒවා පේන්නේ නැති වෙන්න */
    border-radius: 20px;
}

.mobile-card-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.m-category-card {
    min-width: 100%; /* එක පාරකට එක කාඩ් එකක් විතරයි */
    height: 450px;
    position: relative;
}

.m-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    text-align: left;
    color: white;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.m-card-content h3 { font-size: 22px; display: flex; align-items: center; gap: 10px; }
.line { height: 2px; width: 50px; background: white; display: inline-block; }

.m-plus {
    background: white; color: black; width: 35px; height: 35px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* Nav Controls */
.m-nav-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.m-nav-controls button {
    width: 45px; height: 45px; border-radius: 50%;
    border: 1px solid #555; background: transparent;
    font-size: 24px; cursor: pointer;
}

/* Bottom Actions */
.m-main-explore {
    display: inline-flex;
    align-items: center;
    background: #003057;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 30px 0;
    gap: 15px;
}
/* Section Styling */
.premium-packages-section {
    position: relative;
    padding: 120px 0;
    background: #000; /* iPhone style dark mode background */
    overflow: hidden;
    text-align: center;
}

/* Big Bold iPhone Title */
.main-bold-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(60px, 12vw, 150px);
    letter-spacing: -2px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.9;
}

.sub-tour-title {
    color: #fff;
    font-size: 24px;
    letter-spacing: 10px;
    font-weight: 300;
    margin-top: 10px;
    text-transform: uppercase;
}

.section-subtitle {
    color: #888;
    margin-top: 20px;
    font-size: 18px;
}

/* Slider Controls */
.slider-outer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    padding: 0 5%;
}

.package-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
}

.package-track {
    display: flex;
    gap: 25px;
    transition: transform 0.8s cubic-bezier(0.45, 0, 0.15, 1);
}

/* Premium Cards */
.pkg-card {
    min-width: calc((100% - 75px) / 4); /* PC 4 Cards */
    background: #1c1c1e; /* iPhone card color */
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #333;
    transition: 0.4s;
}

.pkg-card:hover {
    transform: scale(1.02);
    border-color: #555;
}

.pkg-img {
    height: 250px;
    position: relative;
}

.pkg-img img { width: 100%; height: 100%; object-fit: cover; }

.badge {
    position: absolute; top: 15px; left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #000; padding: 4px 12px;
    font-size: 11px; font-weight: 700; border-radius: 10px;
}

.pkg-details { padding: 25px; text-align: left; color: #fff; }
.pkg-details h4 { font-size: 20px; margin-bottom: 8px; }
.pkg-details p { color: #888; font-size: 14px; margin-bottom: 20px; }

.btn-explore {
    color: #0071e3; /* Apple Blue */
    text-decoration: none; font-weight: 600;
    display: flex; align-items: center; gap: 5px;
}

/* Navigation */
.nav-arrow {
    background: rgba(255,255,255,0.1);
    border: none; color: white;
    font-size: 40px; width: 60px; height: 60px;
    border-radius: 50%; cursor: pointer;
    transition: 0.3s;
}

.nav-arrow:hover { background: rgba(255,255,255,0.2); }

/* Mobile */
@media (max-width: 1024px) {
    .pkg-card { min-width: calc((100% - 25px) / 2); }
}

@media (max-width: 600px) {
    .pkg-card { min-width: 100%; }
    .main-bold-title { font-size: 50px; }
    .nav-arrow { display: none; }
}
/* Clean White Section */
.iphone-light-section {
    padding: 100px 0;
    background-color: #fbfbfd; /* Apple's light background color */
    overflow: hidden;
}

/* Big Bold Title - iPhone Style */
.bold-text-center {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 10vw, 120px);
    color: #1d1d1f;
    text-align: center;
    margin: 0;
    letter-spacing: -3px;
    line-height: 1.1;
}

.sub-text-center {
    text-align: center;
    font-size: 20px;
    letter-spacing: 8px;
    color: #86868b;
    font-weight: 400;
    margin-top: 10px;
    text-transform: uppercase;
}

.desc-center {
    text-align: center;
    color: #424245;
    margin: 20px auto 50px;
    max-width: 600px;
    font-size: 18px;
}

/* Slider Controls */
.premium-slider-wrapper {
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.slider-mask {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.card-track-v2 {
    display: flex;
    gap: 24px;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Card Styles */
.premium-card {
    min-width: calc((100% - 72px) / 4); /* PC: 4 Cards */
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.premium-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.card-img { height: 240px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }

.card-info { padding: 25px; text-align: left; }
.category { color: #0071e3; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.card-info h4 { font-size: 20px; color: #1d1d1f; margin: 8px 0; font-weight: 600; }
.card-info p { color: #86868b; font-size: 14px; margin-bottom: 20px; }

.explore-link {
    text-decoration: none;
    color: #0071e3;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Buttons */
.arrow-btn {
    width: 50px; height: 50px; border-radius: 50%; border: none;
    background: rgba(0,0,0,0.05); color: #1d1d1f;
    font-size: 30px; cursor: pointer; transition: 0.3s;
}

.arrow-btn:hover { background: #e8e8ed; }

/* Responsive */
@media (max-width: 1024px) {
    .premium-card { min-width: calc((100% - 24px) / 2); }
}

@media (max-width: 600px) {
    .premium-card { min-width: 100%; }
    .bold-text-center { font-size: 45px; letter-spacing: -1px; }
}
.iphone-light-section {
    padding: 80px 0;
    background-color: #fbfbfd;
    overflow: hidden;
    text-align: center;
}

.bold-text-center {
    font-family: sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 8vw, 100px);
    color: #1d1d1f;
    margin: 0;
    letter-spacing: -2px;
}

.sub-text-center {
    font-size: 18px;
    letter-spacing: 5px;
    color: #86868b;
    margin-bottom: 40px;
}

.premium-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    gap: 20px;
}

.slider-mask {
    width: 100%;
    overflow: hidden; /* මේක නැතිනම් slider එක වැඩ කරන්නේ නෑ */
}

.card-track-v2 {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.premium-card {
    min-width: calc((100% - 60px) / 4); /* PC: 4 Cards */
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

@media (max-width: 1024px) {
    .premium-card { min-width: calc((100% - 20px) / 2); }
}

@media (max-width: 600px) {
    .premium-card { min-width: 100%; }
}

.card-img { height: 200px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-info { padding: 20px; text-align: left; }
.explore-link { color: #0071e3; text-decoration: none; font-weight: 600; }

.arrow-btn {
    width: 45px; height: 45px; border-radius: 50%; border: none;
    background: #eee; cursor: pointer; font-size: 20px;
}
/* PC එකේදී පෙනෙන ආකාරය */
@media (min-width: 1024px) {
    .tour-slider-container {
        position: relative;
        padding: 0 40px;
    }

    .m-category-card {
        margin: 0 10px; /* කාඩ් අතර පරතරය */
        border-radius: 15px;
        overflow: hidden;
        height: 450px; /* පින්තූරයේ උස */
    }

    .m-category-card img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* පින්තූරය ඇද නොවී ලස්සනට පේන්න */
        transition: transform 0.5s ease;
    }

    .m-category-card:hover img {
        transform: scale(1.1); /* Mouse එක ගෙනියද්දී Zoom වේ */
    }

    /* බොත්තම් දෙපැත්තට ගැනීම */
    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        border: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        cursor: pointer;
    }
    .prev-btn { left: 0; }
    .next-btn { right: 0; }
}
/* --- Mobile Optimized Styles Start --- */

/* Mobile Bottom Bar - PC එකේදී hide කරනවා */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 5%;
    right: 5%;
    height: 65px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    z-index: 2500; /* අනිත් හැමදේටම වඩා උඩින් තියෙන්න */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    justify-content: space-around;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Dark mode එකේදී Bottom Bar එකේ පාට */
[data-theme="dark"] .mobile-bottom-nav {
    background: rgba(20, 20, 20, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-primary);
    font-size: 10px;
    font-weight: 600;
    flex: 1;
}

.center-btn {
    width: 55px;
    height: 55px;
    background: #25D366; /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -35px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    border: 5px solid var(--bg-primary);
}

.center-btn .icon { font-size: 24px; color: white; }

/* Phone එකේදී විතරක් පෙන්වන්න (Responsive) */
@media (max-width: 768px) {
    .mobile-bottom-nav { display: flex; }
    
    /* Hero section එකේ අකුරු ෆෝන් එකට ගැලපෙන්න හදනවා */
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
}
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 25px; /* පොඩ්ඩක් උඩින් තැබීම iPhone Style වේ */
        left: 20px;
        right: 20px;
        height: 75px;
        
        /* iPhone Glass Effect */
        background: rgba(255, 255, 255, 0.7); 
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        
        border-radius: 30px;
        z-index: 9999;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        justify-content: space-around;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.4);
        padding: 0 10px;
    }

    /* Dark Mode එකට ගැලපෙන Glass Effect */
    [data-theme="dark"] .mobile-bottom-nav {
        background: rgba(28, 28, 30, 0.75);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .nav-item {
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #1c1c1e; /* Dark iOS Text */
        transition: all 0.3s ease;
        flex: 1;
    }

    /* Icon Styles */
    .nav-item i {
        font-size: 22px;
        margin-bottom: 4px;
        transition: transform 0.3s ease;
        color: #003057; /* ප්ප්‍රධාන වර්ණය */
    }

    .nav-item span {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        opacity: 0.8;
    }

    /* මැද Premium WhatsApp Button එක */
    .center-btn {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        border-radius: 22px; /* iOS Squircle Shape */
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -45px;
        box-shadow: 0 10px 20px rgba(18, 140, 126, 0.3);
        border: 4px solid rgba(255, 255, 255, 1);
        transform: rotate(-5deg); /* පොඩි ලස්සනකට */
        transition: 0.3s;
    }

    .center-btn:active {
        transform: scale(0.9) rotate(0deg);
    }

    .center-btn i {
        font-size: 28px;
        color: white !important;
        margin: 0;
    }

    /* Active Item Effect */
    .nav-item:active i {
        transform: scale(1.2);
        color: #C5A059; /* Gold color on click */
    }
}
/* Dynamic Island Style */
.dynamic-island-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    pointer-events: none;
}

.dynamic-island {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: islandAppear 1s ease forwards;
}

.island-icon { font-size: 18px; }
.island-text { font-size: 13px; font-weight: 500; white-space: nowrap; }

@keyframes islandAppear {
    0% { width: 50px; opacity: 0; transform: translateY(-20px); }
    100% { width: auto; opacity: 1; transform: translateY(0); }
}

/* Mobile එකේදී පොඩ්ඩක් කුඩා කරන්න */
@media (max-width: 768px) {
    .dynamic-island {
        padding: 8px 15px;
        min-width: 150px;
    }
    .island-text { font-size: 11px; }
}
/* Pre-loader Base Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #001a2e; /* ඉතාම තද නිල් පාටක් (Luxury Feel) */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* හැමදේටම වඩා උඩින් */
    transition: opacity 0.6s ease-in-out, visibility 0.6s;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    letter-spacing: 8px;
    color: white;
    font-weight: 300;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.gold-text {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ffcc00; /* ඔයාගේ Accent Gold පාට */
    letter-spacing: 4px;
    margin-top: 10px;
}

.loader-line-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 7, 7, 0.1);
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.loader-line {
    width: 0;
    height: 100%;
    background: #ffcc00;
    animation: loadLine 2s cubic-bezier(0.42, 0, 0.58, 1) forwards;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes loadLine {
    0% { width: 0; }
    100% { width: 100%; }
}

/* සයිට් එක load වුණාම අයින් වෙන හැටි */
.loader-wrapper.loaded {
    opacity: 0;
    visibility: hidden;
}
/* Loader එක තියෙන වෙලාවට සයිට් එක scroll කරන්න එපා */
body {
    overflow-x: hidden;
}

.loader-wrapper {
    /* ... කලින් තිබුණු styles ... */
    pointer-events: all; /* Loader එක උඩ තියෙන වෙලාවට යට දේවල් click වෙන්න එපා */
}

.loader-wrapper.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Loader එක අයින් වුණාම සයිට් එක පාවිච්චි කරන්න ඉඩ දෙන්න */
}
/* Premium Pre-loader Update */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff; /* සුදු පැහැති පසුබිම */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    letter-spacing: 5px;
    color: #2e7d32; /* තද කොළ පාට (Nature/Green Sri Lanka) */
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.gold-text {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #ffcc00; /* කහ/රන්වන් පාට */
    letter-spacing: 3px;
    margin-top: 8px;
    text-shadow: 0 2px 10px rgba(255, 204, 0, 0.2);
}

.loader-line-container {
    width: 220px;
    height: 4px; /* පොඩ්ඩක් ඝනකම වැඩි කළා පේන්න */
    background: #f0f0f0;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.loader-line {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #ffcc00, #ffdb4d); /* ලස්සන කහ පැහැති Gradient එකක් */
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    animation: loadLine 3s cubic-bezier(0.42, 0, 0.58, 1) forwards; /* තප්පර 3ක් තැබුවා */
}

@keyframes loadLine {
    0% { width: 0; }
    100% { width: 100%; }
}
.loader-wrapper {
    /* ... කලින් තිබුණු styles ... */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;

    /* මෙන්න මේ පේළිය අනිවාර්යයෙන්ම ඕනේ */
    transition: opacity 1s ease-out, visibility 1s ease-out; 
    opacity: 1;
    visibility: visible;
}

/* Loader එක ඉවර වුණාම පාවිච්චි වෙන Style එක */
.loader-wrapper.loaded {
    opacity: 0;
    visibility: hidden;
}
.loader-wrapper {
    /* ... කලින් තිබුණු styles ... */
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out; /* මේක අනිවාර්යයි */
    opacity: 1;
    visibility: visible;
}

/* මේ class එක JS එකෙන් වැටුණම තමයි Fade වෙන්නේ */
.loader-wrapper.loaded {
    opacity: 0;
    visibility: hidden;
}
.back-to-top {
    position: fixed;
    bottom: 90px; /* Bottom Nav එකට උඩින් තැබීමට */
    right: 20px;
    width: 45px;
    height: 45px;
    background: #2e7d32;
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none; /* මුලින්ම පේන්නේ නැහැ */
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.back-to-top:hover { background: #ffcc00; color: #1a1a1a; }
.official-strip {
    background: #1e293b; /* Dark theme එකට ගැලපෙන අළු පාට */
    display: flex;
    justify-content: space-around;
    padding: 20px 5%;
    border-bottom: 2px solid #ffcc00; /* Gold line එකක් */
}

.strip-item {
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strip-item i {
    color: #ffcc00;
    font-size: 20px;
}
.live-stats {
    display: flex;
    justify-content: space-around;
    background: var(--bg-secondary);
    padding: 40px 5%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 14px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tour-card {
    background: #1e293b; /* ලා කළු පාට */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: 0.4s;
}

.tour-card:hover {
    transform: translateY(-10px);
    border-color: #ffcc00;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.tour-info h3 {
    color: #ffcc00; /* Gold Title */
    font-size: 22px;
    margin-bottom: 10px;
}

.tour-price {
    font-size: 24px;
    font-weight: 700;
    color: #22c55e; /* Green Price */
}
.explore-section { padding: 100px 5%; background: var(--bg-primary); text-align: center; }
.section-subtitle { color: #cbd5e1; margin-bottom: 40px; font-size: 14px; letter-spacing: 1px; }

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.dest-item {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.dest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    text-align: left;
    transition: 0.4s;
}

.dest-item:hover img { transform: scale(1.1); }

.dest-overlay h3 { color: var(--accent-gold); font-size: 24px; margin-bottom: 5px; }
.dest-overlay p { color: #f8fafc; font-size: 14px; margin-bottom: 15px; }

.explore-btn-sm {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
    transition: 0.3s;
}

.explore-btn-sm:hover { background: var(--accent-gold); color: #000; }