:root {
    --primary: #1a1c1a;
    --cream-bg: #fcfbf4;
    --green: #00a859;
    --gold: #d4af37;
    --text-dark: #333;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }
body { background-color: var(--cream-bg); color: var(--text-dark); overflow-x: hidden; }

/* ================= 1. GLASS MENU BAR ================= */
.glass-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    z-index: 1000;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo span { font-size: 24px; font-weight: 800; color: #1a1c1a;}
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: #1a1c1a; text-decoration: none; font-size: 14px; font-weight: 700; text-transform: uppercase; transition: var(--transition); }
.nav-links a:hover { color: #d4af37; }
.btn-contact-nav { background: #1a1c1a; color: white !important; padding: 10px 25px; border-radius: 50px; }
.btn-contact-nav:hover { background: var(--gold); }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; color: #1a1c1a; }
#google_translate_element select { padding: 5px; border-radius: 5px; border: 1px solid #ccc; outline: none; }

/* ================= HERO SECTION (FIXED TEXT & SLIDER) ================= */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }

/* 1. Background Slider & Overlay Layering */
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; z-index: 0; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1; }

/* 2. Text Colors & Position (பளிச்சென்று தெரிய) */
.hero-content { position: relative; z-index: 2; margin-bottom: 180px; }
.hero-content h1 { font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: #ffffff !important; }
.gradient-text-light { background: linear-gradient(90deg, #f3e5ab, #d4af37); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; color: #ffffff !important; text-shadow: 1px 1px 5px rgba(0,0,0,0.5); }

/* 3. Buttons */
.hero-btns { display: flex; gap: 20px; justify-content: center; position: relative; z-index: 2; }
.hero-btn { background: var(--primary-color); color: #ffffff !important; padding: 14px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.hero-btn:hover { background: #008a48; }
.hero-btn-outline { background: transparent; border: 2px solid #ffffff; color: #ffffff !important; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; display: flex; align-items: center; gap: 10px; }
.hero-btn-outline:hover { background: #ffffff; color: #1a1c1a !important; }

/* 4. Bottom Stats (50+, 200+) */
.hero-stats { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 20px; width: max-content; z-index: 2; }
.stat-box { background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); padding: 20px 40px; border-radius: 15px; text-align: center; min-width: 200px; }
.stat-box i { color: #d4af37; font-size: 24px; margin-bottom: 10px; }
.stat-box h3 { font-size: 2rem; font-weight: 800; margin-bottom: 5px; color: #ffffff !important; }
.stat-box p { color: #dddddd !important; font-size: 1rem; }

/* ================= GENERAL HEADERS ================= */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; font-weight: 800; color: #1a1c1a; margin-bottom: 15px; }
.gradient-text { background: linear-gradient(90deg, #1c3d5a, #439093, #e67e22, #d4af37); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-header p { color: #666; font-size: 1.1rem; line-height: 1.6; max-width: 800px; margin: 0 auto; }

/* ================= TOURS SECTION ================= */
.popular-tours-sec { padding: 100px 8% 80px; background-color: var(--cream-bg); }
.tours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.tour-card { background: #ffffff; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.06); overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; }
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.tour-img { height: 240px; background-size: cover; background-position: center; position: relative; }
.badge { position: absolute; top: 15px; left: 15px; background: #ffffff; padding: 6px 14px; border-radius: 6px; font-size: 0.85rem; font-weight: 700; color: #333; display: flex; align-items: center; gap: 6px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.badge i { color: #f1c40f; }
.heart-btn { position: absolute; top: 15px; right: 15px; background: #ffffff; width: 36px; height: 36px; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #666; font-size: 1.1rem; cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: 0.3s; }
.heart-btn:hover, .heart-btn.liked { color: #ff4757; }
.tour-info { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.tour-info h3 { font-size: 1.35rem; font-weight: 800; color: #1a1c1a; margin-bottom: 15px; }
.tour-meta { margin-bottom: 25px; }
.tour-meta div { display: flex; align-items: center; gap: 10px; color: #555; font-size: 0.95rem; margin-bottom: 8px; }
.tour-meta i { color: var(--green); font-size: 1.1rem; width: 15px; }
.btn-view { width: 100%; background-color: var(--green); color: #ffffff; border: none; padding: 14px; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: 0.3s; margin-top: auto; }
.btn-view:hover { background-color: #008a48; }

/* Custom Banner */
.customizable-banner { background: #eafaf1; border: 1px solid #cceadd; padding: 40px; border-radius: 15px; text-align: center; margin-top: 60px; }
.customizable-banner h3 { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.customizable-banner p { color: #555; font-size: 1.1rem; line-height: 1.6; max-width: 800px; margin: 0 auto 25px; }
.btn-custom { display: inline-block; background: var(--green); color: white; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: var(--transition); }
.btn-custom:hover { background: #008a48; }

/* ================= MODAL ================= */
.tour-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); }
.tour-modal-content { background-color: #ffffff; margin: 6% auto; padding: 40px; border-radius: 12px; width: 90%; max-width: 550px; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
.close-tour { position: absolute; top: 20px; right: 25px; color: #999; font-size: 24px; cursor: pointer; transition: 0.2s; }
.close-tour:hover { color: #333; }
.tour-modal-content h3 { font-size: 1.5rem; font-weight: 800; color: #1a1c1a; margin-bottom: 15px; }
.tour-modal-content p { font-size: 0.95rem; color: #555; line-height: 1.6; margin-bottom: 25px; }
.modal-highlights h4 { font-size: 1.05rem; font-weight: 700; color: #111; margin-bottom: 15px; }
.modal-highlights ul { list-style: none; }
.modal-highlights li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: #333; margin-bottom: 12px; line-height: 1.5; }
.modal-highlights li i { color: var(--green); margin-top: 3px; font-size: 0.9rem; }
.btn-modal-contact { background-color: var(--green); color: white; border: none; padding: 12px 30px; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-modal-contact:hover { background-color: #008a48; }

/* ================= ABOUT SECTION ================= */
.about-section { padding: 100px 8%; background: var(--cream-bg); }
.about-flex { display: flex; gap: 50px; align-items: center; }
.about-text { flex: 1; }
.about-text h2 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }
.about-text p { color: #555; font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; }
.about-images { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.img-large { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; grid-row: span 2; }
.img-stack { display: flex; flex-direction: column; gap: 15px; }
.img-stack img { width: 100%; height: 200px; object-fit: cover; border-radius: 15px; }

/* ================= GALLERY SECTION ================= */
.gallery-section { padding: 100px 8%; background: #ffffff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { height: 280px; border-radius: 15px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.gallery-tag { position: absolute; bottom: 20px; left: 20px; background: #e67e22; color: white; padding: 5px 15px; border-radius: 5px; font-weight: 700; transform: rotate(-3deg); }

/* ================= ADVENTURE SECTION ================= */
.adventure-section { padding: 120px 8%; text-align: center; background: url('https://images.unsplash.com/photo-1546708973-8a82d02c114f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover fixed; position: relative; color: white; }
.adv-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1; }
.adv-content { position: relative; z-index: 2; }
.adv-content h2 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.adv-content p { font-size: 1.1rem; max-width: 700px; margin: 0 auto 40px; color: #ddd; }
.btn-adv-contact { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 1px solid white; padding: 15px 40px; border-radius: 50px; color: white; text-decoration: none; font-size: 1.1rem; font-weight: 600; transition: var(--transition); }
.btn-adv-contact:hover { background: white; color: var(--primary); }

/* ================= REVIEWS SECTION ================= */
.reviews-section { padding: 100px 8%; background: var(--cream-bg); }
.review-stats-grid { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 50px; flex-wrap: wrap; }
.r-stat { background: white; padding: 30px; border-radius: 20px; text-align: center; flex: 1; min-width: 200px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.r-icon { width: 60px; height: 60px; background: #eafaf1; color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 15px; }
.r-stat h3 { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.r-stat span { font-size: 1.2rem; color: #777; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.review-card { background: white; padding: 30px; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.rc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
.rc-user { display: flex; gap: 15px; align-items: center; }
.rc-user img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.rc-user h4 { font-size: 1.1rem; color: var(--primary); }
.rc-user p { font-size: 0.8rem; color: #777; }
.verified-badge { background: var(--green); color: white; padding: 3px 10px; border-radius: 5px; font-size: 0.75rem; font-weight: 600; }
.stars { color: var(--gold); margin-bottom: 15px; font-size: 0.9rem; }
.review-card p { color: #555; font-size: 0.95rem; line-height: 1.6; font-style: italic; }

/* ================= FOOTER & CONTACT ================= */
footer { background: var(--primary); color: white; padding: 80px 8% 20px; }
.footer-top { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.f-info-box { display: flex; gap: 15px; align-items: center; }
.f-info-box i { font-size: 24px; color: #999; }
.f-info-box h4 { font-size: 1.1rem; margin-bottom: 5px; }
.f-info-box p { color: #ccc; }
.f-social { display: flex; gap: 10px; align-items: center; }
.f-social a { width: 45px; height: 45px; border: 1px solid rgba(255,255,255,0.2); border-radius: 5px; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: var(--transition); }
.f-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-links-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.f-col h3 { font-size: 1.2rem; margin-bottom: 20px; color: white; }
.f-col p { color: #999; line-height: 1.6; font-size: 0.95rem; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 12px; }
.f-col ul a { color: #999; text-decoration: none; transition: var(--transition); }
.f-col ul a:hover { color: var(--gold); }
.footer-bottom { text-align: center; color: #666; font-size: 0.9rem; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.float-whatsapp { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 30px; box-shadow: 0 5px 15px rgba(37,211,102,0.4); z-index: 100; text-decoration: none; transition: var(--transition); }
.float-whatsapp:hover { transform: scale(1.1); }

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 991px) {
    .nav-links { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: rgba(255,255,255,0.95); flex-direction: column; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .hero { height: auto; min-height: 100vh; padding-top: 120px; padding-bottom: 50px; justify-content: flex-start; }
    .hero-content h1 { font-size: 3rem; }
    .hero-stats { position: relative; bottom: auto; margin-top: 40px; flex-direction: column; }
    .about-flex { flex-direction: column; }
    .footer-links-grid { grid-template-columns: 1fr; }
}
/* ================= GALLERY IMAGES STYLE & BADGE ================= */

/* 1. Gallery பெட்டிக்கான டிசைன் */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 🖼️ 2. படங்களை ஜூம் ஆகாமல் கச்சிதமாகப் பொருத்தும் கோடு (இதுதான் மிஸ் ஆனது!) 🖼️ */
.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* இதுதான் படத்தை பெட்டிக்குள் அழகாகப் பொருத்தும் */
    object-position: center !important;
    transition: transform 0.4s ease !important;
    display: block !important;
}

/* மவுஸ் வைக்கும் போது மட்டும் லேசாக ஜூம் ஆகும் */
.gallery-item:hover img {
    transform: scale(1.1) !important;
}

/* 💎 3. Perfectly Sized Professional Glass Badge 💎 */
.gallery-item .badge {
    position: absolute !important;
    bottom: 15px !important;
    left: 15px !important;
    top: auto !important;       
    right: auto !important;     
    height: max-content !important;
    max-height: 32px !important; 
    width: max-content !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
    padding: 6px 16px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8) !important;
    z-index: 2 !important;
    line-height: 1 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}
/* ================= TOUR DETAILS MODAL STYLE ================= */
.modal {
    display: none; /* ஆரம்பத்தில் மறைந்திருக்கும் */
    position: fixed;
    z-index: 2000; /* எல்லாவற்றுக்கும் மேலே வர */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fdfbf7;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.4s ease-in-out;
}

@keyframes modalFadeIn {
    from { transform: translateY(-30px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover { color: #e74c3c; }

#modalTitle { color: #1a1c1a; margin-bottom: 10px; font-size: 1.8rem; font-weight: 800; }
#modalDesc { color: #555; margin-bottom: 20px; line-height: 1.6; }

.modal-itinerary h3 { font-size: 1.2rem; margin-bottom: 10px; color: #d4af37; }
#modalList { list-style: none; padding: 0; margin-bottom: 25px; }
#modalList li { margin-bottom: 10px; color: #444; display: flex; gap: 10px; align-items: start; font-weight: 500; }
#modalList li i { color: #008a48; margin-top: 4px; }

/* Book Now Button inside Modal */
.book-now-btn {
    display: block;
    text-align: center;
    background: #1a1c1a;
    color: #ffffff !important;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    border: 2px solid #1a1c1a;
}

.book-now-btn:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #1a1c1a !important;
}
/* ================= REVIEWS SECTION STYLE ================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.reviewer-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #1a1c1a;
    font-weight: 700;
}

.reviewer-info span {
    font-size: 0.9rem;
    color: #777;
}

.reviewer-info span i {
    color: #008a48;
    margin-right: 5px;
}

.verified-badge {
    background: #008a48;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.stars {
    color: #fbbc04; /* Google Star Yellow */
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* 🌟 Google Review Button Style (As per your Image) 🌟 */
.btn-google-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #4285f4; /* Google Blue */
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    border: 2px solid #1a1c1a; /* Black Border */
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.btn-google-review i {
    font-size: 1.2rem;
}

.btn-google-review:hover {
    background-color: #3367d6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
}
/* ================= RESPONSIVE DESIGN (MOBILE VIEW FIX) ================= */

html, body {
    overflow-x: hidden !important;
    width: 100vw !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    /* 1. முழுக் கண்டெய்னரையும் (Main Box) ஒன்றன்கீழ் ஒன்றாக அடுக்குவதற்கான கட்டளை */
    .hero {
        flex-direction: column !important;
        justify-content: center !important;
        height: auto !important;
        min-height: 100vh !important;
        padding-top: 120px !important; /* மேலிருந்து கொஞ்சம் இடைவெளி */
        padding-bottom: 50px !important;
    }

    /* 2. எழுத்துக்கள் இருக்கும் பகுதி */
    .hero-content {
        width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-top: 0 !important;
    }

    /* 3. பெட்டிகளை ஸ்க்ரீனுக்குள் சரியாகக் கொண்டுவருவது */
    .hero-stats {
        flex-direction: column !important;
        width: 100% !important;
        position: relative !important;
        right: auto !important; 
        left: auto !important;
        transform: none !important; /* பழைய பொசிஷனை முழுமையாக அழிப்பது */
        margin: 40px auto 0 auto !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
        gap: 15px !important;
    }

    .stat-box {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }
    
    /* 4. WhatsApp Button */
    .float-whatsapp {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 25px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 999 !important;
    }
}
/* One Day Wonders Section Styles */
.oneday-wonders-section {
    padding: 50px 20px;
    background-color: #f4f8fb; /* லேசான பின்னணி நிறம் */
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    border-left: 5px solid #00d2ff;
    padding-left: 15px;
    color: #222;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.tour-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* Image & Badge */
.tour-img-box {
    position: relative;
    height: 220px;
    background: #e9ecef;
}

.tour-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.duration-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #222;
    color: #00d2ff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Content Area */
.tour-details {
    padding: 25px 20px;
    border-top: 4px solid #00d2ff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.tour-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* List Items (Highlights) */
.tour-highlights {
    list-style: none;
    padding: 15px;
    margin: 0 0 25px 0;
    background: #f8f9fc;
    border-radius: 12px;
    flex-grow: 1;
}

.tour-highlights li {
    font-size: 13px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.tour-highlights li:last-child {
    margin-bottom: 0;
}

.tour-highlights li i {
    color: #a855f7; /* ஊதா நிற செக் மார்க் */
    font-size: 16px;
    margin-top: 2px;
}

/* Gradient Button */
.book-btn {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #a855f7 0%, #06b6d4 100%);
    color: #fff;
    padding: 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.book-btn:hover {
    opacity: 0.85;
    color: #fff;
}
/* ================= REVIEW STATS SECTION (Video Style) ================= */
.review-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 50px auto; /* கீழேயுள்ள Review கார்டுகளுக்கு இடைவெளி */
    padding: 0 20px;
}

.stat-box-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); /* லேசான ஷேடோ */
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f5f5f5;
    transition: transform 0.3s ease;
}

.stat-box-card:hover {
    transform: translateY(-5px);
}

/* வெளிர் பச்சை நிற வட்டம் */
.stat-icon-circle {
    width: 85px;
    height: 85px;
    background-color: #e8f5e9; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* உள்ளே இருக்கும் ஐகான் */
.stat-icon-circle i {
    font-size: 35px;
    color: #4ade80; /* வீடியோவில் உள்ள பிரகாசமான பச்சை */
}

/* எண்கள் டிசைன் */
.stat-box-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1c1a;
    margin: 0 0 5px 0;
}

/* /5, +, % குறியீடுகளின் பச்சை நிறம் */
.stat-box-card h3 span {
    color: #4ade80; 
}

/* கீழுள்ள எழுத்துக்கள் */
.stat-box-card p {
    font-size: 1.05rem;
    color: #555;
    font-weight: 600;
    margin: 0;
}

/* மொபைல் வியூ செட்டிங்ஸ் */
@media (max-width: 768px) {
    .review-stats-container {
        grid-template-columns: 1fr; /* மொபைலில் ஒன்றன்கீழ் ஒன்றாக வரும் */
        max-width: 350px;
    }
}
/* ================= PERFECT MOBILE VIEW SETTINGS ================= */

/* வலது/இடது புறம் வெற்று இடைவெளி (White space) வந்து டிசைன் கலையாமல் தடுக்க */
html, body {
    overflow-x: hidden; 
    max-width: 100vw;
}

@media (max-width: 768px) {
    /* 1. முதல் பகுதி (Hero Section) போனில் முழு திரைக்கு (100vh Full Screen) வர */
    .hero, #home {
        min-height: 100vh !important;
        background-attachment: scroll !important; 
        background-position: center !important;
        background-size: cover !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* 2. Review Stats பெட்டிகள் ஸ்க்ரீனை விட்டு வெளியே போகாமல் நேர்த்தியாக இருக்க */
    .review-stats-container {
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto 40px auto !important;
        grid-template-columns: 1fr !important; /* ஒன்றன் கீழ் ஒன்றாக அழகாக வர */
    }
    
    .stat-box-card {
        width: 100% !important;
        box-sizing: border-box;
        margin-bottom: 5px;
    }

    /* 3. மொபைலில் எழுத்துக்களின் அளவைக் கச்சிதமாக மாற்ற */
    .section-title h2 {
        font-size: 2.2rem !important; /* தலைப்பு போனுக்கு ஏற்றவாறு சிறிதாகும் */
    }
    
    .section-title p {
        font-size: 1rem !important;
    }
}