/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 35, 71, 0.95);
    backdrop-filter: blur(10px);
}

.header-top {
    background: #0d2347;
    padding: 8px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    color: white;
    margin-right: 30px;
}

.contact-info i {
    margin-right: 8px;
    color: #007bff;
}

.social-media a {
    color: white;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #007bff;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #007bff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Completely Redesigned */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 35, 71, 0.8), rgba(30, 58, 138, 0.6));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 35, 71, 0.7), rgba(30, 58, 138, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
}

.hero-text {
    color: white;
    max-width: 500px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    backdrop-filter: blur(10px);
}

/* Booking Form - Completely Redesigned */
.booking-form-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 480px;
    width: 100%;
}

.booking-form-container h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #0d2347;
    margin-bottom: 30px;
    font-weight: 700;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Date Fields - Redesigned */
.date-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.date-field {
    display: flex;
    flex-direction: column;
}

.date-field label {
    margin-bottom: 8px;
    color: #0d2347;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-input {
    padding: 16px 18px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    position: relative;
}

.date-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

/* Guests Selection - Redesigned */
.guests-selection {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #e9ecef;
}

.guest-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
}

.guest-counter:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.guest-counter .guest-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.guest-counter .guest-icon i {
    color: white;
    font-size: 14px;
}

.guest-label {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #0d2347;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e1e5e9;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #007bff;
    transition: all 0.3s ease;
    user-select: none;
}

.counter-btn:hover {
    border-color: #007bff;
    background: #007bff;
    color: white;
    transform: scale(1.05);
}

.counter-btn:active {
    transform: scale(0.95);
}

.counter-btn.minus:disabled,
.counter-btn.plus:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.counter-value {
    font-size: 16px;
    font-weight: 700;
    color: #0d2347;
    min-width: 28px;
    text-align: center;
}

/* Search Button - Redesigned */
.search-button {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.search-button:hover::before {
    left: 100%;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
}

.search-button:active {
    transform: translateY(0);
}

/* Legacy form control styles for backward compatibility */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group i {
    margin-right: 8px;
    color: #007bff;
}

.form-control {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    background: white;
    cursor: pointer;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
}

/* Date input styling */
input[type="date"] {
    position: relative;
    cursor: pointer;
    background: white;
    color: #333;
    font-weight: 500;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23007bff' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E") no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
    cursor: pointer;
}

input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

input[type="date"]::-webkit-clear-button {
    display: none;
}

/* Mobile date input improvements */
@media (max-width: 768px) {
    input[type="date"] {
        padding: 18px 20px;
        font-size: 18px;
        min-height: 56px;
        border-radius: 12px;
        border: 3px solid #e1e5e9;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    input[type="date"]:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        transform: translateY(-1px);
    }
    
    input[type="date"]::-webkit-calendar-picker-indicator {
        background-size: 24px 24px;
        background-position: right 15px center;
    }
}

.btn-primary {
    background: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0d2347, #1e3a8a);
    padding: 150px 0 80px;
    margin-top: 120px;
    text-align: center;
    color: white;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.breadcrumb a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: #bdc3c7;
}

/* Active navigation link */
.nav-menu a.active {
    color: #007bff !important;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Page header responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
        margin-top: 80px;
    }
    
    .page-header-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .breadcrumb {
        font-size: 1rem;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 50px;
        margin-top: 70px;
    }
    
    .page-header-content h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
        gap: 6px;
    }
}

/* Popular Rooms Section */
.popular-rooms {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0d2347;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.room-features {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 10px;
}

.room-info {
    padding: 25px;
}

.room-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d2347;
    margin-bottom: 15px;
    text-align: center;
}

