   :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --form-bg: rgba(255, 255, 255, 0.85);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            padding-top: 80px;
        }
        
        /* Fixed Header Styles */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 10px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            height: 60px;
            transition: all 0.3s ease;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        
        .main-nav li {
            margin-left: 30px;
        }
        
        .main-nav a {
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .main-nav a:hover {
            color: var(--accent-color);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-color);
        }
        
        /* Hero Section with Background Image */
        .hero-section {
            position: relative;
            height: 70vh;
            min-height: 500px;
            background-image: url('images/snow-peak-retreat-in-manali.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin-top: -80px;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
            padding: 20px;
        }
        
        /* Availability Form */
        .availability-form {
            background-color: var(--form-bg);
            padding: 30px;
            border-radius: 8px;
            max-width: 1000px;
            margin: 60px auto;
            color: #333;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-size: 28px;
        }
        
        .form-subtitle {
            text-align: center;
            margin-bottom: 25px;
            font-size: 16px;
        }
        
        .form-subtitle span {
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        .form-row-horizontal {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-end;
        }
        
        .form-group-horizontal {
            flex: 1;

		width: 100%;
			text-align: center;
        }
        
        .form-group-horizontal label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 14px;
            color: var(--primary-color);
        }
        
        .form-group-horizontal input, 
        .form-group-horizontal select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            background-color: white;
            transition: border-color 0.3s;
        }
        
        .form-group-horizontal input:focus, 
        .form-group-horizontal select:focus {
            outline: none;
            border-color: var(--secondary-color);
        }
        
        .form-group-horizontal button {
            width: 100%;
            padding: 15px;
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .form-group-horizontal button:hover {
            background-color: #c0392b;
        }
        
        .availability-result {
            margin-top: 20px;
            padding: 15px;
            background-color: white;
            border-radius: 4px;
            display: none;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        #availability-message {
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        #book-now-btn {
            padding: 10px 20px;
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        #book-now-btn:hover {
            background-color: #2980b9;
        }
        
        /* Booking Form */
        .booking-form {
            background-color: var(--form-bg);
            padding: 30px;
            border-radius: 8px;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .booking-form h2 {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 28px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .booking-form h2 u {
            text-decoration: none;
            position: relative;
        }
        
        .booking-form h2 u:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-col {
            flex: 1 1 300px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 14px;
            color: var(--primary-color);
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            background-color: white;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary-color);
        }
        
        .booking-summary {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .booking-summary h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        
        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 15px;
        }
        
        .summary-item span:first-child {
            color: #666;
        }
        
        .summary-item span:last-child {
            font-weight: 500;
        }
        
        .total {
            font-weight: bold;
            font-size: 18px;
            border-top: 1px solid #ddd;
            padding-top: 15px;
            margin-top: 15px;
        }
        
        .total span:last-child {
            color: var(--accent-color);
        }
        
        button[type="submit"] {
            width: 100%;
            padding: 15px;
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 20px;
        }
        
        button[type="submit"]:hover {
            background-color: #c0392b;
        }
        
        /* Rest of your existing styles... */
        .container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 50px 0;
        }
        
        h1, h2, h3 {
            margin-bottom: 10px;
            color: var(--primary-color);
            line-height: 1.0;
        }
        
        .hotel-overview {
            background-color: var(--light-color);
            padding: 10px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        
        .room-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .responsive-img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .column {
            flex: 1;
            padding: 20px;
            border: 1px solid #ccc;
        }

        .room-category {
            flex: 1 1 300px;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .room-category h3 {
            color: var(--secondary-color);
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
        }
        
        .price-info {
            margin: 15px 0;
        }
        
        .price-type {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        
        .facilities {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        
        .facility {
            background-color: var(--light-color);
            padding: 10px 15px;
            border-radius: 20px;
            font-size: 14px;
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }
        
        .gallery img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        
        .gallery img:hover {
            transform: scale(1.03);
        }
        
        .map-container {
            height: 400px;
            margin-top: 30px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .price-container {
            display: grid;
            grid-template-rows: repeat(3, auto);
            gap: 5px;
            max-width: 600px;
            margin: auto;
        }

        .price-card {
            padding: 5px;
            border-radius: 8px;
            color: white;
            font-size: 14px;
            font-weight: 300;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        }

        .price-header {
            background-color: #76999F;
            font-size: 16px;
            text-align: center;
            letter-spacing: 1px;
        }
        
        .price-header1 {
            background-color: #76999F;
            font-size: 16px;
            text-align: center;
            letter-spacing: 1px;
        }

        .price-content {
            background-color: #D8E4E6;
            color: black;
            padding: 15px;
            font-size: 17px;
            font-weight: bold;
        }

        .price-book-now {
            background-color: #BE500D;
            color: white;
            padding: 5px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: bold;
            text-align: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .price-book-now1 {
            background-color: #2C4DAC;
            color: white;
            padding: 5px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: bold;
            text-align: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .price-book-now:hover {
            background-color: #0f9f76;
        }

        @media (max-width: 500px) {
            .price-container {
                padding: 0 10px;
            }
        }
        
        .two-column-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 5px 0;
        }

        .column1 {
            flex: 1;
            min-width: 300px;
            box-sizing: border-box;
            padding: 5px;
        }

        .left {
            background-color: #ECF0F1;
        }

        .right {
            background-color: #ECF0F1;
        }

        /* Footer Styles */
        .main-footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 30px 0;
            margin-top: 50px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
            padding: 0 15px;
        }
        
        .footer-section h3 {
            color: #3498db;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }form
        
        .footer-section a:hover {
            color: #3498db;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            margin-top: 20px;
            width: 100%;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .main-header {
                padding: 5px 0;
            }
            
            .logo {
                height: 50px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: white;
                transition: all 0.3s ease;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            .main-nav.active {
                left: 0;
            }
            
            .main-nav ul {
                flex-direction: column;
            }
            
            .main-nav li {
                margin: 15px 0;
                margin-left: 0;
            }
            
            .hero-section {
                height: 100vh;
                margin-top: -30px;
            }
            
            .availability-form,
            .booking-form {
                padding: 20px;
                margin: 30px auto;
            }
            
            .form-row-horizontal,
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            
            .form-group-horizontal button {
                height: auto;
                width: 100%;
            }
            
            .two-column-container {
                flex-direction: column;
            }
        }
		   @media (max-width: 768px) {
            .booking-form {
                padding: 20px 15px;
            }
            
            .form-group {
                margin-bottom: 15px; /* Reduced from 20px for mobile */
            }
            
            .form-row {
                gap: 15px; /* Reduced gap between rows */
            }
            
            .form-col {
                flex: 1 1 100%; /* Full width columns on mobile */
            }
            
            .form-group input, 
            .form-group select {
                padding: 12px 10px; /* Slightly reduced padding */
            }
            
            .booking-summary {
                padding: 15px;
            }
            
            .summary-item {
                margin-bottom: 8px; /* Reduced spacing between summary items */
                font-size: 14px; /* Slightly smaller font */
            }
            
            button[type="submit"] {
                padding: 12px; /* Slightly reduced padding */
                font-size: 16px; /* Smaller font */
            }
        }

        /* Extra small devices (phones, 600px and down) */
        @media (max-width: 600px) {
            .form-group {
                margin-bottom: 10px; /* Even tighter spacing */
            }
            
            .form-row {
                gap: 10px; /* Tighter gap */
            }
            
            .booking-summary {
                padding: 10px;
            }
			 .form-col {
                flex: 1 1 100%; /* Full width columns on mobile */
            }
        }