:root {
    /* Color Palette - Premium Crimson Maroon & Warm Gold */
    --primary-color: #881337; /* Deep Maroon / Crimson */
    --primary-light: #a71d2a;
    --primary-dark: #4c0519;
    --accent-gold: #f59e0b; /* Warm Gold */
    --accent-gold-light: #fbbf24;
    --btn-red: #a71d2a;
    --btn-red-hover: #881337;
    --whatsapp-color: #25D366;
    
    --text-main: #1f2937;
    --text-light: #4b5563;
    --bg-main: #ffffff;
    --bg-light: #fafaf9;
    --bg-dark: #111827;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 14px 30px rgba(0,0,0,0.12);
    
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.grid {
    display: grid;
    gap: 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

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

.bg-light {
    background-color: var(--bg-light);
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--btn-red);
    color: white;
    box-shadow: 0 4px 12px rgba(167, 29, 42, 0.35);
}

.btn-primary:hover {
    background-color: var(--btn-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(167, 29, 42, 0.45);
}

.btn-call-now {
    background-color: var(--btn-red);
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(167, 29, 42, 0.3);
}

.btn-call-now:hover {
    background-color: var(--btn-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(167, 29, 42, 0.4);
}

.btn-hero-primary {
    background-color: var(--btn-red);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(167, 29, 42, 0.45);
    border: 2px solid var(--btn-red);
}

.btn-hero-primary:hover {
    background-color: var(--btn-red-hover);
    border-color: var(--btn-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(167, 29, 42, 0.55);
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 10, 14, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
    padding: 14px 0;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(15, 8, 12, 0.96);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-badge {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--btn-red) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(167, 29, 42, 0.4);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.2px;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.1;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #120a0e;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Hero Section (Matching Reference Image) */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(64, 10, 18, 0.88) 0%, rgba(20, 8, 12, 0.86) 100%), url('assets/hero-bg.png') center/cover no-repeat;
    color: white;
    padding-top: 140px;
    padding-bottom: 70px;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Rating Badge */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 6px 18px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.rating-badge .stars {
    color: var(--accent-gold);
    display: flex;
    gap: 2px;
    font-size: 0.85rem;
}

.rating-score {
    font-weight: 700;
    color: #ffffff;
}

.rating-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Headline matching reference image */
.hero-title {
    font-family: var(--font-heading);
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
}

.highlight-gold {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-weight: 800;
    font-style: normal;
    display: inline-block;
}

.hero .tagline {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
}

.hero-address {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-address i {
    color: var(--accent-gold);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.quick-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.highlight-item i {
    color: var(--accent-gold);
}

/* About / Why Choose Us */
.about-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.about-card:hover .icon-circle {
    background: var(--primary-color);
    color: white;
}

.about-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.35rem;
}

/* Amenities */
.amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.amenity-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.amenity-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-left-color: var(--accent-gold);
}

.amenity-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.amenity-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

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

/* Rooms */
.rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.room-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.room-image {
    height: 200px;
    background-color: #ddd;
    position: relative;
    background-size: cover;
    background-position: center;
}

.room-2 { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('https://images.unsplash.com/photo-1522771731478-44eb10e52834?auto=format&fit=crop&w=600&q=80'); }
.room-3 { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('https://images.unsplash.com/photo-1555854877-bab0e564b8d5?auto=format&fit=crop&w=600&q=80'); }
.room-4 { background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&w=600&q=80'); }

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--btn-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-value {
    background: var(--accent-gold);
    color: #120a0e;
}

.room-content {
    padding: 25px;
}

.room-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

.room-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    min-height: 65px;
}

.room-features {
    margin-bottom: 25px;
}

.room-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.room-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price-placeholder {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #eee;
}

.open-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--whatsapp-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-card h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.map-container {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid #eee;
}

.contact-form-container h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(136, 19, 55, 0.12);
}

.form-success {
    margin-top: 20px;
    padding: 15px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 500;
}

.hidden {
    display: none;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding-top: 60px;
}

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

.footer-logo {
    color: white;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #aaa;
    font-style: italic;
    font-family: var(--font-heading);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-heading);
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links a {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #0a0709;
    padding: 20px 0;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 3.25rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 130px;
        padding-bottom: 50px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }

    .hero .tagline {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .quick-highlights {
        display: none;
    }

    .contact-actions {
        flex-direction: column;
    }
}