.room-capacity {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.capacity-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.capacity-item i {
    margin-right: 5px;
    color: #007bff;
}

.room-rating {
    text-align: center;
}

.stars {
    color: #ffc107;
    font-size: 18px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.about-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-icon i {
    font-size: 24px;
    color: white;
}

.about-content-text h3 {
    font-size: 1.5rem;
    color: #0d2347;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-content-text p {
    color: #666;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: clamp(320px, 50vh, 420px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: #0d2347;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whatsapp-btn, .call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
}

.whatsapp-btn i, .call-btn i {
    font-size: 20px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo img {
    margin-bottom: 15px;
}

.footer-logo p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #007bff;
}

.certificate img {
    max-width: 120px;
    border-radius: 8px;
}

.tursab-logo {
    width: 120px;
    height: auto;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tursab-logo:hover {
    transform: scale(1.05);
}

.contact-details p {
    color: #bdc3c7;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.contact-details i {
    margin-right: 10px;
    color: #007bff;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 20px 0;
    text-align: center;
    color: #bdc3c7;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
    }
    
    .booking-form-container {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0d2347;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content {
        padding: 100px 20px 40px;
        gap: 30px;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    .hero-features {
        gap: 20px;
        margin-top: 24px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .hero-feature i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .booking-form-container {
        padding: 30px 24px;
        border-radius: 20px;
        max-width: 100%;
        width: 95%;
        margin: 0 auto;
    }
    
    .booking-form-container h2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    
    .booking-form {
        gap: 20px;
    }
    
    .date-fields {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .date-input {
        padding: 18px 20px;
        font-size: 16px;
        min-height: 56px;
        border-radius: 15px;
        border: 3px solid #e1e5e9;
    }
    
    .date-input:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .guests-selection {
        padding: 20px;
        border-radius: 20px;
    }
    
    .guest-counter {
        padding: 18px 0;
    }
    
    .guest-counter .guest-icon {
        width: 40px;
        height: 40px;
        margin-right: 18px;
    }
    
    .guest-counter .guest-icon i {
        font-size: 16px;
    }
    
    .guest-label {
        font-size: 16px;
    }
    
    .counter-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .counter-value {
        font-size: 18px;
        min-width: 32px;
    }
    
    .search-button {
        padding: 20px 32px;
        font-size: 16px;
        border-radius: 18px;
        min-height: 64px;
        margin-top: 15px;
    }
    
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .room-card {
        margin-bottom: 15px;
    }
    
    .room-image {
        height: 220px;
    }
    
    .room-info {
        padding: 20px;
    }
    
    .room-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .room-capacity {
        gap: 15px;
        margin-bottom: 12px;
    }
    
    .capacity-item {
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info span {
        margin-right: 15px;
        font-size: 12px;
    }
    
    .social-media a {
        margin-left: 10px;
    }
    
    .popular-rooms {
        padding: 80px 0;
    }
    
    /* About and Contact mobile styles */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-section, .contact-section {
        padding: 80px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        position: static;
        margin-top: 20px;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .about-img {
        height: 300px;
    }
    
    .contact-actions {
        margin-top: 30px;
    }
    
    .whatsapp-btn, .call-btn {
        padding: 18px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header-top {
        display: none;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero-content {
        padding: 80px 16px 30px;
        gap: 24px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
        margin-top: 20px;
    }
    
    .hero-feature {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .hero-feature i {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .booking-form-container {
        margin: 0 16px;
        padding: 24px 20px;
        border-radius: 16px;
        max-width: none;
        width: calc(100% - 32px);
    }
    
    .booking-form-container h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .booking-form {
        gap: 18px;
    }
    
    .date-input {
        padding: 16px 18px;
        font-size: 16px;
        min-height: 52px;
        border-radius: 12px;
    }
    
    .guests-selection {
        padding: 18px;
        border-radius: 16px;
    }
    
    .guest-counter {
        padding: 16px 0;
    }
    
    .guest-counter .guest-icon {
        width: 36px;
        height: 36px;
        margin-right: 16px;
    }
    
    .guest-counter .guest-icon i {
        font-size: 14px;
    }
    
    .guest-label {
        font-size: 15px;
    }
    
    .counter-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .counter-value {
        font-size: 16px;
        min-width: 28px;
    }
    
    .search-button {
        padding: 18px 28px;
        font-size: 15px;
        border-radius: 16px;
        min-height: 56px;
        width: 100%;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .room-card {
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .room-image {
        height: 200px;
    }
    
    .room-info {
        padding: 18px;
    }
    
    .room-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .room-capacity {
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .capacity-item {
        font-size: 12px;
    }
    
    .price-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .room-features {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .popular-rooms {
        padding: 60px 0;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .contact-details p {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .room-card {
        transition: transform 0.2s ease;
    }
    
    .room-card:active {
        transform: scale(0.98);
    }
    
    .btn-primary:active {
        transform: scale(0.98);
    }
    
    .nav-menu a {
        padding: 15px 0;
        font-size: 16px;
    }
    
    .hamburger {
        padding: 10px;
    }
    
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px; /* iOS touch target minimum */
    }
    
    .btn-primary {
        min-height: 44px;
        font-size: 16px;
    }
    
    .counter-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .date-input {
        font-size: 16px;
        min-height: 44px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    /* Enhanced form controls for mobile */
    .form-control, select.form-control {
        padding: 18px 20px;
        font-size: 18px;
        min-height: 56px;
        border-radius: 12px;
        border: 3px solid #e1e5e9;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    select.form-control {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23007bff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 20px center;
        background-size: 20px;
        padding-right: 60px;
    }
    
    .form-control:focus, select.form-control:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        transform: translateY(-1px);
    }
    
    .form-group label {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #0d2347;
    }
    
    .booking-form {
        gap: 25px;
    }
    
    /* Better mobile navigation */
    .nav-menu {
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    /* Sticky booking button for mobile */
    .btn-primary {
        position: sticky;
        bottom: 20px;
        z-index: 100;
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
        margin-top: 20px;
        padding: 20px 30px;
        font-size: 18px;
        min-height: 60px;
        border-radius: 15px;
    }
    
    /* Better spacing for mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Better room card layout */
    .room-card {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .room-card:hover {
        transform: none; /* Disable hover effects on mobile */
    }
    
    /* Improved hero section for mobile */
    .hero-background {
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    /* Better modal experience */
    .modal-content {
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    /* Extra mobile form improvements */
    .booking-form-container {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* Mobile-specific hero adjustments */
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-features {
        margin-top: 16px;
    }
    
    .hero-feature {
        font-size: 0.85rem;
    }
    
    .hero-feature i {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .booking-form-container {
        margin: 0 12px;
        padding: 20px 16px;
        border-radius: 14px;
    }
    
    .booking-form-container h2 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .booking-form {
        gap: 16px;
    }
    
    .date-input {
        padding: 14px 16px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .guests-selection {
        padding: 16px;
    }
    
    .guest-counter {
        padding: 14px 0;
    }
    
    .guest-counter .guest-icon {
        width: 32px;
        height: 32px;
        margin-right: 14px;
    }
    
    .guest-counter .guest-icon i {
        font-size: 12px;
    }
    
    .guest-label {
        font-size: 14px;
    }
    
    .counter-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .counter-value {
        font-size: 14px;
        min-width: 24px;
    }
    
    .search-button {
        padding: 16px 24px;
        font-size: 14px;
        border-radius: 14px;
        min-height: 52px;
    }
}

/* Landscape phone optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding-top: 80px;
        padding-bottom: 30px;
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hero-features {
        flex-direction: row;
        gap: 20px;
        margin-top: 15px;
    }
    
    .booking-form-container {
        padding: 20px;
        max-width: 400px;
    }
    
    .booking-form {
        gap: 15px;
    }
    
    .date-fields {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .guests-selection {
        padding: 16px;
    }
    
    .guest-counter {
        padding: 12px 0;
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    .hero-content {
        padding: 70px 12px 25px;
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .hero-features {
        gap: 12px;
        margin-top: 15px;
    }
    
    .hero-feature {
        font-size: 0.8rem;
    }
    
    .hero-feature i {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .booking-form-container {
        margin: 0 12px;
        padding: 20px 16px;
        border-radius: 14px;
    }
    
    .booking-form-container h2 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .booking-form {
        gap: 16px;
    }
    
    .date-input {
        padding: 14px 16px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .guests-selection {
        padding: 16px;
    }
    
    .guest-counter {
        padding: 14px 0;
    }
    
    .guest-counter .guest-icon {
        width: 32px;
        height: 32px;
        margin-right: 14px;
    }
    
    .guest-counter .guest-icon i {
        font-size: 12px;
    }
    
    .guest-label {
        font-size: 14px;
    }
    
    .counter-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .counter-value {
        font-size: 14px;
        min-width: 24px;
    }
    
    .search-button {
        padding: 16px 24px;
        font-size: 14px;
        border-radius: 14px;
        min-height: 52px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.room-card {
    animation: fadeInUp 0.6s ease-out;
}

.room-card:nth-child(2) {
    animation-delay: 0.1s;
}

.room-card:nth-child(3) {
    animation-delay: 0.2s;
}

.room-card:nth-child(4) {
    animation-delay: 0.3s;
}
