* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a3a;
    --secondary-color: #d4af37;
    --accent-color: #2c5f5f;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #f8f6f3;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1e3a3a 0%, #2c5f5f 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-image {
    height: 100px; /* Enlarged from 45px for all devices */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px; 
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 8px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 12px;
    border-radius: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.cta-button {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 58, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Logo and Contact - Hidden on Desktop */
.mobile-logo{
    display: none;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 58, 0.4), rgba(44, 95, 95, 0.4)),
                url('../assets/main-view.jpeg') center/cover;
    animation: parallax 20s infinite linear;
}

@keyframes parallax {
    0% { transform: scale(1.1) translateY(0); }
    50% { transform: scale(1.15) translateY(-20px); }
    100% { transform: scale(1.1) translateY(0); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.title-line {
    display: block;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.4s;
}

.hero-scroll i {
    display: block;
    margin-top: 10px;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
.section-label {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin: 10px 0 20px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--background-light);
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 30px 0;
    line-height: 1.8;
}

.about-features {
    margin: 40px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 20px;
    height: auto;
}

.image-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Rooms Section */
.rooms {
    padding: 100px 0;
    background: var(--background-light);
}

.rooms-header {
    text-align: center;
    margin-bottom: 80px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Pricing Note - Always visible */
.pricing-note {
    margin-top: 50px;
    padding: 25px 20px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    text-align: center;
}

.pricing-note p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

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

.room-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 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-card:hover .room-overlay {
    opacity: 1;
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.room-features span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-features i {
    color: var(--secondary-color);
}

.room-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.period {
    color: var(--text-light);
}

/* Contact Section */

/* Contact Section Updates */
.contact {
    padding: 100px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    margin-top: 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44, 95, 95, 0.15);
    background: linear-gradient(135deg, #d4af37 0%, #1e3a3a 100%);
}

.map-wrapper iframe {
    display: block;
    border: none;
    width: 100%;
    height: 320px;
    filter: grayscale(20%) contrast(1.1) brightness(0.98);
}

.map-overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 58, 58, 0.85);
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(44, 95, 95, 0.15);
    pointer-events: none;
}

.map-overlay i {
    color: #d4af37;
    font-size: 1.2rem;
}

.full-width {
    width: 100%;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    border-radius: 12px;
    padding: 8px 12px;
    margin: -8px -12px;
    display: block;
}

.contact-link:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.contact-link:hover h4 {
    color: var(--secondary-color);
}

.contact-link:hover p {
    color: var(--text-dark);
}

/* Non-clickable item (address) styling for consistency */
.contact-info {
    padding: 8px 12px;
    margin: -8px -12px;
}

.contact-link-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gradient);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(44, 95, 95, 0.10);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-link-box:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44, 95, 95, 0.18);
    color: var(--secondary-color);
}

.contact-link-box i {
    font-size: 1.5rem;
    background: none;
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 100px; /* Enlarged from 50px for all devices */
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

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

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    /* Navigation Fixes - ENHANCED MOBILE DROPDOWN */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        /* Enhanced navbar-like appearance */
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-radius: 0;
        padding: 30px 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        /* Make it look more like the desktop navbar */
        border-top: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* HIDE Mobile Logo Section - No longer visible */
    .mobile-logo {
        display: none !important;
    }
    
    .mobile-logo-image,
    .mobile-logo-text,
    .mobile-logo-subtitle {
        display: none !important;
    }
    
    /* Enhanced Mobile Navigation Links - Center them without logo */
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 24px;
        margin: 8px 0;
        border-radius: 20px;
        width: 220px;
        text-align: center;
        /* Match desktop navbar styling */
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        color: var(--text-dark);
        font-weight: 500;
    }
    
    .nav-link:hover,
    .nav-link.active {
        /* Match desktop hover/active states */
        background: rgba(212, 175, 55, 0.15);
        color: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
   
    .cta-button {
        display: none;
    }
    
    /* Logos already enlarged globally - no mobile-specific overrides needed */
    
    /* Hero Section Fixes */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 100px 20px 0;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .hero-scroll {
        bottom: 30px;
    }
    
    /* Section Spacing */
    .about,
    .services,
    .rooms,
    .contact {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* About Section - MAJOR FIXES */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text {
        order: 1;
        text-align: left;
    }
    
    .about-images {
        order: 2;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.7;
        margin: 25px 0;
    }
    
    .about-features {
        margin: 30px 0;
    }
    
    .feature {
        margin-bottom: 15px;
        font-size: 0.95rem;
    }
    
    /* FIXED IMAGE GRID FOR MOBILE */
    .image-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 150px 150px;
        gap: 15px;
        height: auto;
        margin-top: 30px;
    }
    
    .image-item {
        height: 150px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .image-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    }
    
    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
        font-size: 1.6rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Rooms Section */
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .room-card.featured {
        transform: none;
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2);
        border: 2px solid rgba(212, 175, 55, 0.3);
    }
    
    .room-image {
        height: 160px;
    }
    
    .room-info {
        padding: 20px 15px;
    }
    
    .room-info h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .room-info p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .room-features {
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 12px;
    }
    
    .room-features span {
        font-size: 0.8rem;
    }
    
    .room-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .price {
        font-size: 1.4rem;
    }
    
    .period {
        font-size: 0.85rem;
    }
    
    .featured-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Pricing note mobile adjustments */
    .pricing-note {
        margin-top: 30px;
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .pricing-note p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: left;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-item {
        margin-bottom: 25px;
        padding: 15px;
        background: rgba(248, 246, 243, 0.5);
        border-radius: 12px;
        transition: var(--transition);
    }
    
    .contact-item:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: translateX(5px);
    }
    
    .contact-link {
        border-radius: 8px;
        padding: 5px 8px;
        margin: -5px -8px;
    }
    
    .map-wrapper {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .map-wrapper iframe {
        height: 280px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
        margin-bottom: 8px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Enhanced Mobile Styles for Very Small Screens */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Logos already enlarged globally - consistent across all screen sizes */
    
    .nav-link {
        width: 200px;
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    /* Hero adjustments for very small screens */
    .hero-content {
        padding: 80px 15px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .btn {
        width: 180px;
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    /* Section titles for small screens */
    .section-title {
        font-size: 1.9rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* About section for very small screens */
    .about-description {
        font-size: 0.95rem;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .image-item {
        height: 130px;
        border-radius: 10px;
    }
    
    /* Image grid for very small screens */
    .image-grid {
        grid-template-rows: 130px 130px;
        gap: 12px;
    }
    
    /* Services for small screens */
    .service-card {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Services grid for very small screens */
    .services-grid {
        gap: 15px;
    }
    
    /* Rooms for small screens */
    .rooms-grid {
        gap: 12px;
    }
    
    .room-card {
        border-radius: 12px;
    }
    
    .room-image {
        height: 140px;
    }
    
    .room-info {
        padding: 15px 12px;
    }
    
    .room-info h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .room-info p {
        font-size: 0.8rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .room-features {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .room-features span {
        font-size: 0.75rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .period {
        font-size: 0.8rem;
    }
    
    .featured-badge {
        top: 8px;
        right: 8px;
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    
    /* Pricing note for very small screens */
    .pricing-note {
        margin-top: 25px;
        padding: 15px 12px;
    }
    
    .pricing-note p {
        font-size: 0.85rem;
    }
    
    /* Contact for small screens */
    .contact-item {
        padding: 12px;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-item h4 {
        font-size: 0.95rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    /* Footer for small screens */
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-links a,
    .footer-contact p {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
}