* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden; /* මේක විතරක් තිබ්බාම ඇති */
    background-color: #000;
    margin: 0;
    padding: 0;
}
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo { font-size: 24px; font-weight: 800; letter-spacing: 1px; }
.logo span { color: #f1c40f; }

.contact-nav {
    background: #f1c40f;
    color: black !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.contact-nav:hover { background: white; }

.hero {
    height: 100vh;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* මේක දැම්මම පේජ් එක scroll කරද්දී පින්තූරේ පාවෙනවා වගේ ලස්සනට පේනවා */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* පින්තූරය උඩ කළු පාට ලේයර් එකක් දානවා අකුරු සුදු පාටට පේන්න */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    animation: fadeInDown 1s ease;
}

.badge {
    color: #f1c40f;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content h1 span { color: #f1c40f; }

.hero-content p {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: #f1c40f;
    color: black;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(241, 196, 15, 0.2);
}

.btn-primary:hover { background: white; transform: translateY(-3px); }

/* Features Section - Glassmorphism */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 100px 10%;
    background: #050505;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #f1c40f;
    transform: translateY(-10px);
}

.icon { font-size: 40px; color: #f1c40f; margin-bottom: 20px; }
.feature-card h3 { font-size: 22px; margin-bottom: 15px; font-weight: 700; }
.feature-card p { font-size: 14px; color: #bbb; line-height: 1.6; }

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1rem; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 25px; }
}

footer { text-align: center; padding: 50px; color: #555; font-size: 13px; border-top: 1px solid #111; }
/* --- New Next Level Styles --- */

/* Gallery Section */
.gallery-section {
    padding: 80px 10%;
    text-align: center;
    background: #050505;
}

.section-title {
    font-size: 30px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #f1c40f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-weight: 600;
    font-size: 18px;
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .img-overlay { opacity: 1; }

/* Trust & Ratings Section */
.trust-section {
    padding: 60px 20px;
    text-align: center;
    background: #0a0a0a;
}

.trust-content p {
    color: #888;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-rating {
    display: inline-block;
    padding: 15px 35px;
    background-color: #000;
    color: #fff;
    border: 1px solid #333;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.4s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.btn-rating:hover {
    background-color: #2ecc71; /* Highlight Green */
    color: #000;
    border-color: #2ecc71;
    transform: translateY(-5px);
}

.stars {
    color: #f1c40f;
    margin-left: 10px;
}

/* Page Animation on Scroll */
.feature-card, .gallery-item {
    animation: fadeInUp 1s ease both;
    animation-timeline: view();
    animation-range: entry 20% cover 30%;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Gallery Section එක තවත් ලස්සන කරන්න */
.gallery-section {
    padding: 60px 5%;
    background: #000; /* කළු පසුබිම */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* එක පේළියට පින්තූර කිහිපයක් */
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px; /* කොන් රවුම් කරන්න */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 350px; /* පින්තූර වල උස එක සමාන කරන්න */
    object-fit: cover;
    display: block;
    transition: 0.6s;
}

/* පින්තූරය උඩ තියෙන අකුරු (Overlay) */
.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    text-align: left;
}

.img-caption h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.img-caption p {
    font-size: 13px;
    color: #f1c40f; /* කහ පාට පොඩි විස්තරයක් */
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hover Effect - මවුස් එක ගෙනිද්දී වෙන වෙනස */
.gallery-item:hover {
    transform: translateY(-10px);
    border-color: #f1c40f;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}
.gallery-section {
    padding: 80px 8%;
    background: #000;
    text-align: center;
}

.section-title {
    color: #f1c40f;
    font-size: 28px;
    letter-spacing: 5px;
    margin-bottom: 50px;
    font-weight: 800;
}

/* පින්තූර එක පේළියට ගන්න Grid එක */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 380px; /* පින්තූර වල උස එක සමාන කළා */
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

/* අකුරු පින්තූරය උඩ පේන විදිහ (Overlay) */
.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    text-align: left;
    color: #fff;
}

.img-caption p {
    color: #f1c40f;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.img-caption h3 {
    font-size: 22px;
    font-weight: 700;
}

/* Hover Effects */
.gallery-item:hover {
    transform: translateY(-10px);
    border-color: #f1c40f;
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Mobile වලට ගැළපෙන්න */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* ෆෝන් එකේදී පින්තූර එක යට එක */
    }
}/* Gallery Section එකේ පෙනුම සුපිරි කරන්න */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    border-radius: 20px; /* කොන් හොඳට රවුම් කළා */
    overflow: hidden;
    height: 400px;
    background: #1a1a1a; /* පින්තූර නැති වෙලාවට පේන පාට */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* පින්තූරේ ඇද වෙන්නේ නැතුව Fit වෙනවා */
    transition: 0.8s;
    filter: brightness(0.8);
}

/* පින්තූරය උඩ අකුරු ලස්සනට පේන්න */
.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, transparent);
    text-align: left;
}

.img-caption h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.img-caption p {
    color: #f1c40f; /* කහ පාට පොඩි අකුරු */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hover කළාම වෙන මැජික් එක */
.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #f1c40f;
    box-shadow: 0 20px 40px rgba(241, 196, 15, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}.trust-section {
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #111;
}

.trust-section p {
    font-size: 13px;
    letter-spacing: 4px;
    color: #555;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.btn-rating {
    display: inline-block;
    padding: 16px 40px;
    background: #000;
    color: #fff;
    border: 1px solid #333;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s;
    font-size: 12px;
}

.btn-rating:hover {
    background: #2ecc71; /* Green Highlight */
    color: #000;
    border-color: #2ecc71;
    transform: scale(1.05);
}/* Destinations Section Styling */
.destinations-section {
    padding: 80px 10%;
    background-color: #050505; /* ඩාර්ක් පසුබිම */
    text-align: center;
}

.section-subtitle {
    color: #888;
    margin-top: -30px;
    margin-bottom: 50px;
    font-size: 14px;
    letter-spacing: 1px;
}



.destinations-grid {
    display: flex; /* එක පේළියට ගන්න */
    flex-wrap: nowrap; /* පේළි කැඩෙන්න දෙන්න එපා */
    overflow-x: auto; /* පැත්තට Scroll වෙන්න ඉඩ දෙන්න */
    gap: 20px;
    padding: 20px;
    -webkit-overflow-scrolling: touch; /* Mobile වලදී ලස්සනට Scroll වෙන්න */
}

/* මේකෙන් අර පල්ලෙහා තියෙන කැත Scroll bar එක හංගනවා */
.destinations-grid::-webkit-scrollbar {
    display: none;
}

.dest-card {
    flex: 0 0 280px; /* කාඩ් එකේ පළල 280px ගානේ ස්ථාවරව තියාගන්න */
    width: 280px;
}

.dest-item img {
    width: 100%;
    height: 200px; /* හැම පින්තූරයක්ම එකම උසකට ගන්න */
    object-fit: cover;
    border-radius: 15px;
}

.dest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Effect - මවුස් එක ගෙනිද්දී */
.dest-item:hover {
    transform: translateY(-10px);
    border-color: #f1c40f; /* කහ පාට Border */
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.1);
}

.dest-item:hover img {
    transform: scale(1.1); /* Zoom වෙනවා */
    filter: brightness(0.6); /* පොඩ්ඩක් ඩාර්ක් වෙනවා අකුරු පේන්න */
}

/* විස්තර කොටස (Overlay) */
.dest-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    text-align: left;
    color: #fff;
    opacity: 0; /* සාමාන්‍යයෙන් පේන්නේ නැහැ */
    transition: 0.4s;
    transform: translateY(20px); /* පොඩ්ඩක් පල්ලෙහාට */
}

