:root {
    --primary: #ff6b35;
    --secondary: #00305b;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --border: #e2e8f0;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 20px; font-weight: 800; color: var(--secondary); text-decoration: none; }
.logo span { color: var(--primary); }
nav ul { display: flex; list-style: none; }
nav ul li a { text-decoration: none; color: var(--text-main); margin-left: 15px; font-weight: 700; font-size: 13px; }

/* Enquiry Button in Header */
.nav-enq-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 11px;
    margin-left: 15px;
    cursor: pointer;
    transition: background 0.3s;
}
.nav-enq-btn:hover { background: var(--secondary); }

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal.active { display: flex; }
.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}
.modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}
.modal-content h2 { font-size: 22px; color: var(--secondary); margin-bottom: 10px; }
.modal-content p { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }
.modal-content .form-group { margin-bottom: 15px; }
.modal-content .form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--secondary); margin-bottom: 5px; }
.modal-content input, .modal-content textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 6px; font-family: inherit; }
.modal-content .btn-submit { width: 100%; padding: 12px; background: var(--primary); color: #fff; border: none; border-radius: 6px; font-weight: 800; cursor: pointer; }

/* Hero */
.hero { 
    padding: 100px 0; 
    text-align: center; 
    background: linear-gradient(rgba(0,48,91,0.6), rgba(0,48,91,0.6)), url('img/chardham_hero.jpg'); 
    background-size: cover;
    background-position: center;
    color: #fff;
    border-bottom: 2px solid var(--primary); 
}
.hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 10px; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero p { font-size: 16px; color: rgba(255,255,255,0.9); }

/* Home Page Grid */
.section-title { margin: 30px 0 20px; text-align: center; font-size: 20px; font-weight: 800; }
.tab-nav { display: flex; justify-content: center; gap: 8px; margin-bottom: 30px; }
.tab-btn { padding: 8px 16px; border: 1px solid var(--border); background: #fff; font-weight: 700; font-size: 13px; cursor: pointer; border-radius: 4px; color: var(--text-muted); }
.tab-btn.active { background: var(--secondary); color: #fff; border-color: var(--secondary); }

.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

.package-card {
    background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-color: var(--primary); }
.img-box { height: 180px; position: relative; overflow: hidden; }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .img-box img { transform: scale(1.1); }
.content { padding: 15px; flex-grow: 1; }
.content h3 { font-size: 16px; font-weight: 800; color: var(--secondary); margin-bottom: 8px; line-height: 1.3; border-left: 3px solid var(--primary); padding-left: 8px; }
.card-desc { font-size: 13px; color: var(--text-muted); height: 36px; overflow: hidden; margin-bottom: 12px; }
.card-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f1f1f1; padding-top: 10px; margin-top: auto; }
.price { font-size: 16px; font-weight: 800; color: var(--primary); }
.days { font-size: 11px; font-weight: 700; color: #555; background: #eef7ff; padding: 3px 8px; border-radius: 4px; }

/* SEO Content Section */
.seo-content { padding: 60px 0; line-height: 1.8; color: #555; }
.seo-content h2 { color: var(--secondary); font-size: 24px; margin-bottom: 20px; }
.seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }
.seo-grid h3 { color: var(--primary); font-size: 18px; margin-bottom: 10px; }

/* --- DETAIL PAGE --- */
.detail-header { padding: 25px 0; background: #f1f4f8; border-bottom: 1px solid var(--border); }
.detail-header h1 { font-size: 22px; font-weight: 800; color: var(--secondary); margin-bottom: 4px; }
.detail-header .meta { font-size: 12px; font-weight: 700; color: var(--primary); }

.detail-grid { display: grid; grid-template-columns: 1fr 280px; gap: 25px; padding: 30px 0; }
.box { background: #fff; padding: 20px; border: 1px solid var(--border); border-radius: 4px; margin-bottom: 20px; }
.box h2 { font-size: 16px; font-weight: 800; margin-bottom: 12px; color: var(--secondary); border-bottom: 2px solid var(--primary); display: inline-block; }
.overview-text { font-size: 13px; color: #444; line-height: 1.5; }

/* --- ACCORDION ITINERARY --- */
.itinerary-list { margin-top: 10px; }
.day-item { border: 1px solid var(--border); border-radius: 4px; margin-bottom: 8px; overflow: hidden; }
.day-title { 
    padding: 12px 15px; font-weight: 800; font-size: 13.5px; color: var(--secondary); 
    background: #fcfcfc; cursor: pointer; display: flex; justify-content: space-between; align-items: center; 
}
.day-title::after { content: '+'; color: var(--primary); font-size: 18px; }
.day-item.active .day-title::after { content: '−'; }
.day-desc { padding: 15px; font-size: 13px; color: #555; line-height: 1.5; border-top: 1px solid var(--border); display: none; background: #fff; }
.day-item.active .day-desc { display: block; }

/* Highlights, Inclusions/Exclusions */
.icon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 10px; }
.icon-item { font-size: 12px; font-weight: 700; color: var(--secondary); background: #f0f7ff; padding: 8px; border-radius: 4px; }
.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 10px; }
.inc-box { background: #f8fff9; border: 1px solid #dcfce7; padding: 15px; border-radius: 6px; }
.exc-box { background: #fff5f5; border: 1px solid #fee2e2; padding: 15px; border-radius: 6px; }
.inc-box h4, .exc-box h4 { margin-bottom: 10px; font-weight: 800; font-size: 14px; }
.list-text { font-size: 12px; line-height: 1.7; color: #444; }

/* Sidebar */
.sidebar { position: sticky; top: 80px; }
.booking-card { background: #fff; padding: 20px; border: 1px solid var(--border); border-radius: 4px; text-align: center; }
.price-big { font-size: 24px; font-weight: 800; color: var(--primary); display: block; }
.btn-wa { display: block; background: #25d366; color: #fff; text-decoration: none; padding: 10px; border-radius: 4px; font-weight: 800; margin-top: 15px; font-size: 13px; }
.btn-call { display: block; background: var(--secondary); color: #fff; text-decoration: none; padding: 10px; border-radius: 4px; font-weight: 800; margin-top: 8px; font-size: 13px; }

/* FAQ Section Styling */
.faq-section { padding: 40px 0; border-top: 1px solid var(--border); }
.faq-list { margin-top: 15px; }
.faq-item { border-bottom: 1px solid #f1f1f1; }
.faq-item:last-child { border-bottom: none; }
.faq-q { padding: 15px 0; font-weight: 800; font-size: 14px; color: var(--secondary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; color: var(--primary); font-size: 18px; }
.faq-item.active .faq-q::after { content: '−'; }
.faq-a { padding-bottom: 20px; font-size: 14px; color: #555; line-height: 1.6; display: none; }
.faq-item.active .faq-a { display: block; }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.3s;
}
.whatsapp-float img { width: 24px; height: 24px; margin-right: 10px; }
.whatsapp-float:hover { transform: scale(1.05); color: #fff; }

/* Footer Styling */
.main-footer { padding: 50px 0 20px; background: var(--secondary); color: #fff; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-grid h3 { color: var(--primary); margin-bottom: 15px; }
.footer-grid h4 { margin-bottom: 15px; font-size: 16px; color: #fff; }
.footer-grid p { font-size: 13px; opacity: 0.8; line-height: 1.6; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: #fff; text-decoration: none; font-size: 13px; opacity: 0.8; transition: opacity 0.3s; }
.footer-grid ul li a:hover { opacity: 1; color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; opacity: 0.6; }

/* Testimonials Section */
.testimonials { padding: 80px 0; background: #f8fafc; }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.test-card { background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; border-bottom: 3px solid var(--primary); }
.test-card::before { content: '"'; position: absolute; top: 20px; right: 20px; font-size: 60px; color: #eee; font-family: serif; line-height: 1; }
.test-text { font-style: italic; color: #555; margin-bottom: 20px; font-size: 15px; line-height: 1.6; }
.test-user { display: flex; align-items: center; gap: 15px; }
.test-avatar { width: 50px; height: 50px; border-radius: 50%; background: #eee; object-fit: cover; }
.test-info h4 { font-size: 16px; color: var(--secondary); margin-bottom: 2px; }
.test-info p { font-size: 12px; color: var(--primary); font-weight: 700; }

/* Guides Section */
.guides { padding: 80px 0; }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 40px; }
.guide-card { border-radius: 15px; overflow: hidden; background: #fff; border: 1px solid #eee; transition: 0.3s; text-decoration: none; color: inherit; display: block; }
.guide-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.guide-img { height: 200px; background: #eee; overflow: hidden; }
.guide-img img { width: 100%; height: 100%; object-fit: cover; }
.guide-body { padding: 25px; }
.guide-tag { display: inline-block; padding: 4px 12px; background: var(--primary); color: #fff; border-radius: 20px; font-size: 11px; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; }
.guide-body h3 { font-size: 20px; color: var(--secondary); margin-bottom: 12px; line-height: 1.3; }
.guide-body p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 15px; }
.guide-link { font-weight: 800; color: var(--primary); font-size: 13px; display: flex; align-items: center; gap: 5px; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .test-grid, .guide-grid { display: block !important; }
    .test-card, .guide-card { width: 100% !important; margin-bottom: 25px; }
}
@media (max-width: 768px) {
    .container { padding: 0 15px; width: 100%; box-sizing: border-box; }
    header .logo { font-size: 18px; }
    nav ul li a { font-size: 11px; margin-left: 10px; }
    
    .hero { padding: 60px 15px !important; }
    .hero h1 { font-size: 26px !important; }
    .hero p { font-size: 14px; }

    .tab-nav { flex-wrap: wrap; gap: 5px; }
    .tab-btn { flex: 1 1 45%; padding: 8px; font-size: 12px; }

    /* Detail Page Mobile */
    .detail-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; margin-top: 20px; }
    .inc-exc-grid { grid-template-columns: 1fr; }

    /* SEO Section Fix */
    .seo-content { padding: 40px 15px; }
    .seo-content h2 { font-size: 20px; text-align: center; }
    .seo-grid { display: block !important; }
    .seo-grid div { width: 100% !important; margin-bottom: 25px; }
    .seo-grid h3 { font-size: 17px; }

    /* FAQ Section */
    .faq-section { padding: 40px 15px; }
    .faq-q { font-size: 13px; padding-right: 25px; }
    
    /* Footer Fix */
    .footer-grid { display: block !important; text-align: center; }
    .footer-grid > div { width: 100% !important; margin-bottom: 35px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 20px; }
    .footer-grid > div:last-child { border-bottom: none; }
    
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 12px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .tab-btn { flex: 1 1 100%; }
    .hero h1 { font-size: 24px !important; }
}

/* Mobile Sticky Booking Bar */
.mobile-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 12px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1500;
}
.mobile-booking-bar .price-info { display: flex; flex-direction: column; }
.mobile-booking-bar .m-price { font-size: 20px; font-weight: 800; color: var(--primary); line-height: 1; }
.mobile-booking-bar .m-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; margin-top: 2px; }
.mobile-booking-bar .m-btn-wa { background: #25d366; color: #fff; text-decoration: none; padding: 12px 25px; border-radius: 8px; font-weight: 800; font-size: 14px; }

@media (max-width: 768px) {
    .mobile-booking-bar { display: flex; }
    footer { padding-bottom: 80px !important; } /* Add space so bar doesn't cover footer */
}

/* Live Notification */
.live-notif { position: fixed; bottom: 20px; left: 20px; background: #fff; padding: 15px 20px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-left: 5px solid var(--primary); display: flex; align-items: center; gap: 15px; transform: translateX(-150%); transition: 0.5s; z-index: 9999; }
.live-notif.active { transform: translateX(0); }
.live-notif img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.live-notif-text h4 { margin: 0; font-size: 13px; color: var(--secondary); }
.live-notif-text p { margin: 0; font-size: 11px; color: #666; }

@media (max-width: 768px) {
    .live-notif { bottom: 85px; left: 10px; right: 10px; padding: 10px; }
}

/* ===== PROFESSIONAL UPGRADES (v2) ===== */

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
}

/* Hero CTA Buttons */
.hero-cta {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: var(--primary);
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}
.btn-hero-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.5);
}
.btn-hero-wa {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}
.btn-hero-wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    transform: translateY(-2px);
}

/* Trust Stats Bar */
.trust-bar {
    background: var(--secondary);
    padding: 20px 0;
    border-bottom: 3px solid var(--primary);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.trust-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.trust-label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile trust bar */
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .trust-num { font-size: 22px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-wa { width: 80%; text-align: center; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
