        /* ===== GLOBAL RESET & VARIABLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a4d8f;
            --primary-dark: #0e3566;
            --accent: #f9a826;
            --light-bg: #f7f9fc;
            --white: #fff;
            --dark: #1e2a3a;
            --light-text: #4a5a6e;
            --border: #e0e6ed;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: 0.3s ease;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--light-bg);
            color: var(--dark);
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== TOP HEADER ===== */
        .top-header {
            background: var(--primary-dark);
            color: #ccc;
            font-size: 14px;
            padding: 8px 0;
            border-bottom: 1px solid #2a4b7a;
        }
        .top-header .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .top-header .left span {
            margin-right: 20px;
        }
        .top-header .left a {
            color: #fff;
        }
        .top-header .right .btn-enquiry-sm {
            background: var(--accent);
            border: none;
            color: #1e2a3a;
            padding: 5px 18px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            font-size: 13px;
            transition: var(--transition);
        }
        .top-header .right .btn-enquiry-sm:hover {
            background: #e6951e;
        }

        /* ===== MAIN HEADER ===== */
        .main-header {
            background: var(--primary);
            color: var(--white);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo img {
            height: 85px;
        }
        .logo span {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        /* Navigation */
        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        .nav-links a {
            font-size: 14px;
            font-weight: 600;
            color: #e8edf5;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
        }
        .menu-toggle span {
            width: 26px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: var(--transition);
        }

        /* ===== HERO ===== */
/* ===== HERO WITH BACKGROUND IMAGE ===== */
.hero {
    background: linear-gradient(135deg, rgba(14, 53, 102, 0.85) 0%, rgba(26, 77, 143, 0.75) 60%, rgba(42, 107, 176, 0.7) 100%);
    padding: 10px 0 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Hero Background Image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/kasauli-tour-package.jpg');
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark overlay on background image */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 1px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin: 12px 0 20px;
    font-size: 15px;
    opacity: 0.95;
}

.hero-meta span {
    display: flex;
    align-items: left;
    gap: 6px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.stars {
    color: var(--accent);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-outline-light {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: var(--white);
        }
        .btn-outline-light:hover {
            background: var(--white);
            color: var(--primary);
            border-color: var(--white);
        }
        .btn-primary {
            background: var(--accent);
            color: #1e2a3a;
        }
        .btn-primary:hover {
            background: #e6951e;
        }
        .btn-whatsapp {
            background: #25d366;
            color: #fff;
            width: 100%;
        }
        .btn-whatsapp a {
            color: #fff;
        }
        .btn-whatsapp:hover {
            background: #1da851;
        }

        /* ===== CONTENT WRAPPER ===== */
        .content-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            padding: 40px 0;
        }

        /* ===== TABS ===== */
        .tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            background: var(--white);
            border-radius: var(--radius);
            padding: 6px;
            margin-bottom: 28px;
            box-shadow: var(--shadow);
        }
        .tab-item {
            padding: 10px 24px;
            font-weight: 600;
            font-size: 14px;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            background: transparent;
            color: var(--light-text);
        }
        .tab-item:hover {
            background: #f0f4fa;
        }
        .tab-item.active {
            background: var(--primary);
            color: var(--white);
        }
        .tab-content {
            display: none;
            animation: fadeUp 0.4s ease;
        }
        .tab-content.active {
            display: block;
        }
        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(10px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .section-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 18px;
            letter-spacing: 1px;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 8px;
            display: inline-block;
        }

        /* ===== ITINERARY DAYS - UPDATED IMAGE SIZES ===== */
        .itinerary-day {
            display: grid;
            grid-template-columns: 50px 1fr 200px;
            gap: 20px;
            background: var(--white);
            border-radius: var(--radius);
            padding: 20px 24px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            align-items: start;
            transition: var(--transition);
        }
        .itinerary-day:hover {
            transform: translateX(4px);
        }
        .day-badge {
            background: var(--primary);
            color: var(--white);
            font-weight: 700;
            font-size: 20px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .day-content h4 {
            font-size: 17px;
            margin-bottom: 4px;
            color: var(--primary);
        }
        .day-content p {
            color: var(--light-text);
            font-size: 14px;
            margin-bottom: 6px;
        }
        .day-icons {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: var(--light-text);
            flex-wrap: wrap;
        }
        .day-icons span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .day-image {
            border-radius: 10px;
            overflow: hidden;
            height: 140px;
            width: 200px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .day-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .day-image img:hover {
            transform: scale(1.05);
        }

        /* ===== GRID / LISTS ===== */
        .grid-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 24px;
        }
        .list-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--light-text);
            padding: 6px 0;
            border-bottom: 1px solid #f0f4fa;
        }
        .list-item i {
            color: var(--accent);
            font-weight: 700;
        }

        /* ===== HOTELS ===== */
        .hotels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 16px;
            margin: 16px 0;
        }
        .hotel-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .hotel-card img {
            height: 120px;
            width: 100%;
            object-fit: cover;
        }
        .hotel-card-body {
            padding: 12px;
        }
        .hotel-card-body h5 {
            font-size: 14px;
            margin-bottom: 2px;
        }
        .hotel-note {
            font-size: 14px;
            color: var(--light-text);
            background: #f0f7ff;
            padding: 16px;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            margin-top: 12px;
        }

        /* ===== SIDEBAR ===== */
        .sidebar-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 22px 20px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
        }
        .price-box {
            background: linear-gradient(135deg, #0e3566, #1a4d8f);
            color: var(--white);
        }
        .price-header {
            text-align: center;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }
        .price-amount {
            font-size: 34px;
            font-weight: 700;
        }
        .price-amount span {
            font-size: 16px;
            font-weight: 400;
            opacity: 0.8;
            margin-left: 4px;
        }
        .price-ratings {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 10px 0 16px;
            font-size: 14px;
        }
        .info-line {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 14px;
        }
        .info-line:last-child {
            border-bottom: none;
        }
        .sidebar-actions {
            margin-top: 16px;
        }

        /* Enquiry Form */
        .form-group {
            margin-bottom: 14px;
        }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 14px;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 77, 143, 0.15);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        textarea.form-control {
            resize: vertical;
            min-height: 70px;
        }

        /* Info Blocks */
        .info-block {
            display: flex;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f4fa;
        }
        .info-block:last-child {
            border-bottom: none;
        }
        .info-block i {
            font-size: 28px;
            color: var(--primary);
            width: 40px;
            text-align: center;
        }
        .info-block h5 {
            font-size: 14px;
            margin-bottom: 2px;
        }
        .info-block p {
            font-size: 13px;
            color: var(--light-text);
        }

        /* ===== FOOTER ===== */
        footer {
            background: #0d1b2b;
            color: #b0c4de;
            padding: 50px 0 20px;
            margin-top: 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            color: var(--white);
            font-size: 16px;
            margin-bottom: 14px;
            position: relative;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--accent);
        }
        .footer-col ul {
            list-style: none;
            font-size: 14px;
        }
        .footer-col ul li {
            padding: 4px 0;
        }
        .footer-col ul li a {
            color: #b0c4de;
            transition: var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        .footer-about p {
            font-size: 14px;
            line-height: 1.7;
            margin: 10px 0;
        }
        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }
        .social-icons a {
            background: #1e2a3a;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b0c4de;
            transition: var(--transition);
        }
        .social-icons a:hover {
            background: var(--accent);
            color: #0d1b2b;
        }

        .newsletter-form {
            display: flex;
            gap: 6px;
        }
        .newsletter-form input {
            flex: 1;
            padding: 10px 14px;
            border: none;
            border-radius: 30px;
            font-size: 13px;
        }
        .newsletter-form button {
            background: var(--accent);
            border: none;
            padding: 10px 18px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .newsletter-form button:hover {
            background: #e6951e;
        }

        .footer-bottom {
            border-top: 1px solid #1e2a3a;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            font-size: 13px;
        }
        .footer-links {
            display: flex;
            gap: 20px;
        }
        .footer-links a {
            color: #b0c4de;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .itinerary-day {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .day-image {
                width: 100%;
                height: 200px;
            }
        }
        @media (max-width: 768px) {
            .top-header .container {
                flex-direction: column;
                align-items: center;
                gap: 6px;
            }
            .main-header .container {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0;
                gap: 12px;
                background: var(--primary-dark);
                border-radius: 8px;
                margin-top: 12px;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: flex;
            }
            .hero h1 {
                font-size: 28px;
            }
            .grid-2col {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .tabs {
                gap: 4px;
            }
            .tab-item {
                padding: 6px 14px;
                font-size: 12px;
            }
            .price-amount {
                font-size: 28px;
            }
            .day-image {
                height: 180px;
            }
        }
        @media (max-width: 480px) {
            .hero-actions .btn {
                width: 100%;
                text-align: center;
            }
            .hero-meta {
                font-size: 13px;
                gap: 10px;
            }
            .day-image {
                height: 160px;
            }
        }