/* === RESET & VARIABLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root {
    --primary-blue: #1e3a8a;
    --primary-blue-light: #2563eb;
    --primary-green: #16a34a;
    --primary-green-dark: #15803d;
    --primary-orange: #f59e0b;
    --primary-teal: #0d9488;
    --bg-light: #f3f4f6;
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
body {
    background-color: #f8fafc;
    color: var(--text-dark);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === NAVIGATION (SHARED) === */
nav {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.logo-icon { font-size: 24px; }
.logo-text { font-weight: 700; font-size: 20px; line-height: 1; }
.logo-sub { font-size: 10px; display: block; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-links .contact-item {
    color: #fff;
    font-size: 14px;
}
.nav-links .contact-item i { margin-right: 5px; }

.btn-plan {
    background-color: var(--primary-green);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.btn-plan:hover { background-color: var(--primary-green-dark); }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Mobile Nav Responsive */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-blue);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
        border-bottom: 2px solid #fff;
    }
    .nav-links.active { display: flex; }
    .nav-links .contact-item { font-size: 16px; padding: 10px 0; }
    .btn-plan { margin-top: 10px; width: 80%; }
}

/* === HERO SECTION (Shared Base) === */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 5% 80px 5%;
    margin-top: 20px;
}

/* === BEST TIME PAGE SPECIFIC === */
.hero-bg-time { background-image: url('../../images/best-time-to-visit-manali-banner.jpg'); }
.hero-bg-time h1 { font-size: 3rem; font-weight: 700; }
.hero-bg-time h2 { font-size: 2rem; font-style: italic; font-weight: 300; }
.hero-bg-time h2 span { color: #ffd700; font-weight: 600; }

/* === ADVENTURE PAGE SPECIFIC === */
.hero-bg-adventure { background-image: url('../../images/adventure-activities-in-manali.jpg'); }
.hero-bg-adventure h1 { font-size: 3.5rem; font-weight: 700; }
.hero-bg-adventure h2 { font-size: 2.5rem; font-weight: 700; }
.hero-bg-adventure h2 span { color: #ffd700; }
.hero-bg-adventure p { max-width: 500px; font-size: 14px; opacity: 0.9; }

/* === MAIN CONTAINER === */
.main-container {
    max-width: 1200px;
    margin: -60px auto 40px auto;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

/* === NEW SECTIONS FOR ADVENTURE PAGE === */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.section-title::before, .section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: #d1d5db;
    max-width: 100px;
}
.section-title span {
    display: inline-block;
    width: 8px; height: 8px;
    background: #1e293b;
    border-radius: 50%;
}

/* Info Section Shared Styles (How it works, Why book, Help) */
.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}
.info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}
.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-card h3 i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}
.info-card p, .info-card li {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}
.info-card ul {
    padding-left: 20px;
    list-style-type: disc;
}
.info-card ul li {
    margin-bottom: 8px;
}

/* How it works Grid */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.how-step {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

/* Why Book Grid */
.why-book-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.why-item {
    text-align: center;
    background: #f8fafc;
    padding: 20px 10px;
    border-radius: 12px;
    transition: transform 0.3s;
}
.why-item:hover { transform: translateY(-5px); }
.why-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}
.why-item h4 { margin-bottom: 5px; }
.why-item p { font-size: 12px; margin: 0; }

/* Help Box */
.help-box {
    background: var(--primary-blue);
    color: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}
