        :root {
            --primary-red: #d32f2f;
            --dark-red: #b71c1c;
            --light-red: #ff6659;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --text-dark: #333333;
            --text-light: #757575;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-red);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--text-dark);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary-red);
        }
        
        .auth-buttons a {
            text-decoration: none;
            margin-left: 15px;
        }
        
        .btn {
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .btn-login {
            background: transparent;
            color: var(--primary-red);
            border: 1px solid var(--primary-red);
        }
        
        .btn-login:hover {
            background: var(--primary-red);
            color: var(--white);
        }
        
        .btn-signup {
            background: var(--primary-red);
            color: var(--white);
            border: 1px solid var(--primary-red);
        }
        
        .btn-signup:hover {
            background: var(--dark-red);
            border-color: var(--dark-red);
        }
        
        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
        }
        
        .menu-toggle span {
            height: 3px;
            width: 100%;
            background-color: var(--primary-red);
            border-radius: 3px;
            transition: all 0.3s;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://img-cdn.publive.online/fit-in/1200x675/30-stades/media/media_files/LCuf7fEWT2UhvoGg8H2R.jpg');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        /* Search Form */
        .search-form {
            background: var(--white);
            border-radius: 8px;
            padding: 30px;
            margin-top: -40px;
            position: relative;
            z-index: 10;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .form-group input, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .btn-search {
            background: var(--primary-red);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
        }
        
        .btn-search:hover {
            background: var(--dark-red);
        }
        
        /* Featured Hotels */
        .section-title {
            text-align: center;
            margin: 60px 0 40px;
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: var(--text-dark);
        }
        
        .section-title span {
            color: var(--primary-red);
        }
        
        .hotel-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .hotel-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .hotel-card:hover {
            transform: translateY(-5px);
        }
        
        .hotel-image {
            height: 200px;
            overflow: hidden;
        }
        
        .hotel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .hotel-card:hover .hotel-image img {
            transform: scale(1.1);
        }
        
        .hotel-details {
            padding: 20px;
        }
        
        .hotel-name {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        
        .hotel-location {
            color: var(--text-light);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .hotel-location i {
            color: var(--primary-red);
            margin-right: 5px;
        }
        
        .hotel-features {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        
        .feature {
            display: flex;
            align-items: center;
        }
        
        .feature i {
            color: var(--primary-red);
            margin-right: 5px;
        }
        
        .hotel-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price {
            font-weight: 700;
            font-size: 22px;
            color: var(--primary-red);
        }
        
        .price span {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 400;
        }
        
        .btn-book {
            background: var(--primary-red);
            color: var(--white);
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .btn-book:hover {
            background: var(--dark-red);
        }
        
        /* Testimonials */
        .testimonials {
            background: var(--light-gray);
            padding: 60px 0;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: var(--white);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--text-dark);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-details h4 {
            color: var(--text-dark);
            margin-bottom: 5px;
        }
        
        .author-details p {
            color: var(--text-light);
            font-size: 14px;
        }
        
        .rating {
            color: #ffc107;
            margin-top: 5px;
        }
        
        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--white);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-red);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-red);
        }
        
        .footer-column p {
            color: #ccc;
            margin-bottom: 20px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            color: var(--white);
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin: 20px 0;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 15px 10px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .search-form {
                margin-top: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .header-content {
                flex-direction: row;
                justify-content: space-between;
            }
            
            nav {
                display: none;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background: var(--white);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                padding: 20px;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                margin: 0;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .auth-buttons {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .hero {
                height: 400px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .hotel-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .social-icons {
                justify-content: center;
            }
        }

    .hotel-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .hotel-card {
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .hotel-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }
    
    .hotel-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }
    
    .hotel-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .hotel-card:hover .hotel-image img {
        transform: scale(1.05);
    }
    
    .room-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--primary-red);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .hotel-details {
        padding: 20px;
    }
    
    .hotel-name {
        font-size: 20px;
        margin-bottom: 10px;
        color: var(--text-dark);
        font-weight: 700;
    }
    
    .hotel-location {
        color: var(--text-light);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    
    .hotel-location i {
        color: var(--primary-red);
        margin-right: 8px;
    }
    
    .room-features {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    
    .feature {
        display: flex;
        align-items: center;
        font-size: 14px;
        color: var(--text-light);
    }
    
    .feature i {
        color: var(--primary-red);
        margin-right: 8px;
        font-size: 14px;
    }
    
    .room-rating {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .stars {
        color: #ffc107;
        font-size: 14px;
    }
    
    .rating-value {
        font-size: 14px;
        color: var(--text-light);
        font-weight: 500;
    }
    
    .hotel-price {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .price {
        font-weight: 700;
        font-size: 22px;
        color: var(--primary-red);
    }
    
    .price span {
        font-size: 14px;
        color: var(--text-light);
        font-weight: 400;
    }
    
    .btn-book {
        background: var(--primary-red);
        color: var(--white);
        border: none;
        padding: 10px 18px;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.3s ease;
        font-weight: 600;
        font-size: 14px;
    }
    
    .btn-book:hover {
        background: var(--dark-red);
    }
    
    @media (max-width: 768px) {
        .hotel-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }
