/* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            overflow-x: hidden;
            color: #333;
            width: 100%;
        }

        img {
            max-width: 100%;
            height: auto;
        }
.site-footer {
  position: relative;
  background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
  color: #fff;
}


        .hero-content h1 {
            font-size: clamp(2.5rem, 8vw, 4rem);
            color: #fff;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            line-height: 1.2;
        }

        .hero-location {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: clamp(1rem, 3vw, 1.25rem);
            background: rgba(255,106,0,0.8);
            padding: 10px 20px;
            border-radius: 40px;
            display: inline-flex;
            flex-wrap: wrap;
        }

        /* Overview Section */
        .overview-section {
            padding: clamp(12px, 8vw, 19px) 13px;
            background: #fff;
        }

        .overview-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: clamp(20px, 5vw, 40px);
            align-items: start;
        }

        .overview-left h2 {
            font-size: clamp(1.75rem, 5vw, 2.25rem);
            margin-bottom: 20px;
            color: #222;
        }

        .overview-left p {
            line-height: 1.8;
            color: #555;
            margin-bottom: -10px;
            font-size: clamp(0.95rem, 2vw, 1rem);
        }

        .overview-right {
            background: #f8f9fa;
            padding: clamp(20px, 4vw, 30px);
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .overview-right h3 {
            font-size: clamp(1.25rem, 4vw, 1.5rem);
            margin-bottom: 20px;
            text-align: center;
            color: #222;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .overview-right input,
        .overview-right textarea,
        .overview-right select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: border-color 0.3s;
        }

        .overview-right input:focus,
        .overview-right textarea:focus,
        .overview-right select:focus {
            outline: none;
            border-color: #ff6a00;
        }

        .phone-group {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 0 15px;
            flex-wrap: wrap;
        }

        .phone-group .flag {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
        }

        .phone-group input {
            border: none;
            padding: 12px 0;
            flex: 1;
            min-width: 150px;
        }

        .row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 10px;
        }

        textarea {
            min-height: 100px;
            resize: vertical;
        }

        .captcha-box {
            background: #e9ecef;
            padding: clamp(10px, 3vw, 15px);
            border-radius: 8px;
            margin: 15px 0;
        }

        .captcha-question {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: clamp(0.95rem, 2vw, 1rem);
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: #ff6a00;
            border: none;
            color: #fff;
            font-size: clamp(0.95rem, 2vw, 1rem);
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #e55e00;
        }

        /* Full Width Content Sections */
        .content-section {
            padding: clamp(9px, 1vw, 28px) 1px;
        }

        .content-wrapper {
            max-width: 900px;
            margin-left: 10px;
            padding: 0 15px;
        }

        .content-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .content-header h2 {
            font-size: clamp(1.75rem, 6vw, 2.625rem);
            color: #222;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .content-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: min(80px, 30vw);
            height: 3px;
            background: #ff6a00;
        }

        .content-header p {
            color: #666;
            font-size: 16px;
            max-width: 700px;
            /* margin: 20px auto 0; */
            font-style: Arial, sans-serif;

            padding: 0 15px;
        }

        .content-text h3 {
            font-size: clamp(1.25rem, 4vw, 1.75rem);
            color: #ff6a00;
            margin-bottom: 20px;
            text-align: center;
        }

        .content-text p {
            line-height: 1.9;
            color: #555;
            margin-bottom: 20px;
            font-size: clamp(0.95rem, 2vw, 1rem);
        }

        .content-features {
            list-style: none;
            margin: 30px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 15px;
        }

        .content-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #555;
            padding: 8px 0;
        }

        .content-features i {
            color: #ff6a00;
            font-size: clamp(1rem, 2.5vw, 1.125rem);
            width: 24px;
            flex-shrink: 0;
        }

        .content-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #ff6a00;
            color: #fff;
            padding: 12px clamp(20px, 5vw, 35px);
            border-radius: 40px;
            text-decoration: none;
            font-weight: 500;
            margin-top: 20px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: clamp(0.95rem, 2vw, 1rem);
            white-space: nowrap;
        }

        .content-cta:hover {
            background: #e55e00;
            gap: 15px;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,106,0,0.3);
        }

        .quote-block {
            background: #fff;
            padding: clamp(20px, 4vw, 30px);
            border-radius: 12px;
            margin: 40px 0 20px;
            border-left: 4px solid #ff6a00;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .quote-block p {
            font-size: clamp(0.95rem, 2.5vw, 1.125rem);
            font-style: italic;
            color: #444;
            margin-bottom: 10px;
        }

        .quote-block .author {
            color: #ff6a00;
            font-weight: 600;
            text-align: right;
        }

        /* Itinerary Section */
        .itinerary-section {
            background: #f4f2ef;
            padding: clamp(50px, 10vw, 80px) 20px;
        }

        .itinerary-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .itinerary-header {
            width: 100%;
            margin-bottom: 40px;
        }

        .itinerary-heading {
            font-size: clamp(2rem, 6vw, 3rem);
            margin: 0;
            font-family: "Playfair Display", serif;
            position: relative;
            display: inline-block;
        }

        .itinerary-heading:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: min(80px, 30vw);
            height: 3px;
            background: #ff6a00;
        }

        .itinerary-timeline {
            position: relative;
            padding-left: clamp(0px, 15vw, 120px);
            margin-top: 20px;
        }

        .itinerary-timeline::before {
            content: "";
            position: absolute;
            left: min(60px, 10vw);
            top: 0;
            width: 2px;
            height: 100%;
            background: #000;
        }

        .itinerary-timeline-item {
            position: relative;
            margin-bottom: clamp(30px, 8vw, 60px);
        }

        .itinerary-day-label {
            position: absolute;
            left: clamp(-120px, -15vw, -80px);
            background: #000;
            color: #fff;
            padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 25px);
            font-weight: bold;
            font-size: clamp(0.9rem, 2vw, 1.125rem);
            min-width: min(100px, 20vw);
            text-align: center;
            z-index: 2;
            white-space: nowrap;
        }

        .itinerary-timeline-content {
            background: #eaeaea;
            padding: clamp(20px, 4vw, 35px);
            margin-left: clamp(0px, 5vw, 40px);
            border-radius: 8px;
        }

        .itinerary-timeline-content h4 {
            margin-bottom: 15px;
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            font-weight: 600;
            word-wrap: break-word;
        }

        .itinerary-timeline-content p {
            line-height: 1.6;
            color: #555;
            font-size: clamp(0.9rem, 2vw, 1rem);
            word-wrap: break-word;
        }

        .itinerary-icon {
            color: #ff6b00;
            margin-right: 8px;
        }

        /* Reviews Section */
        .reviews-section {
            padding: clamp(40px, 8vw, 60px) 20px;
            background: #f8f9fa;
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .reviews-left {
            text-align: center;
            margin-bottom: 40px;
        }

        .reviews-left h2 {
            font-size: clamp(1.75rem, 5vw, 2.25rem);
            color: #222;
            margin-bottom: 20px;
        }

        .rating-box {
            background: #fff;
            padding: clamp(20px, 4vw, 25px);
            border-radius: 12px;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            max-width: 100%;
        }

        .rating-box h3 {
            font-size: clamp(1.5rem, 4vw, 1.75rem);
            color: #00aa6c;
            margin-bottom: 10px;
        }

        .rating-circles {
            display: flex;
            gap: 5px;
            justify-content: center;
            margin: 15px 0;
            flex-wrap: wrap;
        }

        .rating-circles span {
            width: clamp(25px, 5vw, 30px);
            height: clamp(25px, 5vw, 30px);
            background: #00aa6c;
            border-radius: 50%;
        }

        .trip-logo {
            height: clamp(30px, 5vw, 40px);
            margin-top: 15px;
            max-width: 100%;
        }

        .reviews-right {
            position: relative;
            display: flex;
            align-items: center;
            gap: clamp(10px, 3vw, 20px);
        }

        .reviews-slider {
            flex: 1;
            overflow: hidden;
        }

        .reviews-track {
            display: flex;
            gap: 25px;
            transition: transform 0.6s ease;
        }

        .review-card {
            background: #fff;
            border-radius: 12px;
            padding: clamp(15px, 3vw, 25px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            flex: 0 0 calc(33.333% - 17px);
            min-width: 250px;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .avatar {
            width: clamp(40px, 8vw, 50px);
            height: clamp(40px, 8vw, 50px);
            border-radius: 50%;
            object-fit: cover;
        }

        .review-header h4 {
            font-size: clamp(0.9rem, 2vw, 1rem);
            margin-bottom: 4px;
            word-wrap: break-word;
        }

        .review-header span {
            font-size: clamp(0.7rem, 1.5vw, 0.75rem);
            color: #888;
        }

        .ta-badge {
            width: clamp(20px, 4vw, 25px);
            margin-left: auto;
        }

        .review-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .review-stars span {
            width: clamp(15px, 3vw, 18px);
            height: clamp(15px, 3vw, 18px);
            background: #00aa6c;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        }

        .review-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: clamp(0.8rem, 2vw, 0.875rem);
            word-wrap: break-word;
        }

        .review-card a {
            color: #ff6a00;
            text-decoration: none;
            font-size: clamp(0.8rem, 2vw, 0.875rem);
            font-weight: 500;
            display: inline-block;
        }

        .review-arrow {
            width: clamp(35px, 6vw, 40px);
            height: clamp(35px, 6vw, 40px);
            background: #fff;
            border: none;
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            cursor: pointer;
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .review-arrow:hover {
            background: #ff6a00;
            color: #fff;
        }

        .slider-dots {
            display: none;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: #ddd;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #ff6a00;
            width: clamp(20px, 5vw, 25px);
            border-radius: 10px;
        }

        /* Responsive Breakpoints */
        @media screen and (max-width: 1200px) {
            .itinerary-timeline {
                padding-left: 100px;
            }

            .itinerary-timeline::before {
                left: 50px;
            }

            .itinerary-day-label {
                left: -100px;
            }
        }

        @media screen and (max-width: 992px) {
            .hero-uttarakhand {
                height: 70vh;
            }

            .review-card {
                flex: 0 0 calc(50% - 13px);
            }
        }

        @media screen and (max-width: 768px) {
            .hero-uttarakhand {
                height: 60vh;
                padding-left: 20px;
            }

            .hero-content h1 {
                font-size: clamp(2rem, 7vw, 2.5rem);
            }

            .hero-location {
                padding: 8px 16px;
            }

            .overview-container {
                grid-template-columns: 1fr;
            }

            .overview-right {
                max-width: 100%;
            }

            .row {
                grid-template-columns: 1fr;
            }

            .itinerary-timeline {
                padding-left: 0;
            }

            .itinerary-timeline::before {
                display: none;
            }

            .itinerary-timeline-item {
                margin-bottom: 30px;
            }

            .itinerary-day-label {
                position: relative;
                left: 0;
                display: inline-block;
                margin-bottom: 15px;
                padding: 8px 16px;
                font-size: 0.9rem;
                min-width: auto;
                white-space: normal;
            }

            .itinerary-timeline-content {
                margin-left: 0;
                padding: 20px;
            }

            .itinerary-timeline-content h4 {
                font-size: 1.1rem;
            }

            .review-card {
                flex: 0 0 100%;
            }

            .review-arrow {
                display: none;
            }

            .slider-dots {
                display: flex;
            }

            .content-features {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 576px) {
            .hero-uttarakhand {
                height: 50vh;
            }

            .hero-content h1 {
                font-size: clamp(1.75rem, 6vw, 2rem);
            }

            .hero-location {
                font-size: 0.9rem;
            }

            .overview-left h2 {
                font-size: 1.75rem;
            }

            .overview-right {
                padding: 20px;
            }

            .overview-right h3 {
                font-size: 1.25rem;
            }

            .content-header h2 {
                font-size: 1.75rem;
            }

            .content-header h2:after {
                width: 60px;
            }

            .content-text h3 {
                font-size: 1.35rem;
            }

            .quote-block {
                padding: 20px;
            }

            .quote-block p {
                font-size: 0.95rem;
            }

            .itinerary-heading {
                font-size: 2rem;
            }

            .reviews-left h2 {
                font-size: 1.75rem;
            }

            .rating-box h3 {
                font-size: 1.5rem;
            }

            .rating-circles span {
                width: 25px;
                height: 25px;
            }

            .phone-group {
                padding: 0 10px;
            }

            .phone-group .flag {
                font-size: 1.2rem;
            }
        }

        @media screen and (max-width: 400px) {
            .hero-uttarakhand {
                height: 45vh;
            }

            .hero-content h1 {
                font-size: 1.5rem;
            }

            .hero-location {
                font-size: 0.8rem;
                padding: 6px 12px;
            }

            .overview-left h2 {
                font-size: 1.5rem;
            }

            .overview-left p {
                font-size: 0.9rem;
            }

            .content-header h2 {
                font-size: 1.5rem;
            }

            .content-header p {
                font-size: 0.9rem;
            }

            .content-text h3 {
                font-size: 1.25rem;
            }

            .content-text p {
                font-size: 0.9rem;
            }

            .content-features li {
                font-size: 0.9rem;
            }

            .itinerary-heading {
                font-size: 1.75rem;
            }

            .itinerary-day-label {
                padding: 6px 12px;
                font-size: 0.85rem;
            }

            .itinerary-timeline-content {
                padding: 15px;
            }

            .itinerary-timeline-content h4 {
                font-size: 1rem;
            }

            .itinerary-timeline-content p {
                font-size: 0.85rem;
            }

            .reviews-left h2 {
                font-size: 1.5rem;
            }

            .rating-box {
                padding: 15px;
            }

            .rating-box h3 {
                font-size: 1.35rem;
            }

            .rating-circes span {
                width: 20px;
                height: 20px;
            }

            .review-card {
                padding: 15px;
            }

            .review-header h4 {
                font-size: 0.9rem;
            }

            .review-header span {
                font-size: 0.7rem;
            }

            .review-card p {
                font-size: 0.8rem;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 0.9rem;
                padding: 10px;
            }

            .submit-btn {
                padding: 12px;
                font-size: 0.95rem;
            }
        }

        /* Fix for very small devices */
        @media screen and (max-width: 320px) {
            .hero-uttarakhand {
                height: 40vh;
            }

            .hero-content h1 {
                font-size: 1.35rem;
            }

            .hero-location {
                font-size: 0.75rem;
                padding: 5px 10px;
            }

            .overview-left h2 {
                font-size: 1.35rem;
            }

            .overview-right h3 {
                font-size: 1.15rem;
            }

            .content-header h2 {
                font-size: 1.35rem;
            }

            .content-header h2:after {
                width: 50px;
            }

            .content-text h3 {
                font-size: 1.15rem;
            }

            .itinerary-heading {
                font-size: 1.5rem;
            }

            .itinerary-heading:after {
                width: 60px;
            }

            .itinerary-day-label {
                font-size: 0.8rem;
                padding: 5px 10px;
            }

            .reviews-left h2 {
                font-size: 1.35rem;
            }

            .rating-box h3 {
                font-size: 1.25rem;
            }
        }

        /* Fix for landscape orientation on mobile */
        @media screen and (max-height: 500px) and (orientation: landscape) {
            .hero-uttarakhand {
                height: 100vh;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-location {
                font-size: 1rem;
            }
        }

        /* Fix for tablets in landscape */
        @media screen and (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
            .hero-uttarakhand {
                height: 70vh;
            }

            .review-card {
                flex: 0 0 calc(50% - 13px);
            }

            .itinerary-timeline {
                padding-left: 100px;
            }
        }

        /* Ensure touch targets are large enough on mobile */
        @media (hover: none) and (pointer: coarse) {
            .submit-btn,
            .content-cta,
            .review-arrow,
            .dot {
                min-height: 44px;
                min-width: 44px;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 16px; /* Prevents zoom on focus in iOS */
            }
        }

        /* Print styles */
        @media print {
            .hero-uttarakhand {
                height: auto;
                background: none;
                color: #000;
            }

            .hero-content h1 {
                color: #000;
                text-shadow: none;
            }

            .overview-right,
            .submit-btn,
            .content-cta,
            .review-arrow {
                display: none;
            }
        }
