/* ============================================
   THE ROYAL HAVELI PALACE - STYLES
   Ultra-Luxury Heritage Hotel Website
   ============================================ */

/* CSS Variables */
:root {
    --color-black: #0A0A0A;
    --color-black-light: #141414;
    --color-black-lighter: #1a1a1a;
    --color-ivory: #F5F5F0;
    --color-ivory-dark: #E8E8E3;
    --color-gold: #D4AF37;
    --color-gold-light: #E5C158;
    --color-gold-dark: #B8962E;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Selection */
::selection {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: all 0.4s var(--transition-smooth);
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-gold);
    transition: transform 0.3s var(--transition-smooth);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 1.75rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-ivory);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-ivory);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-gold);
}

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

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-black);
    background: var(--color-gold);
    padding: 0.875rem 1.75rem;
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
}

.nav-cta:hover {
    background: var(--color-gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s var(--transition-smooth);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-spline spline-viewer {
    width: 100%;
    height: 100%;
}

.hero-spline-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
}

.gate-container {
    position: relative;
    width: 60%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gate-left,
.gate-right {
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--color-gold-dark) 0%, 
        var(--color-gold) 50%, 
        var(--color-gold-dark) 100%);
    border: 3px solid var(--color-gold-light);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(212, 175, 55, 0.3);
}

.gate-left {
    left: 0;
    transform-origin: left center;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}

.gate-right {
    right: 0;
    transform-origin: right center;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.gate-light-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center,
        rgba(212, 175, 55, 0.4) 0%,
        rgba(212, 175, 55, 0.1) 30%,
        transparent 70%);
    opacity: 0;
    animation: lightPulse 4s ease-in-out infinite;
}

@keyframes lightPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.1) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.title-line:nth-child(1) {
    animation: fadeInUp 1s var(--transition-smooth) 0.3s forwards;
}

.title-line:nth-child(2) {
    animation: fadeInUp 1s var(--transition-smooth) 0.5s forwards;
}

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

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-ivory);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s var(--transition-smooth) 0.8s forwards;
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-gold);
    padding: 1.25rem 2.5rem;
    border: 1px solid var(--color-gold);
    border-radius: 2px;
    transition: all 0.4s var(--transition-smooth);
    opacity: 0;
    animation: fadeIn 1s var(--transition-smooth) 1.1s forwards;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 175, 55, 0.2),
        transparent);
    transition: left 0.6s var(--transition-smooth);
}

.hero-cta:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4),
                inset 0 0 20px rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.hero-cta:hover::before {
    left: 100%;
}

.cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--transition-smooth);
}

.hero-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeIn 1s var(--transition-smooth) 1.5s forwards;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-ivory);
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
section {
    position: relative;
    padding: 8rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header.light {
    color: var(--color-ivory);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    position: relative;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.5;
}

.section-eyebrow::before {
    right: calc(100% + 1rem);
}

.section-eyebrow::after {
    left: calc(100% + 1rem);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-ivory);
}

.section-desc {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(245, 245, 240, 0.7);
    line-height: 1.8;
}

/* ============================================
   SUITES GALLERY
   ============================================ */
.suites {
    background: var(--color-black);
    position: relative;
}

.suites::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 175, 55, 0.3),
        transparent);
}

.suites-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.suite-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.5s var(--transition-smooth);
}

.suite-card:nth-child(3n) {
    grid-row: span 2;
}

.suite-card:hover {
    transform: translateY(-5px);
}

.suite-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.suite-card:nth-child(3n) .suite-image {
    min-height: 580px;
}

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

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

.suite-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(212, 175, 55, 0.9) 0%,
        rgba(212, 175, 55, 0.4) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.suite-card:hover .suite-overlay {
    opacity: 1;
}

.suite-view {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-black);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-black);
    transform: translateY(20px);
    transition: all 0.4s var(--transition-smooth) 0.1s;
}

.suite-card:hover .suite-view {
    transform: translateY(0);
}

.suite-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-ivory);
    background: rgba(10, 10, 10, 0.8);
    padding: 0.5rem 0.75rem;
    border-radius: 2px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.suite-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    z-index: 1;
}

.suite-info h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-ivory);
    margin-bottom: 0.25rem;
}

.suite-info p {
    font-size: 0.75rem;
    color: rgba(245, 245, 240, 0.6);
    letter-spacing: 0.05em;
}

/* ============================================
   VIRTUAL TOUR
   ============================================ */