/* Hover කළාම විස්තරේ පේන හැටි */
.dest-item:hover .dest-caption {
    opacity: 1;
    transform: translateY(0); /* උඩට එනවා */
}

.dest-caption h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f1c40f; /* කහ පාට Title */
    margin-bottom: 5px;
}

.dest-caption p {
    font-size: 13px;
    color: #eee;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dest-item { height: 250px; }
}/* --- TripAdvisor White Text Style --- */

/* Text colors within hero should be white by default, but let's be sure */
.hero-content h1, 
.hero-content p {
    color: #fff;
}

/* New style for the trust section (without box) */
.trust-content {
    margin-top: 50px; /* 'Reserve Your Ride' බට්න් එකෙන් පල්ලෙහාට */
    text-align: center;
}

.trust-content p {
    color: #fff !important; /* අකුරු සුදු කළා */
    font-size: 13px;
    letter-spacing: 4px; /* අකුරු අතර පරතරය */
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8; /* පොඩ්ඩක් ඩාර්ක් කළා clean ලුක් එකට */
}

/* New rating button style (without box) */
.btn-rating-white {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent; /* පසුබිම නැහැ */
    color: #fff !important; /* අකුරු සුදු */
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2); /* පොඩි සුදු border එකක් */
    border-radius: 50px;
}

/* Hover කළාම (මවුස් එක ගෙනිච්චම) Green Highlight වෙන හැටි */
.btn-rating-white:hover {
    background-color: #2ecc71; /* Green highlight */
    color: #000 !important; /* අකුරු කළු වෙනවා */
    border-color: #2ecc71;
    transform: translateY(-3px); /* පොඩ්ඩක් උඩට ඉස්සෙන ලස්සනක් */
}

.stars {
    color: #f1c40f; /* තරු වල පාට කහ පාට */
    margin-left: 10px;
    font-size: 14px;
}.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* වීඩියෝ එක එළියට යන එක නතර කරන්න */
}

.back-video {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1; /* අකුරු වලට යටින් තියෙන්න */
    width: 100%;
    height: 100%;
    object-fit: cover; /* වීඩියෝ එක ඇද නොවී Full Screen Fit වෙන්න */
}

