/* === RESET & VARIABLES === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        :root {
            --primary-blue: #1e3a8a; /* Dark Blue */
            --primary-blue-light: #2563eb;
            --primary-green: #16a34a; /* Green */
            --primary-green-dark: #15803d;
            --primary-orange: #f59e0b; /* Orange */
            --primary-teal: #0d9488; /* Teal */
            --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);
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* === HEADER / HERO === */
        .hero-section {
            position: relative;
            background-image: url('../../images/best-time-to-visit-manali-banner.jpg'); /* Placeholder: Replace with your mountain image */
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 20px 5%;
            padding-bottom: 120px;
            min-height: 500px;
            display: flex;
            flex-direction: column;
        }
        /* Overlay to improve text readability */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.3);
            z-index: 1;
        }

        .nav-bar {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon { font-size: 24px; }
        .logo-text { font-weight: 700; font-size: 20px; line-height: 1; }
        .logo-sub { font-size: 10px; display: block; }

        .contact-info {
            display: flex;
            gap: 30px;
            font-size: 14px;
        }
        .contact-info i { margin-right: 8px; }
        
        .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); }

        .hero-content {
            position: relative;
            z-index: 2;
            margin-top: 20px;
        }
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 10px;
        }
        .hero-content h2 {
            font-size: 2rem;
            font-style: italic;
            font-weight: 300;
            margin-bottom: 10px;
        }
        .hero-content h2 span {
            color: #ffd700;
            font-weight: 600;
        }
        .hero-content p {
            font-size: 14px;
            max-width: 400px;
            opacity: 0.9;
        }

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

        /* === OVERVIEW SECTION === */
        .overview-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        .overview-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-weight: 600;
        }
        .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-box h3 { font-size: 18px; margin-bottom: 5px; }
        .season-box .period { font-size: 12px; font-weight: 600; margin-bottom: 10px; }
        .season-box .temp { font-size: 14px; margin-bottom: 10px; }
        .season-box .desc { font-size: 13px; color: #666; margin-bottom: 15px; }
        
        .season-btn {
            display: inline-block;
            padding: 8px 15px;
            border-radius: 20px;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            border: none;
            cursor: pointer;
        }
        .btn-blue { background: var(--primary-blue); }
        .btn-green { background: var(--primary-green); }
        .btn-orange { background: var(--primary-orange); }
        .btn-teal { background: var(--primary-teal); }

        /* === SEASON DETAILS === */
        .section-title {
            text-align: center;
            font-size: 1.8rem;
            margin: 40px 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%;
        }

        .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-card.winter { border-color: #3b82f6; }
        .detail-card.spring { border-color: #22c55e; }
        .detail-card.summer { border-color: #f59e0b; }
        .detail-card.monsoon { border-color: #14b8a6; }

        .detail-img {
            height: 150px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        /* Placeholder background colors if image fails */
        .detail-card.winter .detail-img { background-image: url('images/manali-winter-season.jpg'); }
        .detail-card.spring .detail-img { background-image: url('images/manali-spring-season.jpg'); }
        .detail-card.summer .detail-img { background-image: url('images/manali-summer-season.jpg'); }
        .detail-card.monsoon .detail-img { background-image: url('images/manali-rainy-season.jpg'); }
        
        .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-card.winter .detail-tag { background: var(--primary-blue); }
        .detail-card.spring .detail-tag { background: var(--primary-green); }
        .detail-card.summer .detail-tag { background: var(--primary-orange); }
        .detail-card.monsoon .detail-tag { background: var(--primary-teal); }

        .detail-content {
            padding: 20px;
        }
        .detail-content ul {
            margin-bottom: 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;
        }

        /* === TEMPERATURE GUIDE === */
        .temp-guide {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        .temp-guide-title {
            text-align: center;
            font-size: 1.5rem;
            margin-bottom: 25px;
        }
        .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 === */
        .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;
            min-height: 180px;
        }
        .tips-box h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
        
        .tips-icons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .tips-icons div {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 10px;
        }
        .tips-icons i { font-size: 16px; }

        .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-content h3 { font-size: 22px; margin-bottom: 5px; }
        .cta-content p { font-size: 13px; margin-bottom: 15px; }
        .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 === */
        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: 1024px) {
            .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) {
            .nav-bar { flex-direction: column; align-items: flex-start; gap: 15px; }
            .contact-info { flex-direction: column; gap: 5px; }
            .hero-content h1 { font-size: 2rem; }
            .overview-grid, .season-details-grid, .temp-grid, .travel-tips-cta-container { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 15px; align-items: center; }
        }