.tour {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-light) 100%);
    padding: 6rem 2rem;
}

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

.tour-spline {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-dark);
}

.tour-spline spline-viewer {
    width: 100%;
    height: 100%;
}

.tour-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black-light) 0%, var(--color-black-lighter) 100%);
    gap: 1.5rem;
}

.tour-icon {
    width: 80px;
    height: 80px;
    color: var(--color-gold);
    opacity: 0.8;
    animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tour-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-ivory);
}

.tour-placeholder span {
    font-size: 0.875rem;
    color: rgba(245, 245, 240, 0.6);
    letter-spacing: 0.1em;
}

.tour-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    color: rgba(245, 245, 240, 0.5);
    font-size: 0.875rem;
}

.tour-hint svg {
    width: 20px;
    height: 20px;
    animation: bounce 2s ease-in-out infinite;
}

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

/* ============================================
   AMENITIES
   ============================================ */
.amenities {
    background: var(--color-black);
    position: relative;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--transition-smooth);
}

.amenity-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.amenity-card:hover::before {
    transform: translateX(100%);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--color-gold);
    stroke-width: 1;
}

.amenity-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-gold);
    fill: none;
}

.amenity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-ivory);
    margin-bottom: 0.75rem;
}

.amenity-card p {
    font-size: 0.9375rem;
    color: rgba(245, 245, 240, 0.6);
    line-height: 1.7;
}

/* ============================================
   BOOKING CTA
   ============================================ */
.booking {
    background: linear-gradient(135deg, 
        var(--color-gold-dark) 0%, 
        var(--color-gold) 50%, 
        var(--color-gold-light) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, 
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px);
    pointer-events: none;
}

.booking-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.booking-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.6);
    margin-bottom: 1rem;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.booking-desc {
    font-size: 1.125rem;
    color: rgba(10, 10, 10, 0.7);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.booking-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    text-decoration: none;
    background: var(--color-black);
    color: var(--color-gold);
    padding: 1.5rem 3rem;
    border-radius: 4px;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.booking-cta svg {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.booking-cta span:first-of-type {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-price {
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    color: rgba(212, 175, 55, 0.8) !important;
    letter-spacing: 0.05em !important;
    text-transform: none !important;
}

.booking-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: var(--color-black-light);
}

/* ============================================
   LOCATION
   ============================================ */
.location {
    background: var(--color-black);
    padding: 6rem 2rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.location-info {
    padding-right: 2rem;
}

.location-info .section-title {
    text-align: left;
    margin-bottom: 3rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.location-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.location-item h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--color-ivory);
    margin-bottom: 0.5rem;
}

.location-item p {
    font-size: 0.9375rem;
    color: rgba(245, 245, 240, 0.6);
    line-height: 1.7;
}

.location-map {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-dark);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-black-light);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 3rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-ivory);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(245, 245, 240, 0.5);
    letter-spacing: 0.1em;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--color-gold);
    transition: all 0.3s var(--transition-smooth);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(245, 245, 240, 0.4);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(245, 245, 240, 0.5);
    text-decoration: none;
    transition: color 0.3s var(--transition-smooth);
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .suites-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .suite-card:nth-child(3n) {
        grid-row: span 1;
    }
    
    .suite-card:nth-child(4n) {
        grid-row: span 2;
    }
    
    .suite-card:nth-child(4n) .suite-image {
        min-height: 580px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .suites-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .suite-card:nth-child(4n) {
        grid-row: span 1;
    }
    
    .suite-card:nth-child(3n) {
        grid-row: span 2;
    }
    
    .suite-card:nth-child(3n) .suite-image {
        min-height: 580px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .suites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .suite-card:nth-child(3n) {
        grid-row: span 1;
    }
    
    .suite-card:nth-child(3n) .suite-image,
    .suite-image {
        min-height: 220px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-spline {
        height: 400px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    section {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .suites-grid {
        grid-template-columns: 1fr;
    }
    
    .suite-image {
        min-height: 300px !important;
    }
    
    .booking-cta {
        padding: 1.25rem 2rem;
    }
    
    .location-map {
        height: 300px;
    }
}

/* Mobile Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-black);
    z-index: 1001;
    padding: 6rem 2rem;
    transition: right 0.4s var(--transition-smooth);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

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

.nav-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
}

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

.nav-menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-menu-links a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-ivory);
    text-decoration: none;
    transition: color 0.3s var(--transition-smooth);
}

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}