:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --gold: #c9a84c;
    --dark-gold: #a8893a;
    --teal: #2a9d8f;
    --dark-teal: #1f7a6f;
    --navy: #1a2a3a;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

* {
    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;
}

/* ============================================
   HEADER
   ============================================ */

.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);
}

/* ============================================
   BRAND NEW HERO DESIGN
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    height: 80vh;
    background-image: url('images/hill-county-resort-manali-main.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: -80px;
    padding: 40px 5% 40px 5%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

/* --- Hero Content Area --- */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1350px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

/* --- Title & Subtitle (NOW ABOVE THE FORM, CLEARLY VISIBLE) --- */
.hero-title-wrapper {
    text-align: right;
    margin-bottom: 20px;
    padding-right: 10px;
    width: 100%;
    max-width: 400px;
}

.hero-title-wrapper h1 {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-title-wrapper p {
    font-size: 16px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 5px 0 0 0;
    font-weight: 400;
    opacity: 0.9;
}

/* --- AVAILABILITY FORM (Compact, Transparent, Floating) --- */
.availability-form {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    width: 340px;
    max-width: 340px;
    flex: 0 0 auto;
    padding: 20px 20px 22px 20px;
    border-radius: 16px;
    
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- Form Fields --- */
.form-group-vertical {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group-vertical label {
    display: block;
    margin: 0 0 2px 4px;
    font-weight: 600;
    font-size: 11px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.form-group-vertical input,
.form-group-vertical select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a2a3a;
    transition: all 0.3s ease;
    height: 38px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-group-vertical input:focus,
.form-group-vertical select:focus {
    outline: none;
    border-color: #c9a84c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.25);
}

/* --- Submit Button --- */
.form-group-vertical button {
    width: 100%;
    padding: 10px 0;
    margin-top: 4px;
    background: #c9a84c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
    height: 42px;
    letter-spacing: 0.5px;
}

.form-group-vertical button:hover {
    background: #a8893a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.4);
}

/* --- Availability Result --- */
.availability-result {
    margin-top: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    display: none;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
}

#availability-message {
    margin-bottom: 6px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

#book-now-btn {
    padding: 6px 16px;
    background: #2a9d8f;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(42, 157, 143, 0.25);
}

#book-now-btn:hover {
    background: #1f7a6f;
    transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE HERO
   ============================================ */

/* Tablet - Keep form compact but centered */
@media (max-width: 1024px) {
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 80px 20px 40px 20px;
        justify-content: center;
        align-items: flex-end;
    }
    .hero-content {
        align-items: center;
    }
    .hero-title-wrapper {
        text-align: center;
        max-width: 100%;
        padding-right: 0;
    }
    .hero-title-wrapper h1 {
        font-size: 30px;
    }
    .availability-form {
        width: 340px;
        max-width: 340px;
    }
}

/* Mobile - Compact card, NOT full screen */
@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 {
        min-height: 400px;
        margin-top: -70px;
        padding: 70px 15px 25px 15px;
        justify-content: center;
        align-items: center;
        background-position: center bottom;
    }
    .hero-content {
        align-items: center;
        justify-content: center;
    }
    
    .hero-title-wrapper {
        text-align: center;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 12px;
    }
    .hero-title-wrapper h1 {
        font-size: 22px;
    }
    .hero-title-wrapper p {
        font-size: 13px;
    }
    
    /* Mobile Form - Narrow & Compact */
    .availability-form {
        width: 280px; /* Narrower on mobile */
        max-width: 280px;
        padding: 14px 16px 16px 16px;
        border-radius: 12px;
        gap: 6px;
    }
    
    .form-group-vertical label {
        font-size: 10px;
        margin-bottom: 1px;
    }
    
    .form-group-vertical input,
    .form-group-vertical select {
        padding: 6px 8px;
        font-size: 12px;
        height: 30px;
        border-radius: 6px;
    }
    
    .form-group-vertical button {
        padding: 8px 0;
        font-size: 13px;
        height: 34px;
        border-radius: 6px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-section {
        min-height: 350px;
        padding: 60px 10px 20px 10px;
    }
    .hero-title-wrapper h1 {
        font-size: 18px;
    }
    .hero-title-wrapper p {
        font-size: 11px;
    }
    .availability-form {
        width: 100%; /* Full width only on very small screens */
        max-width: 100%;
        padding: 12px 12px 14px 12px;
        border-radius: 10px;
    }
    .form-group-vertical input,
    .form-group-vertical select {
        padding: 5px 7px;
        font-size: 11px;
        height: 28px;
    }
    .form-group-vertical button {
        padding: 7px 0;
        font-size: 12px;
        height: 30px;
    }
}

/* ============================================
   REST OF THE PAGE (UNCHANGED)
   ============================================ */

.booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    margin-top: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

.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: var(--gold);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.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: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.booking-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.booking-summary h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    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: 2px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
}

.total span:last-child {
    color: var(--gold);
    font-size: 20px;
}

button[type="submit"] {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
    margin-top: 20px;
}

button[type="submit"]:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.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: #f8f9fa;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.room-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.room-category {
    flex: 1 1 300px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.room-category:hover {
    transform: translateY(-5px);
}

.room-category h3 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.facility {
    background: var(--teal);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(42, 157, 143, 0.2);
    transition: transform 0.3s ease;
}

.facility:hover {
    transform: scale(1.05);
}

.facility:nth-child(2) { background: #e67e22; }
.facility:nth-child(3) { background: #2980b9; }
.facility:nth-child(4) { background: #27ae60; }
.facility:nth-child(5) { background: #8e44ad; }
.facility:nth-child(6) { background: #d35400; }
.facility:nth-child(7) { background: #c0392b; }
.facility:nth-child(8) { background: #16a085; }
.facility:nth-child(9) { background: #2c3e50; }
.facility:nth-child(10) { background: #f39c12; }
.facility:nth-child(11) { background: #1abc9c; }
.facility:nth-child(12) { background: #9b59b6; }

.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: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-container {
    height: 400px;
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.price-container {
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 6px;
    max-width: 600px;
    margin: auto;
    margin-bottom: 12px;
}

.price-card {
    padding: 10px 8px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.price-header {
    background: var(--navy);
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.5px;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
}

.price-header1 {
    background: var(--teal);
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.5px;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
}

.price-content {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 500;
    border-left: 3px solid var(--navy);
    border-right: 3px solid var(--navy);
}

.price-content span {
    font-weight: 700;
    font-size: 17px;
    color: var(--gold);
}

.price-book-now {
    background: var(--gold);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 0 0 8px 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(201, 168, 76, 0.2);
    display: block;
    text-decoration: none;
}

.price-book-now:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

.price-book-now1 {
    background: var(--teal);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 0 0 8px 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(42, 157, 143, 0.2);
    display: block;
    text-decoration: none;
}

.price-book-now1:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

.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;
    border-radius: 12px;
    overflow: hidden;
}

.right {
    background-color: #ECF0F1;
    border-radius: 12px;
    padding: 20px;
}

.main-footer {
    background: var(--navy);
    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: var(--gold);
    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;
}

.footer-section a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    margin-top: 20px;
    width: 100%;
}

.social-links a {
    color: #bdc3c7;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--gold);
}