/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Serene Waters Palette - Luxury Hotel Theme */
    --primary-color: #004D40;        /* Deep Teal - Logo primary */
    --secondary-color: #00796B;      /* Rich Turquoise - Sections */
    --accent-color: #1DE9B6;         /* Light Aqua - Highlights/CTAs */
    --accent-soft: #E0F7FA;          /* Soft Aqua - Backgrounds */
    --dark-color: #004D40;           /* Deep Teal for dark elements */
    --light-bg: #FFFFFF;             /* White */
    --gray-light: #F5F5F5;           /* Light Gray */
    --gray-medium: #808080;          /* Medium Gray */
    --text-color: #263238;           /* Dark Blue-Gray for better readability */
    --text-light: #546E7A;           /* Light text for secondary content */
    --font-family: 'Mulish', sans-serif;
    --shadow: 0px 4px 16px rgba(0, 77, 64, 0.15);
    --shadow-hover: 0px 8px 30px rgba(0, 77, 64, 0.25);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #004D40 0%, #00796B 50%, #1DE9B6 100%);
    --gradient-soft: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background: var(--light-bg);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1.2rem 4%;
    transition: var(--transition);
    overflow: visible;
}

.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
    display: block;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.042rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    background: var(--accent-soft);
}

.header-phone:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.header-phone svg {
    stroke: currentColor;
    flex-shrink: 0;
}

.header-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    background: #E8F5E9;
}

.header-whatsapp:hover {
    background: #25D366;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.header-whatsapp svg {
    fill: currentColor;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 121, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 233, 182, 0.4);
    background: linear-gradient(135deg, #00796B 0%, #1DE9B6 50%, #4FFFDC 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-hero {
    background: white;
    color: var(--text-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 77, 64, 0.4) 0%, rgba(0, 77, 64, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-badge svg {
    stroke: white;
    flex-shrink: 0;
}

.feature-badge i {
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
}

/* Introduction Section */
.intro-section {
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Rooms Section */
.rooms-section {
    background: white;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.room-card.featured {
    border: 3px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(29, 233, 182, 0.2);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 77, 64, 0.3);
}

.room-details {
    padding: 1.5rem;
}

.room-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.room-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.spec-item svg {
    stroke: var(--secondary-color);
}

.room-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.room-amenities span {
    background: var(--accent-soft);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Gallery Section */
.gallery-section {
    background: var(--accent-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 77, 64, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    box-shadow: var(--shadow-hover);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
}

.lightbox-counter {
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0, 77, 64, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Amenities Section */
.amenities-section {
    background: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid var(--accent-soft);
}

.amenity-card:hover {
    background: var(--accent-soft);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.amenity-icon {
    margin-bottom: 1rem;
}

.amenity-icon svg {
    stroke: var(--secondary-color);
}

.amenity-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.amenity-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.amenity-card p {
    font-size: 0.95rem;
    color: var(--gray-medium);
}

/* Location Section */
.location-section {
    background: var(--accent-soft);
}

.location-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 3rem;
    color: var(--text-color);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.location-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-left: 4px solid var(--accent-color);
}

.location-item svg {
    stroke: var(--secondary-color);
    flex-shrink: 0;
}

.location-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    transition: var(--transition);
}

.location-item:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.location-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.location-item p {
    font-size: 0.95rem;
    color: var(--gray-medium);
}

.location-map {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-map iframe:hover {
    box-shadow: var(--shadow-hover);
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item svg {
    stroke: var(--secondary-color);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.contact-form {
    background: var(--accent-soft);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

.contact-form button {
    width: 100%;
}

/* Form Validation Styles */
.error-message {
    display: block;
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: -0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.error-input {
    border-color: #d32f2f !important;
    background-color: #ffebee;
}

.error-input:focus {
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1) !important;
}

input.valid,
textarea.valid,
select.valid {
    border-color: #00796B !important;
}

/* jQuery UI Datepicker Customization */
.ui-datepicker {
    font-family: var(--font-family);
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    border: none;
}

.ui-datepicker-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px 10px 0 0;
    border: none;
}

.ui-datepicker-title {
    color: white;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    cursor: pointer;
}

.ui-datepicker-prev span,
.ui-datepicker-next span {
    background-image: none;
    color: white;
}

.ui-state-default {
    border: 1px solid #ddd;
    background: white;
    text-align: center;
}

.ui-state-hover {
    background: var(--accent-soft);
    border-color: var(--secondary-color);
}

.ui-state-active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.ui-datepicker td span,
.ui-datepicker td a {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--text-color);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

.form-group .error-message {
    margin-top: 0.25rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-content img {
        max-height: 70vh;
    }

    .header-container {
        grid-template-columns: auto 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        box-shadow: var(--shadow);
        transition: var(--transition);
        padding: 2rem;
        grid-column: 1 / -1;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-actions {
        gap: 0.5rem;
        justify-content: flex-end;
        margin-left: auto;
    }

    .header-phone span {
        display: none;
    }

    .header-phone {
        padding: 0.5rem;
    }

    .header-whatsapp span {
        display: none;
    }

    .header-whatsapp {
        padding: 0.5rem;
    }

    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .location-map iframe {
        height: 400px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
    }

    .lightbox-caption {
        font-size: 1rem;
    }

    .header {
        padding: 1rem 3%;
    }

    .header-container {
        gap: 0.5rem;
        grid-template-columns: auto 1fr;
    }

    .header-actions {
        gap: 0.3rem;
        justify-content: flex-end;
        margin-left: auto;
    }

    .btn-primary {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .btn-hero {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero {
        height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .rooms-grid,
    .gallery-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .location-map iframe {
        height: 350px;
        border-radius: 10px;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}

/* Extra small devices (phones in portrait mode) */
@media (max-width: 480px) {
    .header {
        padding: 0.8rem 2%;
    }

    .header-container {
        gap: 0.3rem;
        grid-template-columns: auto 1fr;
    }

    .header-actions {
        gap: 0.2rem;
        justify-content: flex-end;
        margin-left: auto;
    }

    .btn-primary {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .logo img {
        max-height: 40px;
    }

    .hero-title {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .btn-hero {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .feature-badge {
        font-size: 0.85rem;
    }
}

