:root {
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    
    --primary-gold: #d4a853;
    --primary-amber: #f59e0b;
    
    --text-white: #fafafa;
    --text-gray: #a1a1aa;
    --border-gray: #3f3f46;
    
    --font-main: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
    padding: 1.25rem 0;
    background: linear-gradient(to bottom, rgba(24, 24, 27, 0.8), transparent);
}

#header.scrolled {
    background-color: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: #27272a; /* zinc-800 */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: border-color 0.3s;
}

.logo:hover .logo-icon {
    border-color: var(--primary-amber);
}

.logo-text {
    display: none;
    flex-direction: column;
    line-height: 1;
}

@media (min-width: 640px) {
    .logo-text {
        display: flex;
    }
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
}

.brand-number {
    font-size: 0.75rem;
    color: var(--primary-amber);
    vertical-align: super;
    margin-left: 0.1rem;
}

.brand-subtitle {
    font-size: 0.625rem;
    color: #a1a1aa; /* zinc-400 */
    letter-spacing: 0.2em;
    margin-top: -0.2rem;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d4d4d8; /* zinc-300 */
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-amber);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-amber);
    transition: width 0.3s ease;
}

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

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

.phone-link {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #a1a1aa; /* zinc-400 */
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--primary-amber);
}

@media (min-width: 768px) {
    .phone-link {
        display: flex;
    }
}

@media (min-width: 1280px) {
    .hidden-xl {
        display: inline;
    }
}

.btn-cta {
    display: none;
    background: linear-gradient(to right, #f59e0b, #d97706); /* amber-500 to amber-600 */
    color: #18181b; /* zinc-900 */
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-cta:hover {
    background: linear-gradient(to right, #d97706, #b45309);
    transform: none;
    box-shadow: none;
}

@media (min-width: 768px) {
    .btn-cta {
        display: block;
    }
}

#mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0.5rem;
    transition: color 0.3s;
}

#mobile-menu-btn:hover {
    color: var(--primary-amber);
}

@media (min-width: 1024px) {
    #mobile-menu-btn {
        display: none;
    }
}

.hidden {
    display: none !important;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 18rem; /* 72 = 18rem */
    background: #18181b; /* zinc-900 */
    z-index: 999;
    padding: 5rem 1.5rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-link {
    padding: 0.75rem 1rem;
    text-align: left;
    color: #d4d4d8; /* zinc-300 */
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    transition: all 0.2s;
}

.mobile-link:hover, .mobile-link.active {
    color: var(--primary-amber);
    background: rgba(39, 39, 42, 0.5); /* zinc-800/50 */
}

.mobile-divider {
    border: 0;
    border-top: 1px solid #27272a; /* zinc-800 */
    margin: 1rem 0;
}

.mobile-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #a1a1aa; /* zinc-400 */
    transition: color 0.3s;
}

.mobile-contact:hover {
    color: var(--primary-amber);
}

.mobile-btn-cta {
    display: block;
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(to right, #f59e0b, #d97706); /* amber-500 to amber-600 */
    color: #18181b; /* zinc-900 */
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: none;
    transition: var(--transition);
    cursor: pointer;
}

.mobile-btn-cta:hover {
    background: linear-gradient(to right, #d97706, #b45309);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/images/hero-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax simple */
}

/* Mobile Hero Fix */
@media (max-width: 768px) {
    .hero, .page-hero {
        background-attachment: scroll !important;
        height: auto;
        min-height: 100vh;
        padding-top: 80px; /* Space for header */
    }
}

.page-hero {
    height: 70vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/images/hero-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(24, 24, 27, 0.7), rgba(24, 24, 27, 0.5), #09090b);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(24, 24, 27, 0.6), transparent, rgba(24, 24, 27, 0.6));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding-top: 2rem;
}

/* New Hero Styles */
.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    margin-bottom: 1.5rem;
}

.location-pill span {
    color: var(--primary-amber);
    font-weight: 500;
    font-size: 0.875rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.1s;
}

.hero-title span {
    display: block;
}

.hero-title span:first-child {
    color: white;
}

.hero-title span:last-child {
    color: var(--primary-amber);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero p {
    font-size: 1.125rem;
    color: #d4d4d8; /* zinc-300 */
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.hero-features-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

@media (min-width: 768px) {
    .hero-features-strip {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        margin-top: 4rem;
    }
}

.feature-item {
    text-align: center;
}

.feature-item p:first-child {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-amber);
    margin-bottom: 0.25rem;
}

.feature-item p:last-child {
    font-size: 0.875rem;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .feature-item p:first-child {
        font-size: 1.5rem;
    }
}

/* Fixed Booking Bar */
.fixed-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f4f4f5; /* zinc-100 */
    border-top: 1px solid #e4e4e7; /* zinc-200 */
    padding: 0.75rem 1rem;
    z-index: 1000;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 1024px) {
    #booking-form {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        background: none;
        box-shadow: none;
        padding: 0;
        border: none;
        backdrop-filter: none;
    }
}

