:root {
    --hotel-hero-height: 70vh;
    --card-radius: 15px;
    --section-spacing: 80px;
    --transition-gentle: cubic-bezier(0.4, 0, 0.2, 1);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f7ef8a 100%);
    --dark-bg: rgba(20, 20, 20, 0.95);
    --luxury-gold: #d4af37;
    --luxury-gold-light: #f7ef8a;
    --luxury-ivory: #f5f1e8;
    --luxury-dark: #1a1a1a;
    --luxury-black: #0a0a0a;
    --font-cinzel: 'Cinzel', serif;
    --font-playfair: 'Playfair Display', serif;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hotel-page {
    font-family: var(--font-inter);
    color: var(--luxury-ivory);
    background: var(--luxury-black);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    color: #e5c158;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3)); }
    50% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.7)); }
}

.logo:hover .logo-img {
    animation: logoPulseFast 1s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

@keyframes logoPulseFast {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6)); }
    50% { filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.9)); }
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #f5f1e8;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
    letter-spacing: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #d4af37 0%, #e5c158 100%);
    color: #0a0a0a;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-inter);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    color: #0a0a0a;
}

.nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 8px;
    z-index: 1002;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hotel-hero {
    position: relative;
    height: var(--hotel-hero-height);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    isolation: isolate;
}

.hotel-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hotel-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: gentlePan 40s ease-in-out infinite alternate;
    filter: brightness(0.8);
}

@keyframes gentlePan {
    0% { transform: scale(1.05) translateX(0) translateY(0); }
    50% { transform: scale(1.08) translateX(-1%) translateY(-1%); }
    100% { transform: scale(1.05) translateX(1%) translateY(1%); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.75) 30%,
        rgba(10, 10, 10, 0.6) 70%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 2;
}

.hotel-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--luxury-ivory);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: heroReveal 1.5s var(--transition-gentle) forwards;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hotel-hero-pretext {
    font-family: var(--font-playfair);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-gentle) 0.3s forwards;
    position: relative;
    display: inline-block;
}

.hotel-hero-pretext::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    opacity: 0.6;
}

.hotel-hero-title {
    font-family: var(--font-cinzel);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--luxury-ivory);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(212, 175, 55, 0.15);
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-gentle) 0.5s forwards;
    line-height: 1.1;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hotel-hero-subtitle {
    font-family: var(--font-playfair);
    font-size: 1.2rem;
    color: rgba(245, 241, 232, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-gentle) 0.7s forwards;
    font-weight: 300;
}

.hotel-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-gentle) 0.9s forwards;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 1.2rem;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stat-number-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.3rem;
    transform: translateY(5px);
}

.stat-number {
    display: block;
    font-family: var(--font-cinzel);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--luxury-gold);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    line-height: 1;
}

.stat-symbol {
    font-family: var(--font-cinzel);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--luxury-gold-light);
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(245, 241, 232, 0.8);
    font-weight: 500;
    margin-top: 0.2rem;
    transform: translateY(-2px);
}

.rooms-section {
    padding: var(--section-spacing) 0;
    background: var(--luxury-black);
    position: relative;
    overflow: hidden;
}

.rooms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 30, 63, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.room-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s var(--transition-gentle);
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    height: 100%;
}

.room-card.featured {
    border: 2px solid var(--luxury-gold);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-light));
    color: var(--luxury-black);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-gentle);
}

.room-card:hover .room-image {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
}

.room-tag {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--luxury-gold);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.room-content {
    padding: 1.5rem;
}

.room-name {
    font-family: var(--font-cinzel);
    font-size: 1.8rem;
    color: var(--luxury-ivory);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.room-description {
    color: rgba(245, 241, 232, 0.8);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    font-weight: 300;
}

.room-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(245, 241, 232, 0.7);
}

.room-feature i {
    color: var(--luxury-gold);
    font-size: 0.9rem;
}

.room-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.room-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: rgba(245, 241, 232, 0.8);
}