/* වීඩියෝ එක උඩ තියෙන ඩාර්ක් ලේයර් එක */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* වීඩියෝ එක පොඩ්ඩක් ඩාර්ක් කළා අකුරු පේන්න */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1; /* අකුරු වීඩියෝ එකට උඩින් පේන්න */
    text-align: center;
}/* Nav Bar එකේ සැකැස්ම */
nav {
    padding: 30px 5%;
    background: rgba(0, 0, 0, 0.9); /* පොඩ්ඩක් විනිවිද පෙනෙන කළු පාටක් */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: center; /* Logo එක මැදට ගන්නවා */
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo එකේ Style එක */
.logo {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: #f1c40f; /* Tours කියන කොටස කහ පාට කළා */
}

/* Book Now බට්න් එක පොඩි කරලා අයිනට ගැනීම */
.contact-nav {
    position: absolute;
    right: 0; /* අයිනටම යනවා */
    background-color: #f1c40f;
    color: #000;
    padding: 7px 15px; /* බට්න් එක පොඩි කළා */
    border-radius: 50px;
    text-decoration: none;
    font-size: 12px; /* අකුරු පොඩි කළා */
    font-weight: 700;
    transition: 0.3s ease;
    text-transform: uppercase;
}
/* Nav Bar එකේ සම්පූර්ණ සැකැස්ම */
nav {
    padding: 35px 5%; /* උඩ සහ යට ඉඩ වැඩි කරලා Logo එක පල්ලෙහාට ගත්තා */
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: center; /* Logo එක හරියටම මැදට ගන්න */
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo එක ලොකු කරලා පල්ලෙහාට ගැනීම */
.logo {
    font-size: 32px; /* Logo එක ලොකු කළා */
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 10px; /* Logo එක තව පොඩ්ඩක් පල්ලෙහාට තල්ලු කළා */
}

.logo span {
    color: #f1c40f; /* Tours කියන කොටස කහ පාට */
}

/* Book Now බට්න් එක පොඩි කරලා අයිනට ගැනීම */
.contact-nav {
    position: absolute;
    right: 0; /* අයිනටම යනවා */
    background-color: #f1c40f;
    color: #000;
    padding: 8px 18px; /* බට්න් එකේ සයිස් එක පොඩි කළා */
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px; /* බට්න් එකේ අකුරු පොඩි කළා */
    font-weight: 700;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.contact-nav:hover {
    background-color: #fff;
    transform: scale(1.05);
}

/* Phone එකෙන් බලද්දී පිළිවෙළට පේන්න */
@media (max-width: 768px) {
    nav {
        padding: 25px 5%;
    }
    .logo {
        font-size: 22px;
    }
    .contact-nav {
        padding: 6px 12px;
        font-size: 10px;
    }
}
.contact-nav:hover {
    background-color: #fff;
    transform: scale(1.05);
}

/* Mobile වලට (Phone එකෙන් බලද්දී) */
@media (max-width: 768px) {
    .logo {
        font-size: 16px;
    }
    .contact-nav {
        padding: 5px 12px;
        font-size: 10px;
    }
}
/* Nav Bar එකේ සම්පූර්ණ සැකැස්ම */
nav {
    padding: 35px 5%; /* උඩ සහ යට ඉඩ වැඩි කරලා Logo එක පල්ලෙහාට ගත්තා */
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: center; /* Logo එක හරියටම මැදට ගන්න */
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo එක ලොකු කරලා පල්ලෙහාට ගැනීම */
.logo {
    font-size: 32px; /* Logo එක ලොකු කළා */
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 10px; /* Logo එක තව පොඩ්ඩක් පල්ලෙහාට තල්ලු කළා */
}

.logo span {
    color: #f1c40f; /* Tours කියන කොටස කහ පාට */
}

/* Book Now බට්න් එක පොඩි කරලා අයිනට ගැනීම */
.contact-nav {
    position: absolute;
    right: 0; /* අයිනටම යනවා */
    background-color: #f1c40f;
    color: #000;
    padding: 8px 18px; /* බට්න් එකේ සයිස් එක පොඩි කළා */
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px; /* බට්න් එකේ අකුරු පොඩි කළා */
    font-weight: 700;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.contact-nav:hover {
    background-color: #fff;
    transform: scale(1.05);
}

/* Phone එකෙන් බලද්දී පිළිවෙළට පේන්න */
@media (max-width: 768px) {
    nav {
        padding: 25px 5%;
    }
    .logo {
        font-size: 22px;
    }
    .contact-nav {
        padding: 6px 12px;
        font-size: 10px;
    }
}/* Nav Bar එකේ උස වැඩි කරන්න */
nav {
    padding: 60px 5%; /* උඩට සහ යටට දෙන ඉඩ (Padding) වැඩි කළාම Logo එක පල්ලෙහාට එනවා */
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}
/* --- Global Fixes --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

/* --- Navigation --- */
nav {
    background: #000;
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.logo span { color: #f1c40f; }

.contact-nav {
    background: #f1c40f;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* Nav bar එකට යට නොවෙන්න දුන්න ඉඩ */
}

.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* වීඩියෝ එක ඩාර්ක් කළා අකුරු පේන්න */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 20px;
}

.hero-content h1 span { color: #f1c40f; }

.btn-primary {
    display: inline-block;
    background: #f1c40f;
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 30px;
}/* --- මූලික සැකසුම් --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
}

/* --- Navigation --- */
nav {
    background: #000;
    width: 100%;
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* ලෝගෝ එක වමට, බට්න් එක දකුණට */
    align-items: center;
}

.logo {
    font-size: 32px; /* ලෝගෝ එකේ ප්‍රමාණය */
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.logo span {
    color: #f1c40f; /* TOURS කහ පාටින් */
}

.contact-nav {
    background: #f1c40f;
    color: #000;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* වීඩියෝ එක ඩාර්ක් කරලා අකුරු පේන්න ගත්තා */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.badge {
    color: #f1c40f;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: clamp(40px, 8vw, 70px); /* Screen එකේ හැටියට අකුරු ලොකු කුඩා වෙනවා */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #f1c40f;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: #f1c40f;
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-5px);
}

/* --- TripAdvisor Rating Style --- */
.trust-content {
    margin-top: 50px;
}

.trust-content p {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.btn-rating-white {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 50px;
}

.stars {
    color: #f1c40f;
    margin-left: 5px;
}

/* --- Mobile වලට --- */
@media (max-width: 768px) {
    .logo { font-size: 24px; }
    .contact-nav { font-size: 11px; padding: 8px 15px; }
}
/* --- Global Fixes --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000;
    overflow-x: hidden;
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

.logo span { color: #f1c40f; }

.contact-nav {
    background: #f1c40f;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

/* --- Hero Section (වීඩියෝ එක තියෙන තැන) --- */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* මේකෙන් තමයි සේරම මැදට ගන්නේ */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-content h1 span { color: #f1c40f; }

/* --- Section Titles (Explore With Us එකට) --- */
.section-title {
    width: 100%;
    text-align: center; /* අකුරු මැදට ගන්න */
    color: #f1c40f;
    font-size: 40px;
    font-weight: 900;
    padding: 60px 0 30px 0;
    text-transform: uppercase;
    background: #000;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background: #f1c40f;
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
}
/* ෆෝන් එකෙන් බලද්දී විතරක් වෙනස් වෙන හැටි */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column; /* ලෝගෝ එකයි බට්න් එකයි උඩ යට එන්න ගන්නවා */
        gap: 15px; /* දෙක අතර ඉඩ */
        padding: 10px 0;
    }

    .logo {
        font-size: 26px; /* ෆෝන් එකට ගැලපෙන්න ලෝගෝ එකේ සයිස් එක */
        text-align: center;
    }

    .contact-nav {
        position: static; /* අයිනේ තිබුණ බට්න් එක නිදහස් කරනවා */
        transform: none;
        width: fit-content; /* බට්න් එක මැදට ගන්න උදව් වෙනවා */
        font-size: 12px;
        padding: 8px 20px;
    }
    /* ෆෝන් එකට විතරක් අදාළ පෙනුම තවත් ලස්සන කරමු */
@media (max-width: 768px) {
    nav {
        padding: 20px 0; /* Nav bar එකේ උස */
    }

    .nav-container {
        flex-direction: column; /* එක යට එක එන්න */
        gap: 12px;
    }

    .logo {
        font-size: 28px;
        letter-spacing: 1px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* ලෝගෝ එකට පොඩි Shadow එකක් */
    }

    .contact-nav {
        position: static;
        transform: none;
        
        /* බට්න් එකේ ලස්සන වැඩි කරන කොටස */
        background: linear-gradient(45deg, #f1c40f, #f39c12); /* කහ පාට Gradient එකක් */
        color: #000;
        padding: 10px 30px; /* බට්න් එක පොඩ්ඩක් දිග කළා */
        font-size: 13px;
        font-weight: 800;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4); /* බට්න් එක යටින් ලස්සන කහ පාට Glow එකක් */
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* බට්න් එක එබුවම වෙන වෙනස */
    .contact-nav:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(241, 196, 15, 0.3);
    }
}@media (max-width: 768px) {
    /* කළු පාට Box එකේ මහත (Padding) අඩු කළා */
    nav {
        padding: 10px 0; 
        background: rgba(0, 0, 0, 0.95); /* පොඩ්ඩක් විනිවිද පෙනෙන්න දුන්නා වීඩියෝ එක යන්තම් පේන්න */
    }

    .nav-container {
        flex-direction: column;
        gap: 5px; /* ලෝගෝ එකයි බට්න් එකයි අතර පරතරය අඩු කළා */
    }

    /* ලෝගෝ එකේ අකුරු පොඩි කළා */
    .logo {
        font-size: 20px; 
        letter-spacing: 1px;
        margin-top: 0;
    }

    /* බට්න් එක තවත් පොඩි කරලා පෙනුම හැදුවා */
    .contact-nav {
        position: static;
        transform: none;
        background: linear-gradient(45deg, #f1c40f, #f39c12);
        color: #000;
        padding: 6px 15px; /* බට්න් එකේ මහත අඩු කළා */
        font-size: 11px; /* අකුරු පොඩි කළා */
        font-weight: 800;
        border-radius: 30px;
        box-shadow: 0 2px 8px rgba(241, 196, 15, 0.3);
    }@media (max-width: 768px) {
    /* කළු පාට Box එකේ මහත (Padding) අඩු කළා */
    nav {
        padding: 10px 0; 
        background: rgba(0, 0, 0, 0.95); /* පොඩ්ඩක් විනිවිද පෙනෙන්න දුන්නා වීඩියෝ එක යන්තම් පේන්න */
    }

    .nav-container {
        flex-direction: column;
        gap: 5px; /* ලෝගෝ එකයි බට්න් එකයි අතර පරතරය අඩු කළා */
    }

    /* ලෝගෝ එකේ අකුරු පොඩි කළා */
    .logo {
        font-size: 20px; 
        letter-spacing: 1px;
        margin-top: 0;
    }

    /* බට්න් එක තවත් පොඩි කරලා පෙනුම හැදුවා */
    .contact-nav {
        position: static;
        transform: none;
        background: linear-gradient(45deg, #f1c40f, #f39c12);
        color: #000;
        padding: 6px 15px; /* බට්න් එකේ මහත අඩු කළා */
        font-size: 11px; /* අකුරු පොඩි කළා */
        font-weight: 800;
        border-radius: 30px;
        box-shadow: 0 2px 8px rgba(241, 196, 15, 0.3);
    }

    /* වීඩියෝ එක උඩින් තියෙන ඉඩ (Padding) අඩු කරන්න Hero එකට */
    .hero {
        padding-top: 60px; /* Nav එක පොඩි කරපු නිසා මේකත් අඩු කළා */
    }
}/* Gallery Grid එකේ ඉඩ වැඩි කිරීම */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* එක පේළියට එන ගාණ */
    gap: 40px; /* වාහන අතර පරතරය වැඩි කළා */
    padding: 20px 10%; /* දෙපැත්තෙන් ඉඩ තැබුවා */
    justify-items: center;
}

/* එක වාහනයක කාඩ් එක */
.gallery-card {
    width: 100%;
    max-width: 320px; /* වාහනය පේන උපරිම සයිස් එක සීමා කළා */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item {
    width: 100%;
    height: 200px; /* උස පාලනය කළා */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* පින්තූරය ඇද නොවී පේන්න */
    transition: 0.3s;
}

/* වාහන යටින් එන නම */
.vehicle-name {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #f1c40f; /* කහ පාට */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Effect - මවුස් එක ගෙනිච්චම පින්තූරය ලොකු වෙන්න */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Phone එකෙන් බලද්දී */
@media (max-width: 768px) {
    .gallery-grid {
        gap: 25px;
        padding: 10px 5%;
    }
    .gallery-item {
        height: 180px;
    }
    .vehicle-name {
        font-size: 15px;
    }
@media (max-width: 768px) {
    /* Grid එක හරියට හදමු */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* ෆෝන් එකේදී පේළියට වාහන 2ක් එන්න පුළුවන් */
        gap: 15px; /* වාහන අතර පරතරය */
        padding: 10px 15px;
    }

    /* වාහන කාඩ් එකේ සැකැස්ම */
    .gallery-card {
        max-width: 100%; /* කාඩ් එක හිර වෙන්න දෙන්නේ නැහැ */
    }

    .gallery-item {
        width: 100%;
        height: 140px; /* උස ප්‍රමාණය අඩු කළා ඇද නොවී පේන්න */
        border-radius: 12px;
        background: #111;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* මේක අනිවාර්යයි! පින්තූරය Box එකට හරියටම Fit වෙනවා */
        object-position: center;
    }

    /* වාහන නම පොඩි කරමු */
    .vehicle-name {
        margin-top: 8px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }
}.contact-nav {
    display: inline-flex; /* Icon එකයි අකුරුයි එක පේළියට තියාගන්න */
    align-items: center;
    gap: 8px; /* Icon එකයි BOOK NOW අකුරු අතර පරතරය */
    text-transform: uppercase; /* අකුරු කැපිටල් වෙන්න */
}

.contact-nav i {
    font-size: 18px; /* WhatsApp Icon එකේ සයිස් එක */
}

/* Phone එකේදී */
@media (max-width: 768px) {
    .contact-nav {
        gap: 5px;
        font-size: 11px; /* බට්න් එකේ අකුරු පොඩි කළා */
    }
}.contact-nav {
    display: inline-flex; /* Icon එකයි අකුරුයි ලස්සනට පේළියට තියන්න */
    align-items: center;
    justify-content: center;
    gap: 10px; /* Icon එකයි අකුරුයි අතර පරතරය */
    background: #f1c40f;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    min-width: fit-content; /* අකුරු හිර වෙන්න දෙන්නේ නැහැ */
}

.contact-nav i {
    font-size: 20px; /* WhatsApp Icon එකේ size එක */
    color: #25d366; /* WhatsApp කොළ පාට (ඕන නම් විතරක් දාන්න) */
}

/* Phone එකේදී */
@media (max-width: 768px) {
    .contact-nav {
        padding: 8px 15px;
        font-size: 12px;
        gap: 6px;
    }
    
    .contact-nav i {
        font-size: 16px;
    }
}/* WhatsApp Floating Button Style */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px; /* යට ඉඳන් තියෙන පරතරය */
    right: 30px;  /* දකුණු පැත්තේ ඉඳන් තියෙන පරතරය */
    background-color: #25d366; /* WhatsApp කොළ පාට */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px; /* Icon එකේ සයිස් එක */
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999; /* හැමදේටම උඩින් පේන්න */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

/* Mouse එක උඩට ගියාම පොඩ්ඩක් ලොකු වෙන්න */
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Phone එකේදී පොඩ්ඩක් සයිස් එක වෙනස් කරන්න ඕන නම් */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}.whatsapp-float {
    position: fixed !important;
    width: 60px !important;
    height: 60px !important;
    bottom: 20px !important; /* Screen එකේ යට ඉඳන් පරතරය */
    right: 20px !important;  /* දකුණු පැත්තේ ඉඳන් පරතරය */
    background-color: #25d366 !important;
    color: #FFF !important;
    border-radius: 50px !important;
    text-align: center !important;
    font-size: 30px !important;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5) !important;
    z-index: 99999 !important; /* හැමදේටම උඩින් පේන්න */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    background-color: #128c7e !important;
}.gallery-item img {
    transition: transform 0.5s ease; /* Zoom වෙන්න යන වෙලාව */
}

.gallery-item:hover img {
    transform: scale(1.1); /* 10% ක් Zoom වෙනවා */
}/* Cards මතුවෙන්න ඕන විදිහ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* මේ Class එක දාන හැමදේම ලස්සනට මතුවෙයි */
.reveal {
    animation: fadeInUp 0.8s ease-out forwards;
}.btn-primary {
    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.6); /* රන්වන් පාටින් දිලිසෙනවා */
    transform: translateY(-3px); /* පොඩ්ඩක් උඩට ඉස්සෙනවා */
}.service-card {
    background: rgba(255, 255, 255, 0.05) !important; /* පොඩ්ඩක් විනිවිද පේනවා */
    backdrop-filter: blur(10px); /* පිටුපස තියෙන ඒවා blur වෙනවා */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid #f1c40f !important; /* මූසිකය උඩට ගියාම රන්වන් පාට Border එකක් එනවා */
    transform: translateY(-10px); /* පොඩ්ඩක් උඩට ඉස්සෙනවා */
}
.hero-content h1 {
    background: linear-gradient(to right, #fff, #f1c40f, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite; /* අකුරු දිලිසෙන Animation එක */
}

@keyframes shine {
    to { background-position: 200% center; }
}.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.vehicle-name {
    position: absolute;
    bottom: -50px; /* මුලින් හංගලා තියෙන්නේ */
    left: 0;
    width: 100%;
    background: rgba(241, 196, 15, 0.9);
    color: #000 !important;
    padding: 10px 0;
    transition: 0.4s;
    font-weight: 900;
}

.gallery-card:hover .vehicle-name {
    bottom: 0; /* මූසිකය උඩට ගියාම උඩට එනවා */
}<div class="cursor"></div>

<script>
    const cursor = document.querySelector('.cursor');
    document.addEventListener('mousemove', e => {
        cursor.setAttribute("style", "top: "+(e.pageY - 10)+"px; left: "+(e.pageX - 10)+"px;")
    })
</script>
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #f1c40f;
    border-radius: 50%;
    position: absolute;
    pointer-events: none; /* මේක අනිවාර්යයි */
    z-index: 10000;
    transition: transform 0.1s ease;
}
.service-selection { padding: 80px 10%; background: #000; text-align: center; }

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 40px 30px;
    width: 320px;
    transition: 0.3s;
    position: relative;
}

/* මැද කාඩ් එක (Popular) කැපී පේන්න */
.price-card.popular {
    border-color: #f1c40f;
    transform: scale(1.05);
    background: #151515;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f1c40f;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.card-header i { font-size: 40px; color: #f1c40f; margin-bottom: 20px; }
.card-header h3 { font-size: 24px; margin-bottom: 5px; }
.card-header p { color: #888; font-size: 14px; margin-bottom: 20px; }

.price { font-size: 18px; margin-bottom: 30px; }
.price span { font-size: 26px; font-weight: 900; color: #f1c40f; }

.features { list-style: none; margin-bottom: 30px; text-align: left; }
.features li { margin-bottom: 12px; font-size: 15px; color: #ccc; }
.features li i { color: #f1c40f; margin-right: 10px; }

.btn-select {
    display: block;
    padding: 12px;
    background: transparent;
    border: 2px solid #f1c40f;
    color: #f1c40f;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-select:hover {
    background: #f1c40f;
    color: #000;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .price-card.popular { transform: scale(1); }
    .pricing-container { gap: 40px; }
}/* --- Service Selection New Section --- */
.service-selection-section {
    padding: 80px 5%;
    background-color: #000;
    text-align: center;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.price-box {
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 40px 20px;
    width: 300px;
    position: relative;
    transition: 0.3s ease;
}

.price-box:hover {
    border-color: #f1c40f;
    transform: translateY(-10px);
}

.price-box i {
    font-size: 45px;
    color: #f1c40f;
    margin-bottom: 20px;
}

.price-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.price-val {
    font-size: 28px;
    font-weight: 900;
    color: #f1c40f;
    margin: 20px 0;
}

.price-val span {
    font-size: 14px;
    color: #888;
}

.book-btn {
    display: block;
    text-decoration: none;
    background: transparent;
    border: 2px solid #f1c40f;
    color: #f1c40f;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.book-btn:hover {
    background: #f1c40f;
    color: #000;
}

/* මැද කාඩ් එකේ පෙනුම */
.best-value {
    border: 2px solid #f1c40f;
    background: #151515;
}

.top-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f1c40f;
    color: #000;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 900;
    border-radius: 20px;
}

.book-btn.highlight {
    background: #f1c40f;
    color: #000;
}

/* Mobile එකට */
@media (max-width: 768px) {
    .price-box {
        width: 100%;
        max-width: 350px;
    }
/* --- වාහන තෝරන කොටස (Service Selection) --- */
.service-selection-section {
    padding: 80px 5%;
    background-color: #000;
    text-align: center;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.price-box {
    width: 300px;
    height: 450px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid #222;
    transition: 0.4s;
}

/* --- මෙන්න මෙතන තමයි පින්තූර ලින්ක් තියෙන්නේ --- */
.budget-car-bg { 
    background-image: url('https://images.unsplash.com/photo-1550355291-bbee04a92027?q=80&w=600&auto=format&fit=crop'); 
}
.luxury-van-bg { 
    background-image: url('https://images.unsplash.com/photo-1532939163844-547f958e91b4?q=80&w=600&auto=format&fit=crop'); 
}
.tuk-tuk-bg { 
    background-image: url('https://images.unsplash.com/photo-1590490360182-c33d57733427?q=80&w=600&auto=format&fit=crop'); 
}

/* අකුරු පේන්න කළු පාටට වැටෙන Overlay එක */
.card-overlay {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.9));
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}

.card-icon { font-size: 45px; color: #f1c40f; margin-bottom: 15px; }
.price-box h3 { color: #fff; font-size: 24px; margin-bottom: 5px; }
.price-box p { color: #ccc; font-size: 14px; }
.price-val { font-size: 28px; font-weight: 900; color: #f1c40f; margin: 20px 0; }
.price-val span { font-size: 14px; color: #ddd; }

.book-btn {
    text-decoration: none;
    background: transparent;
    border: 2px solid #f1c40f;
    color: #f1c40f;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.book-btn:hover { background: #f1c40f; color: #000; }
.popular-box { border: 2px solid #f1c40f; }

/* Phone එකේදී */
@media (max-width: 768px) {
    .price-box { width: 100%; height: 350px; }
}.service-section {
    padding: 80px 5%;
    background: #000;
    text-align: center;
}

.section-title {
    font-size: 35px;
    font-weight: 900;
    color: #f1c40f;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.price-card {
    background-size: cover;
    background-position: center;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 40px 25px;
    width: 320px;
    transition: 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: #f1c40f;
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.2);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f1c40f;
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
}

/* --- අලුත්ම Service Section එක (Cards 3 පැත්තට ගන්න) --- */
.service-section {
    padding: 80px 5%;
    background: #000;
    text-align: center;
}

.pricing-container {
    display: flex !important; /* මේකෙන් තමයි කාඩ් පැත්තට එන්නේ */
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: #111 !important;
    border: 1px solid #f1c40f !important;
    border-radius: 20px;
    padding: 30px;
    width: 300px; /* කාඩ් එකේ පළල */
    transition: 0.4s;
    text-align: center;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.5);
}

/* තිත් අයින් කරන්න */
.card-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
}

.card-features li {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
}

.price-val {
    font-size: 28px;
    font-weight: 900;
    color: #f1c40f;
    margin-bottom: 20px;
}

.book-btn {
    display: block;
    background: #f1c40f;
    color: #000;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}
/* Reviews Section */
.reviews-section {
    padding: 80px 5%;
    background: #000;
    text-align: center;
}

.reviews-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background: #0a0a0a;
    padding: 30px;
    width: 300px;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.4); /* අර Gold Outline එක */
    transition: 0.4s;
}

.review-card:hover {
    border-color: #f1c40f;
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.3);
    transform: translateY(-5px);
}

.stars { color: #f1c40f; margin-bottom: 10px; }
.review-card p { color: #ccc; font-style: italic; font-size: 14px; margin-bottom: 15px; }
.review-card h4 { color: #f1c40f; margin: 0; }
.review-card span { color: #666; font-size: 12px; }

/* Footer */
.main-footer {
    background: #080808;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-content h3 span { color: #f1c40f; }
.social-links { margin: 15px 0; }
.social-links a { color: #fff; font-size: 20px; margin: 0 10px; }

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 1000;
}
/* Reviews Section Styling */
.reviews-section {
    padding: 80px 5% !important;
    background: #000 !important;
    text-align: center !important;
    display: block !important; /* මේක අනිවාර්යයි පේන්න නම් */
}

.reviews-container {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 25px !important;
    margin-top: 40px !important;
}

.review-card {
    background: #0a0a0a !important;
    padding: 30px !important;
    width: 300px !important;
    border-radius: 15px !important;
    /* මෙන්න ඔයා ඉල්ලපු Gold Outline එක */
    border: 1px solid rgba(241, 196, 15, 0.4) !important;
    transition: 0.4s ease !important;
}

.review-card:hover {
    border-color: #f1c40f !important;
    box-shadow: 0 0 25px rgba(241, 196, 15, 0.4) !important;
    transform: translateY(-10px) !important;
}

.stars { color: #f1c40f !important; font-size: 20px; margin-bottom: 10px; }
.review-card p { color: #ccc !important; font-style: italic; font-size: 14px; line-height: 1.6; }
.review-card h4 { color: #f1c40f !important; margin-top: 15px; margin-bottom: 5px; }
.review-card span { color: #777 !important; font-size: 12px; text-transform: uppercase; }

/* මුළු සයිට් එකේම පල්ලෙහාට Scroll කරන එක හදන්න */
body, html {
    overflow-x: hidden !important;
    overflow-y: auto !important; /* මේකෙන් තමයි පල්ලෙහාට යන්න දෙන්නේ */
    height: auto !important;
}
/* Review Grid එක පේළියට 3ක් සහ පල්ලෙහාට 2ක් එන්න */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.review-item {
    background: #0a0a0a;
    border: 1px solid rgba(241, 196, 15, 0.3); /* Gold Outline */
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.review-item:hover {
    border-color: #f1c40f;
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.2);
}

/* Modal Style (Popup එක) */
.modal {
    display: none; /* මුලින් පේන්නේ නැහැ */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #111;
    border: 2px solid #f1c40f;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: #fff;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
html {
    scroll-behavior: smooth;
}
#backToTop {
    display: none; /* මුලින් පේන්නේ නෑ */
    position: fixed;
    bottom: 90px; /* WhatsApp බට්න් එකට උඩින් */
    right: 30px;
    z-index: 99;
    border: 2px solid #f1c40f;
    background-color: transparent;
    color: #f1c40f;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

#backToTop:hover {
    background-color: #f1c40f;
    color: #000;
}
.gallery-card {
    text-align: center;
    padding-bottom: 20px;
}

.book-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: #f1c40f; /* අපේ Gold පාට */
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 14px;
}

.book-btn:hover {
    background-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4);
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.3); /* Gold Outline */
    transition: 0.4s;
}

/* පින්තූරේ උඩ කළු පාට Overlay එක */
.vehicle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* පින්තූරේ පොඩ්ඩක් කළු වෙනවා නම පේන්න */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.vehicle-overlay span {
    color: #f1c40f; /* නම Gold පාටින් */
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #f1c40f;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
}

/* Mouse එක ගෙනිච්චම හෝ Touch කරාම වෙන වෙනස */
.gallery-card:hover .gallery-item {
    border-color: #f1c40f;
    transform: scale(1.02);
}

.gallery-card:hover .vehicle-overlay {
    background: rgba(0, 0, 0, 0.2); /* Hover කරද්දී පින්තූරේ පැහැදිලි වෙනවා */
}
.gallery-card {
    background: #0a0a0a;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid rgba(241, 196, 15, 0.2); /* හීනි රත්තරන් පාට බෝඩර් එකක් */
    text-align: center;
    transition: 0.3s;
}

.gallery-item img {
    width: 100%;
    border-radius: 12px; /* පින්තූරේ කොන් නමන්න */
    display: block;
}

/* අලුත් බටන් ස්ටයිල් එක */
.vehicle-btn {
    display: block;
    margin-top: 15px;
    padding: 12px 10px;
    background-color: transparent;
    color: #f1c40f; /* Gold අකුරු */
    border: 2px solid #f1c40f; /* Gold බෝඩර් එක */
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

/* Mouse එක ගෙනිච්චම හෝ Touch කරාම */
.vehicle-btn:hover {
    background-color: #f1c40f;
    color: #000;
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.4);
}

.gallery-card:hover {
    border-color: #f1c40f;
    transform: translateY(-5px);
}
.gold-unique-btn {
    background: transparent;
    color: #f1c40f;
    border: 2px solid #f1c40f;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px; /* රවුම් කොන් */
    cursor: pointer;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 0 10px rgba(241, 196, 15, 0.2);
}

/* බට්න් එක උඩින් යන Gold සෙවනැල්ල (Animation) */
.gold-unique-btn:hover {
    color: #000;
    background: #f1c40f;
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.6);
    transform: translateY(-5px);
}

.gold-unique-btn i {
    margin-left: 10px;
    transition: 0.3s;
}
.show-more-container {
    text-align: center;
    margin: 50px 0;
}

.show-more-gold {
    display: inline-block;
    padding: 15px 45px;
    background-color: transparent;
    color: #f1c40f; /* Gold අකුරු */
    border: 2px solid #f1c40f; /* Gold බෝඩර් එක */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s all ease;
    box-shadow: 0 0 10px rgba(241, 196, 15, 0.1);
}

/* Mouse එක ගෙනිච්චම හෝ Touch කරාම වෙනස */
.show-more-gold:hover {
    background-color: #f1c40f;
    color: #000;
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.5); /* ලස්සනට දිලිසෙනවා */
    transform: translateY(-5px); /* පොඩ්ඩක් උඩට යනවා */
}

.show-more-gold i {
    margin-left: 10px;
}
.dest-card:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
    cursor: pointer;
}

.dest-card a {
    display: block; /* මුළු කාඩ් එකම ලින්ක් එකක් වෙන්න */
}.dest-card:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
    cursor: pointer;
}

.dest-card a {
    display: block; /* මුළු කාඩ් එකම ලින්ක් එකක් වෙන්න */
}