.booking-item {
    flex: 1;
    min-width: 0; /* Allow shrinking */
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #d4d4d8; /* zinc-300 */
    border-radius: 0.25rem;
    padding: 0 0.75rem;
    height: 3rem;
    transition: all 0.2s;
}

.input-wrapper:focus-within {
    border-color: var(--primary-amber);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.input-wrapper svg {
    color: var(--primary-amber);
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.input-wrapper input,
.input-wrapper select {
    border: none;
    background: transparent;
    width: 100%;
    height: 100%;
    color: #18181b; /* zinc-900 */
    font-size: 0.875rem;
    padding: 0;
    outline: none;
    box-shadow: none; /* Reset */
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Specific styling for date inputs to look clean */
input[type="date"] {
    font-family: inherit;
    color: #18181b;
}

.btn-fixed-search {
    background: var(--primary-amber);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0 1.5rem;
    height: 3rem;
    border-radius: 0.25rem;
    white-space: nowrap;
    transition: background 0.3s;
    width: 100%;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .btn-fixed-search {
        width: auto;
    }
}

.btn-fixed-search:hover {
    background: #d97706; /* amber-600 */
}

/* Children Ages Popover */
.children-ages-popover {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e4e4e7;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 1rem;
    width: max-content;
    z-index: 1001;
}

.children-ages-popover.hidden {
    display: none;
}

#floating-cta {
    display: none !important;
}

/* Mobile Adjustments */
@media (max-width: 1023px) {
    .fixed-booking-bar {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        background: #18181b; /* zinc-900 */
        padding: 1.5rem;
        margin-top: -2rem; /* Pull up into hero */
        z-index: 40;
        border-radius: 0;
        box-shadow: none;
    }

    #booking-form {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        min-width: 0;
    }

    .booking-item {
        width: 100%;
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 1rem;
    }

    .booking-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .btn-fixed-search {
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
    }
    
    /* Adjust input/select styles for mobile */
    .input-wrapper input,
    .input-wrapper select {
        width: 100%;
        font-size: 1rem; /* Prevent zoom on iOS */
    }
}

/* Custom Calendar Icon for Input */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.4) sepia(1) saturate(3) hue-rotate(10deg);
    cursor: pointer;
}

.scroll-down {
    position: absolute;
    bottom: 5rem; /* Adjusted for fixed bar */
    left: 50%;
    transform: translateX(-50%);
    color: #a1a1aa; /* zinc-400 */
    transition: color 0.3s;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 1s, bounce 1.5s infinite 1s;
    cursor: pointer;
}

.scroll-down:hover {
    color: var(--primary-amber);
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* Accommodations */
.section-subtitle {
    display: block;
    color: var(--primary-amber);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.room-card {
    background: #18181b; /* zinc-900 */
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #27272a; /* zinc-800 */
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-5px);
}

.room-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #18181b, transparent);
    pointer-events: none;
}

.room-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #3f3f46; /* zinc-700 */
    color: #f4f4f5; /* zinc-100 */
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.room-tag.highlight {
    background: #f4f4f5; /* zinc-100 */
    color: #18181b; /* zinc-900 */
}

.room-tag.gold {
    background: var(--primary-amber);
    color: #18181b; /* zinc-900 */
}

.room-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    font-family: var(--font-main); /* Changed to Inter based on design */
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.room-card:hover h3 {
    color: var(--primary-amber);
}

.room-description {
    color: #a1a1aa; /* zinc-400 */
    font-size: 0.875rem;
    margin-bottom: 1rem;
    flex: 1;
}

.room-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #71717a; /* zinc-500 */
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.text-amber-500 {
    color: var(--primary-amber);
}

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