.room-detail i {
    color: var(--luxury-gold);
    font-size: 0.8rem;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price {
    font-family: var(--font-cinzel);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxury-gold);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.price-period {
    font-size: 0.85rem;
    color: rgba(245, 241, 232, 0.6);
    margin-left: 0.3rem;
}

.room-book-btn {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-light) 100%);
    color: var(--luxury-black);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.4s var(--transition-gentle);
    font-family: var(--font-cinzel);
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
}

.room-book-btn:hover {
    transform: translateX(5px);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.5),
        0 5px 15px rgba(212, 175, 55, 0.2);
    gap: 0.8rem;
}

.room-book-btn i {
    font-size: 0.9rem;
    transition: transform 0.4s var(--transition-gentle);
}

.room-book-btn:hover i {
    transform: translateX(5px) rotate(10deg);
}

.room-comparison {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--card-radius);
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison-header h4 {
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    color: var(--luxury-ivory);
    margin-bottom: 0.5rem;
}

.comparison-header p {
    color: rgba(245, 241, 232, 0.7);
    font-size: 1rem;
    margin: 0;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.comparison-row.header {
    border-bottom: 2px solid var(--luxury-gold);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 0.5rem;
    color: rgba(245, 241, 232, 0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-row.header .comparison-cell {
    font-family: var(--font-cinzel);
    font-weight: 700;
    color: var(--luxury-gold);
    font-size: 1rem;
}

.comparison-cell i.fa-check {
    color: var(--luxury-gold);
}

.comparison-cell i.fa-times {
    color: rgba(245, 241, 232, 0.3);
}

.about-hotel-section {
    padding: var(--section-spacing) 0;
    background: var(--luxury-dark);
    position: relative;
    overflow: hidden;
}

.about-hotel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 30, 63, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    padding-right: 1rem;
}

.about-lead {
    font-family: var(--font-cinzel);
    font-size: 2.2rem;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-left: 1.5rem;
}

.about-lead::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, var(--luxury-gold), var(--luxury-gold-light));
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(245, 241, 232, 0.8);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s var(--transition-gentle);
    backdrop-filter: blur(10px);
    height: 100%;
}

.feature-highlight:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    font-size: 1.4rem;
    transition: all 0.4s var(--transition-gentle);
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-highlight:hover .feature-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.15));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-highlight h4 {
    font-family: var(--font-cinzel);
    font-size: 1.3rem;
    color: var(--luxury-ivory);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-highlight p {
    font-size: 1rem;
    color: rgba(245, 241, 232, 0.7);
    margin: 0;
    line-height: 1.6;
    font-weight: 300;
}

.about-image {
    position: relative;
}

.image-frame.premium-frame {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.9));
}

.image-frame-inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-radius);
    margin: 12px;
    height: 400px;
}

.frame-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-gentle);
    border-radius: calc(var(--card-radius) - 5px);
}

.image-frame:hover .frame-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    z-index: 2;
}

.overlay-content h4 {
    color: var(--luxury-gold);
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.overlay-content p {
    color: rgba(245, 241, 232, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--luxury-gold);
    opacity: 0.7;
    transition: all 0.4s var(--transition-gentle);
}

.frame-corner.tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 10px;
}

.frame-corner.tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 10px;
}

.frame-corner.bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 10px;
}

.frame-corner.br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 10px;
}

.image-frame:hover .frame-corner {
    opacity: 1;
    width: 40px;
    height: 40px;
    border-width: 2px;
}

.frame-decoration {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: calc(var(--card-radius) + 10px);
    z-index: -1;
    opacity: 0.5;
    transition: all 0.4s var(--transition-gentle);
}

.image-frame:hover .frame-decoration {
    opacity: 0.8;
    transform: scale(0.98);
    border-color: rgba(212, 175, 55, 0.3);
}