.help-box h2 { color: #fff; margin-bottom: 15px; }
.help-box p { font-size: 15px; opacity: 0.9; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
.help-box .btn-help {
    background: #ffd700;
    color: #000;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* === ADVENTURE ACTIVITIES SECTION === */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.activity-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.activity-card:hover { transform: translateY(-5px); }

.activity-img {
    height: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
}
.activity-icon {
    position: absolute;
    top: 15px; left: 15px;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    border: 2px solid #fff;
}

.activity-content { padding: 20px; }
.activity-content h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 5px; }
.price-duration {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.price-duration span { color: var(--primary-blue); }
.location {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.location i { color: var(--primary-blue); }

.card-btns {
    display: flex;
    gap: 10px;
}
.card-btns button {
    flex: 1;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    transition: 0.2s;
}
.card-btns .btn-book {
    background: var(--primary-blue);
    color: #fff;
    border: none;
}
.card-btns .btn-book:hover { background: #1e3a8a; }
.card-btns .btn-know { border-color: var(--primary-blue); color: var(--primary-blue); }
.card-btns .btn-know:hover { background: #f0f4ff; }

/* Color themes for cards */
.bg-blue .activity-icon { background: var(--primary-blue); }
.bg-green .activity-icon { background: var(--primary-green); }
.bg-orange .activity-icon { background: var(--primary-orange); }
.bg-teal .activity-icon { background: var(--primary-teal); }

.bg-blue .btn-book { background: var(--primary-blue); }
.bg-green .btn-book { background: var(--primary-green); }
.bg-orange .btn-book { background: var(--primary-orange); }
.bg-teal .btn-book { background: var(--primary-teal); }

/* === ENQUIRY SECTION === */
.enquiry-section {
    background: var(--primary-blue);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    margin-top: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
}
.enquiry-img {
    flex: 1;
    max-width: 300px;
}
.enquiry-img img {
    width: 100%;
    border-radius: 10px;
}
.enquiry-form-container { flex: 2; }
.enquiry-form-container h2 { font-size: 1.8rem; margin-bottom: 10px; }
.enquiry-form-container p { font-size: 14px; margin-bottom: 20px; opacity: 0.9; }

.enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
    padding: 12px;
    border-radius: 5px;
    border: none;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}
.enquiry-form textarea {
    grid-column: span 2;
    resize: vertical;
    height: 80px;
}
.enquiry-form .btn-submit {
    grid-column: span 2;
    padding: 12px;
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.enquiry-form .btn-submit:hover { background: var(--primary-green-dark); }

.enquiry-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.enquiry-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 13px;
}
.enquiry-features i { font-size: 20px; color: #ffd700; }

/* === BEST TIME PAGE CSS (KEPT) === */
.overview-card { background: #fff; border-radius: 20px; padding: 30px; box-shadow: var(--shadow); margin-bottom: 40px; }
.overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.season-box { background: #f9fafb; border-radius: 15px; padding: 25px 15px; text-align: center; }
.season-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; color: #fff; font-size: 24px; margin-bottom: 15px; }
.season-icon.blue { background: var(--primary-blue); }
.season-icon.green { background: var(--primary-green); }
.season-icon.orange { background: var(--primary-orange); }
.season-icon.teal { background: var(--primary-teal); }
.season-btn { display: inline-block; padding: 8px 15px; border-radius: 20px; color: #fff; font-size: 12px; font-weight: 600; border: none; cursor: pointer; }

.season-details-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.detail-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: var(--shadow); border-bottom: 5px solid transparent; }
.detail-img { height: 150px; background-size: cover; background-position: center; position: relative; }
.detail-tag { position: absolute; top: 15px; left: 50%; transform: translateX(-50%); padding: 4px 15px; border-radius: 15px; color: #fff; font-weight: 600; font-size: 14px; }
.detail-content { padding: 20px; }
.detail-content li { font-size: 13px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.detail-content li i { color: var(--primary-blue); margin-top: 3px; }
.detail-footer-btn { width: 100%; padding: 10px; border: none; color: #fff; border-radius: 6px; font-weight: 600; font-size: 12px; cursor: pointer; }
.detail-card.winter { border-color: #3b82f6; }
.detail-card.spring { border-color: #22c55e; }
.detail-card.summer { border-color: #f59e0b; }
.detail-card.monsoon { border-color: #14b8a6; }

.temp-guide { background: #fff; border-radius: 20px; padding: 30px; box-shadow: var(--shadow); margin-bottom: 40px; }
.temp-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.temp-item { text-align: center; padding: 15px 5px; border: 1px solid #e5e7eb; border-radius: 8px; }
.temp-item .month { font-weight: 600; font-size: 14px; margin-bottom: 5px; }
.temp-item i { font-size: 20px; margin-bottom: 5px; display: block; }
.temp-item .temp-val { font-size: 13px; color: #555; }

.travel-tips-cta-container { display: grid; grid-template-columns: 25% 75%; gap: 20px; margin-bottom: 40px; }
.tips-box { background: var(--primary-green); color: #fff; border-radius: 15px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.tips-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tips-icons div { display: flex; align-items: center; gap: 8px; font-size: 10px; }
.cta-box { background: var(--primary-green-dark); color: #fff; border-radius: 15px; padding: 20px; display: flex; align-items: center; gap: 20px; }
.cta-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,0.3); }
.cta-content { flex: 1; }
.cta-buttons { display: flex; gap: 15px; align-items: center; }
.btn-yellow { background: #facc15; color: #000; padding: 8px 20px; border-radius: 5px; font-weight: 600; border: none; cursor: pointer; }
.btn-outline-phone { background: transparent; border: 1px solid #fff; color: #fff; padding: 8px 15px; border-radius: 20px; font-size: 12px; display: flex; align-items: center; gap: 8px; cursor: pointer; }
.cta-features { display: flex; gap: 30px; margin-left: auto; }
.cta-feature { text-align: center; font-size: 10px; max-width: 80px; }
.cta-feature i { display: block; font-size: 24px; margin-bottom: 5px; color: #facc15; }

/* === FOOTER (SHARED) === */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 50px 5% 20px 5%;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1.5fr;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h4 { color: #fff; margin-bottom: 15px; font-size: 14px; }
.footer-col ul li { margin-bottom: 10px; font-size: 13px; cursor: pointer; transition: 0.3s; }
.footer-col ul li:hover { color: #fff; }
.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-icons i { background: #1e293b; padding: 8px; border-radius: 50%; color: #fff; cursor: pointer; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input { padding: 10px; border-radius: 5px; border: none; background: #1e293b; color: #fff; }
.newsletter-form button { padding: 10px; border-radius: 5px; border: none; background: var(--primary-green); color: #fff; font-weight: 600; cursor: pointer; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .how-it-works-grid { grid-template-columns: 1fr; }
    .why-book-grid { grid-template-columns: repeat(2, 1fr); }
    .overview-grid, .season-details-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-box { flex-wrap: wrap; }
    .cta-features { margin-left: 0; width: 100%; justify-content: space-around; margin-top: 15px;}
}
@media (max-width: 768px) {
    .activities-grid { grid-template-columns: 1fr; }
    .how-it-works-grid { grid-template-columns: 1fr; }
    .why-book-grid { grid-template-columns: 1fr 1fr; }
    .overview-grid, .season-details-grid, .temp-grid, .travel-tips-cta-container { grid-template-columns: 1fr; }
    .hero-bg-adventure h1 { font-size: 2.5rem; }
    .hero-bg-adventure h2 { font-size: 1.8rem; }
    .enquiry-section { flex-direction: column; text-align: center; padding: 20px;}
    .enquiry-img { max-width: 100%; margin-bottom: 20px;}
    .enquiry-form { grid-template-columns: 1fr; }
    .enquiry-form textarea, .enquiry-form .btn-submit { grid-column: span 1; }
    .enquiry-features { width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .enquiry-features div { font-size: 11px; padding: 8px 10px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; align-items: center; text-align: center;}
}
/* === FIX: KNOW MORE BUTTON LINK === */
.card-btns a {
    flex: 1;
    display: flex;
    text-decoration: none;
}
.card-btns a .btn-know {
    width: 100%;
}