.amenity-tag {
    font-size: 0.75rem;
    background: #27272a; /* zinc-800 */
    color: #a1a1aa; /* zinc-400 */
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.group-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-color: rgba(245, 158, 11, 0.5);
    color: var(--primary-amber);
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.group-btn:hover {
    background: var(--primary-amber);
    color: #18181b; /* zinc-900 */
}

.arrow-icon {
    transition: transform 0.3s;
}

.group-btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* View All CTA */
.view-all-container {
    text-align: center;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.5s;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #f59e0b, #d97706); /* amber-500 to amber-600 */
    color: #18181b; /* zinc-900 */
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-view-all:hover {
    background: linear-gradient(to right, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-view-all svg {
    transition: transform 0.3s;
}

.btn-view-all:hover svg {
    transform: translateX(4px);
}
/* Services */
.bg-decoration {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background: rgba(245, 158, 11, 0.05); /* amber-500/5 */
    border-radius: 9999px;
    filter: blur(64px);
    pointer-events: none;
}

.bg-decoration.top-right {
    top: 0;
    right: 0;
}

.bg-decoration.bottom-left {
    bottom: 0;
    left: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.service-card {
    background: rgba(39, 39, 42, 0.5); /* zinc-800/50 */
    backdrop-filter: blur(4px);
    border: 1px solid rgba(63, 63, 70, 0.5); /* zinc-700/50 */
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: rgba(245, 158, 11, 0.3); /* amber-500/30 */
    background: #27272a; /* zinc-800 */
}

.service-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--primary-amber);
}

.service-card p {
    color: #a1a1aa; /* zinc-400 */
    line-height: 1.625;
}

/* Featured Service Highlight */
.featured-service-highlight {
    margin-top: 5rem;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .featured-service-highlight {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-image {
    position: relative;
}

.aspect-ratio-box {
    position: relative;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    border-radius: 1rem;
    overflow: hidden;
}

.aspect-ratio-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge-box {
    display: none;
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--primary-amber);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .floating-badge-box {
        display: block;
    }
}

.floating-badge-box svg {
    color: #18181b; /* zinc-900 */
}

.badge-title {
    color: #18181b; /* zinc-900 */
    font-weight: 700;
    font-size: 1.125rem;
}

.badge-subtitle {
    color: #27272a; /* zinc-800 */
    font-size: 0.875rem;
}

.highlight-content h3 {
    font-size: 1.875rem; /* 3xl */
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .highlight-content h3 {
        font-size: 2.25rem; /* 4xl */
    }
}

.highlight-text {
    color: #a1a1aa; /* zinc-400 */
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-tag {
    background: #27272a; /* zinc-800 */
    color: #d4d4d8; /* zinc-300 */
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

/* Location */
.location-grid-new {
    display: grid;
    gap: 3rem;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .location-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

.map-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInUp 0.6s ease forwards;
}

.map-frame {
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    background: #27272a; /* zinc-800 */
    border: 1px solid #3f3f46; /* zinc-700 */
}

.grayscale-map {
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.grayscale-map:hover {
    filter: grayscale(0%);
}

.btn-open-map {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--primary-amber);
    color: #18181b; /* zinc-900 */
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-open-map:hover {
    background: #d97706; /* amber-600 */
}

.location-info-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.address-card {
    background: #18181b; /* zinc-900 */
    border: 1px solid #27272a; /* zinc-800 */
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-box {
    width: 3rem;
    height: 3rem;
    background: rgba(245, 158, 11, 0.1); /* amber-500/10 */
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background: #18181b; /* zinc-900 */
    border: 1px solid #27272a; /* zinc-800 */
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: rgba(245, 158, 11, 0.3); /* amber-500/30 */
}

.contact-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(245, 158, 11, 0.1); /* amber-500/10 */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.contact-card:hover .contact-icon-box {
    background: rgba(245, 158, 11, 0.2); /* amber-500/20 */
}

.contact-label {
    font-size: 0.75rem;
    color: #71717a; /* zinc-500 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-weight: 500;
    color: white;
}

.distances-card {
    background: linear-gradient(to right, rgba(245, 158, 11, 0.1), transparent);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
}

.distances-card h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.distances-list {
    display: grid;
    gap: 0.75rem;
}

.distance-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
}

.place-name {
    color: #a1a1aa; /* zinc-400 */
}

.place-time {
    color: var(--primary-amber);
    font-weight: 500;
}

/* Reception Hours */
.reception-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #18181b; /* zinc-900 */
    border: 1px solid #27272a; /* zinc-800 */
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.reception-icon-box {
    width: 3rem;
    height: 3rem;
    background: rgba(34, 197, 94, 0.1); /* green-500/10 */
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.text-green-500 {
    color: #22c55e;
}

.reception-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.reception-subtitle {
    color: #a1a1aa; /* zinc-400 */
    font-size: 0.875rem;
}

/* Footer */
#footer {
    background-color: #18181b; /* zinc-900 */
    border-top: 1px solid #27272a; /* zinc-800 */
    padding: 4rem 0 8rem; /* Increased bottom padding for fixed bar */
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Footer Brand */
.footer-brand-col {
    grid-column: span 1;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.brand-icon {
    width: 3rem;
    height: 3rem;
    background: #27272a; /* zinc-800 */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.brand-icon svg {
    width: 2rem;
    height: 2rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
}

.brand-num {
    font-size: 0.75rem;
    color: var(--primary-amber);
    vertical-align: super;
    margin-left: 0.1rem;
}

.brand-sub {
    font-size: 0.625rem;
    color: #71717a; /* zinc-500 */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: -0.2rem;
}

.footer-desc {
    color: #a1a1aa; /* zinc-400 */
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.footer-network {
    font-size: 0.75rem;
    color: #71717a; /* zinc-500 */
}

/* Footer Links */
.footer-links-col h4,
.footer-contact-col h4,
.footer-social-col h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: #a1a1aa; /* zinc-400 */
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

/* Footer Contact */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list a,
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a1a1aa; /* zinc-400 */
    font-size: 0.875rem;
    transition: color 0.3s;
}

.contact-item {
    align-items: flex-start;
}

.footer-contact-list a:hover {
    color: var(--primary-amber);
}

/* Footer Social */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: #27272a; /* zinc-800 */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1aa; /* zinc-400 */
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--primary-amber);
    color: #18181b; /* zinc-900 */
}

.footer-promo-box {
    background: rgba(39, 39, 42, 0.5); /* zinc-800/50 */
    border-radius: 0.75rem;
    padding: 1rem;
}

.promo-title {
    color: #d4d4d8; /* zinc-300 */
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.promo-text {
    color: #71717a; /* zinc-500 */
    font-size: 0.75rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #27272a; /* zinc-800 */
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.copyright {
    color: #71717a; /* zinc-500 */
    font-size: 0.875rem;
    text-align: center;
}

@media (min-width: 768px) {
    .copyright {
        text-align: left;
    }
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.legal-links a {
    color: #71717a; /* zinc-500 */
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--primary-amber);
}

/* Media Queries */
@media (min-width: 768px) {
    .md\:block {
        display: block !important;
    }

    .desktop-nav {
        display: block;
    }
    
    .phone-link, .btn-cta {
        display: block;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Page Hero Common Styles */
.page-hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5rem;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: #d4d4d8; /* zinc-300 */
    max-width: 42rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 4rem;
    }
}

/* Event Pages */
.event-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.event-intro p {
    font-size: 1.125rem;
    color: #d4d4d8; /* zinc-300 */
    line-height: 1.8;
}

.event-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .event-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #27272a; /* zinc-800 */
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.event-form-container {
    max-width: 48rem;
    margin: 0 auto;
    background: #18181b; /* zinc-900 */
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #27272a; /* zinc-800 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .event-form-container {
        padding: 3rem;
    }
}

/* Forms */
.general-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #d4d4d8; /* zinc-300 */
}

.form-input,
.form-textarea {
    width: 100%;
    background: #09090b; /* zinc-950 */
    border: 1px solid #27272a; /* zinc-800 */
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #52525b; /* zinc-600 */
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-amber);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.form-footer {
    text-align: center;
    padding-top: 1rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-amber);
    color: #18181b; /* zinc-900 */
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.btn-submit:hover {
    background: #d97706; /* amber-600 */
    transform: scale(1.05);
}

.btn-submit.full-width {
    width: 100%;
}

/* Contact Page Specifics */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
    }
}

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

.panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-amber);
    flex-shrink: 0;
}

.method-item h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.25rem;
}

.map-container {
    height: 20rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #27272a;
    box-shadow: var(--shadow);
}

.contact-form-panel {
    background: #18181b; /* zinc-900 */
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #27272a;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