.amenities-section {
    padding: var(--section-spacing) 0;
    background: var(--luxury-dark);
    position: relative;
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(30, 30, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.amenity-category {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
    border-radius: var(--card-radius);
    padding: 1.8rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s var(--transition-gentle);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.amenity-category:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.2);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s var(--transition-gentle);
}

.amenity-category:hover .category-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.category-title {
    color: var(--luxury-gold);
    font-family: var(--font-cinzel);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.amenity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(245, 241, 232, 0.05);
    color: rgba(245, 241, 232, 0.8);
    transition: all 0.3s var(--transition-gentle);
}

.amenity-item:last-child {
    border-bottom: none;
}

.amenity-item:hover {
    color: var(--luxury-gold);
    padding-left: 0.5rem;
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.amenity-item i {
    color: var(--luxury-gold);
    font-size: 0.8rem;
    min-width: 1rem;
    transition: transform 0.3s var(--transition-gentle);
}

.amenity-item:hover i {
    transform: scale(1.3);
}

.amenity-item span {
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 300;
    text-align: left;
    flex: 1;
}

.amenities-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.premium-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-light) 100%);
    color: var(--luxury-black);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s var(--transition-gentle);
    font-family: var(--font-cinzel);
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.premium-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s var(--transition-gentle);
}

.premium-cta-button:hover::before {
    left: 100%;
}

.premium-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.5),
        0 10px 30px rgba(212, 175, 55, 0.3);
    gap: 1rem;
}

.cta-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-light) 100%);
    border-radius: 14px;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.6;
    transition: all 0.4s var(--transition-gentle);
}

.premium-cta-button:hover .cta-glow {
    filter: blur(20px);
    opacity: 0.8;
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 1rem;
    transition: transform 0.4s var(--transition-gentle);
    position: relative;
    z-index: 1;
}

.premium-cta-button:hover .cta-icon {
    transform: translateX(5px) rotate(10deg);
}

.gallery-section {
    padding: var(--section-spacing) 0;
    background: var(--luxury-black);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-gentle);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--transition-gentle);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: var(--luxury-ivory);
    font-family: var(--font-cinzel);
    font-size: 1.2rem;
    text-align: center;
    padding: 1rem;
}

.location-section {
    padding: var(--section-spacing) 0;
    background: var(--luxury-dark);
    position: relative;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.location-info {
    padding-right: 1rem;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin: 2rem 0;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.8));
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s var(--transition-gentle);
    backdrop-filter: blur(10px);
}

.contact-detail:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    font-size: 1.4rem;
    transition: all 0.4s var(--transition-gentle);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-detail:hover .contact-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.15));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-text h4 {
    font-family: var(--font-cinzel);
    font-size: 1.2rem;
    color: var(--luxury-ivory);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-text p,
.contact-text a {
    color: rgba(245, 241, 232, 0.8);
    text-decoration: none;
    line-height: 1.6;
    font-size: 1rem;
    transition: color 0.3s var(--transition-gentle);
    font-weight: 300;
}

.contact-text a:hover {
    color: var(--luxury-gold);
}

.location-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.map-btn,
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s var(--transition-gentle);
    font-family: var(--font-cinzel);
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    flex: 1;
    justify-content: center;
}

.map-btn {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-light) 100%);
    color: var(--luxury-black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.contact-btn {
    background: rgba(30, 30, 30, 0.9);
    color: var(--luxury-ivory);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.map-btn:hover,
.contact-btn:hover {
    transform: translateY(-3px);
}

.map-btn:hover {
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.5),
        0 5px 15px rgba(212, 175, 55, 0.2);
    gap: 0.8rem;
}

.contact-btn:hover {
    background: rgba(30, 30, 30, 1);
    border-color: var(--luxury-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.map-container {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 400px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s var(--transition-gentle);
    padding: 20px;
}

.booking-modal.active {
    display: flex;
    opacity: 1;
}

.booking-modal-content {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
    border-radius: var(--card-radius);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: modalFadeIn 0.4s var(--transition-gentle);
    backdrop-filter: blur(15px);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--luxury-ivory);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s var(--transition-gentle);
    opacity: 0.7;
    z-index: 10;
}

.booking-modal-close:hover {
    color: var(--luxury-gold);
    opacity: 1;
    transform: rotate(90deg);
}

.booking-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.booking-header h3 {
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    color: var(--luxury-gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.booking-subtitle {
    color: rgba(245, 241, 232, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.booking-form {
    padding: 1.5rem 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-cinzel);
    font-size: 0.9rem;
    color: var(--luxury-ivory);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group label i {
    color: var(--luxury-gold);
    font-size: 0.9rem;
}

.booking-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    color: var(--luxury-ivory);
    font-family: var(--font-inter);
    font-size: 0.95rem;
    transition: all 0.3s var(--transition-gentle);
    outline: none;
}

.booking-input:focus {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(40, 40, 40, 1);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.booking-input::placeholder {
    color: rgba(245, 241, 232, 0.4);
}

.booking-input[readonly] {
    background: rgba(40, 40, 40, 0.6);
    color: var(--luxury-gold);
    font-weight: 600;
    cursor: not-allowed;
}

.booking-input[readonly]:focus {
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: none;
}

.booking-input select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
    padding-right: 2rem;
}

.booking-summary {
    background: rgba(40, 40, 40, 0.6);
    border-radius: 8px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: rgba(245, 241, 232, 0.7);
    font-size: 0.9rem;
}

.summary-value {
    color: var(--luxury-gold);
    font-family: var(--font-cinzel);
    font-weight: 600;
    font-size: 0.95rem;
}

.booking-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.booking-btn {
    flex: 1;
    padding: 0.8rem;
    border-radius: 8px;
    border: none;
    font-family: var(--font-cinzel);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s var(--transition-gentle);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.booking-btn.primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.booking-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    gap: 0.8rem;
}

.booking-btn.secondary {
    background: rgba(40, 40, 40, 0.8);
    color: var(--luxury-ivory);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.booking-btn.secondary:hover {
    background: rgba(50, 50, 50, 1);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.booking-note {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.booking-note i {
    color: var(--luxury-gold);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.booking-note span {
    color: rgba(245, 241, 232, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s var(--transition-gentle);
    padding: 20px;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: modalFadeIn 0.4s var(--transition-gentle);
}

.gallery-modal-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--card-radius);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.gallery-modal-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--luxury-gold);
    color: var(--luxury-black);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-gentle);
    z-index: 10;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.gallery-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.gallery-modal-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--luxury-ivory);
    font-family: var(--font-cinzel);
    font-size: 1.2rem;
    padding: 0.5rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-light) 100%);
    color: var(--luxury-black);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 1000;
    transition: all 0.4s var(--transition-gentle);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    opacity: 0;
}

.back-to-top.visible {
    display: flex;
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.5),
        0 5px 15px rgba(212, 175, 55, 0.2);
}

@media (min-width: 1400px) {
    .hotel-hero-title {
        font-size: 4rem;
    }
    
    .rooms-grid {
        max-width: 1000px;
    }
    
    .nav-menu {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        padding-right: 0;
        text-align: center;
    }
    
    .about-lead {
        padding-left: 0;
        text-align: center;
        position: relative;
    }
    
    .about-lead::before {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        top: -1rem;
    }
    
    .experience-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 2rem auto 0;
    }
    
    .hotel-hero-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 110px;
        height: 110px;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
    
    .stat-symbol {
        font-size: 1.4rem;
    }
    
    .stat-number-container {
        transform: translateY(4px);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info {
        padding-right: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 0;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        z-index: 9999 !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-link {
        padding: 20px 32px;
        width: 100%;
        font-size: 18px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        text-align: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-cta {
        margin: 20px 32px;
        text-align: center;
        width: calc(100% - 64px);
    }
    
    .logo-img {
        height: 60px;
    }
    
    .hotel-hero {
        height: 50vh;
        min-height: 400px;
        margin-top: 70px;
    }
    
    .hotel-hero-title {
        font-size: 2.2rem;
    }
    
    .hotel-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hotel-hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1.5rem;
        justify-content: space-around;
    }
    
    .stat-item {
        flex: 0 0 calc(33.333% - 0.67rem);
        padding: 0 0.3rem;
        min-width: auto;
        height: 100px;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-number-container {
        gap: 1px;
        transform: translateY(3px);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-symbol {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        transform: translateY(-1px);
    }
    
    .experience-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature-highlight {
        padding: 1.2rem;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin: 0 auto 1rem;
    }
    
    .feature-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .about-lead {
        font-size: 1.5rem;
        padding-left: 0;
        text-align: center;
        margin-bottom: 1.2rem;
    }
    
    .about-lead::before {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 4px;
        top: -0.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .image-frame-inner {
        height: 350px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .amenity-category {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .amenity-item {
        padding: 0.8rem 0;
        font-size: 1rem;
    }
    
    .amenity-item i {
        font-size: 1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .room-comparison {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .comparison-header h4 {
        font-size: 1.3rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.8rem;
        padding: 0.8rem 0;
    }
    
    .comparison-cell {
        font-size: 0.85rem;
        padding: 0.3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .location-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .booking-modal-content {
        max-height: 85vh;
    }
    
    .booking-form {
        padding: 1.2rem;
    }
    
    .booking-actions {
        flex-direction: column;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
    
    .gallery-modal-content {
        max-width: 95%;
    }
    
    .gallery-modal-close {
        top: -15px;
        right: -15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-modal-caption {
        bottom: -30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hotel-hero-title {
        font-size: 1.8rem;
    }
    
    .hotel-hero-pretext {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
        margin-bottom: 0.8rem;
    }
    
    .hotel-hero-stats {
        gap: 0.8rem;
    }
    
    .stat-item {
        flex: 0 0 calc(33.333% - 0.54rem);
        min-width: auto;
        height: 90px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-symbol {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        transform: translateY(-1px);
    }
    
    .stat-number-container {
        transform: translateY(2px);
    }
    
    .room-name {
        font-size: 1.5rem;
    }
    
    .room-features {
        flex-direction: column;
        gap: 0.5rem;
        padding-bottom: 1rem;
    }
    
    .room-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .room-book-btn {
        width: 100%;
        justify-content: center;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .comparison-cell {
        justify-content: flex-start;
        padding-left: 0;
    }
    
    .comparison-row.header .comparison-cell {
        justify-content: center;
        font-size: 0.9rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .booking-header {
        padding: 1.5rem;
    }
    
    .booking-header h3 {
        font-size: 1.3rem;
    }
    
    .amenity-item {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
        padding: 0.5rem 0;
    }
    
    .amenity-item span {
        text-align: center;
    }
    
    .logo-img {
        height: 55px;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .hotel-hero-content,
    .hotel-hero-image,
    .hotel-hero-pretext,
    .hotel-hero-title,
    .hotel-hero-subtitle,
    .hotel-hero-stats,
    .feature-highlight,
    .amenity-category,
    .room-card,
    .premium-cta-button,
    .contact-detail,
    .back-to-top,
    .gallery-item,
    .booking-modal-content,
    .logo-img {
        animation: none !important;
        transition: none !important;
    }
}

.premium-cta-button:focus,
.room-book-btn:focus,
.map-btn:focus,
.contact-btn:focus,
.back-to-top:focus,
.booking-input:focus,
.booking-btn:focus,
.nav-cta:focus,
.nav-link:focus {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

@media print {
    .header,
    .back-to-top,
    .room-book-btn,
    .map-btn,
    .contact-btn,
    .premium-cta-button,
    .booking-modal,
    .gallery-modal {
        display: none;
    }
    
    .about-hotel-section,
    .amenities-section,
    .rooms-section,
    .gallery-section,
    .location-section {
        padding: 40px 0;
    }
    
    .amenity-category,
    .room-card,
    .contact-detail {
        break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
        background: white !important;
        color: black !important;
    }
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    margin: 1.5rem auto;
}