/* MAYA'S MANOR - MINIMAL LUXURY WITH PROPER SPACING */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --navy: #0A1628;
    --navy-light: #152238;
    --gold: #C5A572;
    --gold-light: #E8D5B5;
    --cream: #FAF7F0;
    --white: #FFFFFF;
    --gray: #6B7280;
    --text: #374151;
    color-scheme: light;
}

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

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 15px;
}

/* Intro Splash Screen - Unique Luxury Animation */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #050B14 0%, var(--navy) 50%, #050B14 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease;
    overflow: hidden;
}

.intro-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Animated Background Circles */
.intro-bg-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(197, 165, 114, 0.15);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: circleFloat 4s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: circleFloat 5s ease-in-out infinite reverse;
}

.circle-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circlePulse 6s ease-in-out infinite;
}

@keyframes circleFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes circlePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.2;
    }
}

/* Intro Content */
.intro-content {
    text-align: center;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.intro-ornament-top {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
    opacity: 0;
    animation: ornamentMagic 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s forwards;
}

.intro-ornament-bottom {
    font-size: 2rem;
    color: var(--gold);
    margin-top: 30px;
    opacity: 0;
    animation: ornamentMagic 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 4.5s forwards;
}

@keyframes ornamentMagic {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-360deg);
        filter: blur(10px);
    }
    60% {
        transform: scale(1.4) rotate(180deg);
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(720deg);
        filter: blur(0px);
    }
}

/* Logo Animation */
.intro-logo {
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoMagicReveal 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.8s forwards;
}

.intro-logo svg {
    filter: drop-shadow(0 0 60px rgba(197, 165, 114, 0.6));
    display: block;
}

.circle-outline {
    stroke-dasharray: 426;
    stroke-dashoffset: 426;
    animation: drawCircle 2s ease-out 1s forwards, circlePulseGlow 2s ease-in-out 3s infinite;
}

.circle-outline-2 {
    stroke-dasharray: 389;
    stroke-dashoffset: 389;
    animation: drawCircle 2s ease-out 1.3s forwards, circlePulseGlow 2s ease-in-out 3s infinite reverse;
}

.logo-m {
    opacity: 0;
    transform-origin: center;
    animation: logoMReveal 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s forwards;
}

.logo-dot-top {
    opacity: 0;
    transform-origin: center;
    animation: dotBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2.8s forwards;
}

.logo-dot-bottom {
    opacity: 0;
    transform-origin: center;
    animation: dotBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 3s forwards;
}

@keyframes logoMagicReveal {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(180deg);
    }
    60% {
        transform: scale(1.2) rotate(-20deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes circlePulseGlow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes logoMReveal {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    50% {
        transform: scale(1.3) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes dotBounce {
    0% {
        opacity: 0;
        transform: scale(0) translateY(-50px);
    }
    60% {
        transform: scale(1.5) translateY(10px);
    }
    80% {
        transform: scale(0.9) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Title Animation - Letters Appear One by One */
.intro-text-wrapper {
    margin: 35px 0 30px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 12px;
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-shadow: 0 0 30px rgba(197, 165, 114, 0.5);
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(-80px) rotateZ(-15deg) scale(0.5);
    animation: letterDrop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.space {
    width: 25px;
}

.letter:nth-child(1) { animation-delay: 3.2s; }
.letter:nth-child(2) { animation-delay: 3.3s; }
.letter:nth-child(3) { animation-delay: 3.4s; }
.letter:nth-child(4) { animation-delay: 3.5s; }
.letter:nth-child(5) { animation-delay: 3.6s; }
.letter:nth-child(6) { animation-delay: 3.7s; }
.letter:nth-child(8) { animation-delay: 3.85s; }
.letter:nth-child(9) { animation-delay: 3.95s; }
.letter:nth-child(10) { animation-delay: 4.05s; }
.letter:nth-child(11) { animation-delay: 4.15s; }
.letter:nth-child(12) { animation-delay: 4.25s; }

@keyframes letterDrop {
    0% {
        opacity: 0;
        transform: translateY(-80px) rotateZ(-15deg) scale(0.5);
        filter: blur(5px);
    }
    40% {
        transform: translateY(15px) rotateZ(5deg) scale(1.1);
        filter: blur(0px);
    }
    70% {
        transform: translateY(-8px) rotateZ(-2deg) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateZ(0deg) scale(1);
        filter: blur(0px);
    }
}

/* Line Animation */
.intro-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 25px auto;
    animation: lineMagicExpand 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 4.3s forwards;
    box-shadow: 0 0 20px rgba(197, 165, 114, 0.5);
}

@keyframes lineMagicExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 400px;
        opacity: 1;
        height: 3px;
    }
    100% {
        width: 350px;
        opacity: 1;
        height: 2px;
    }
}

/* Tagline Animation */
.intro-tagline {
    font-size: 1.1rem;
    letter-spacing: 10px;
    color: var(--gold-light);
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
}

.tagline-word {
    opacity: 0;
    transform: translateX(-50px);
}

.tagline-word:nth-child(1) {
    animation: wordSlideIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 4.6s forwards;
}

.tagline-word:nth-child(2) {
    animation: wordSlideIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 4.8s forwards;
    transform: translateX(50px);
}

@keyframes wordSlideIn {
    0% {
        opacity: 0;
        filter: blur(10px);
    }
    60% {
        transform: translateX(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0px);
    }
}

/* Shimmer Effect */
.intro-shimmer {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(
        circle at center,
        transparent 40%,
        rgba(197, 165, 114, 0.08) 50%,
        transparent 60%
    );
    animation: shimmerRotate 8s linear infinite;
    pointer-events: none;
}

@keyframes shimmerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Container with Better Padding */
.nav-container,
.content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .nav-container,
    .content-container {
        padding: 0 24px;
    }
}

/* Navigation */
.luxury-nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
}

.brand-tagline {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold-light);
    font-weight: 300;
}

.nav-link {
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

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

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

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

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

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease, transform 1.5s ease;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide.prev {
    opacity: 0;
    transform: scale(1) translateX(-10%);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85), rgba(10, 22, 40, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-ornament {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.7;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out 0.3s both;
    transition: opacity 0.3s ease;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 20px;
    opacity: 0.6;
    animation: expand 1s ease-out 0.6s both;
}

@keyframes expand {
    from { width: 0; }
    to { width: 80px; }
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 35px;
    color: var(--gold-light);
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.9s both;
    transition: opacity 0.3s ease;
}

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

.hero-btn {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 1.2s both;
}

.hero-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    transform: translateY(50%);
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(197, 165, 114, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(197, 165, 114, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

.dot:hover {
    background: var(--gold-light);
}

/* Sections with Better Spacing */
.welcome-section,
.heritage-section,
.testimonials-section {
    padding: 100px 0;
}

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

.ornament-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 18px;
}

.ornament {
    color: var(--gold);
    font-size: 0.9rem;
    opacity: 0.6;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
}

.section-label.light {
    color: var(--gold-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-title.light {
    color: var(--white);
}

.gold-text {
    color: var(--gold);
}

.section-description {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
}

/* Luxury Cards */
.luxury-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 2px solid var(--gold);
}

.luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 55px;
    height: 55px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.luxury-card:hover .card-icon {
    background: var(--gold);
    color: var(--navy);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    text-align: center;
}

.card-text {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: center;
}

.card-ornament {
    color: var(--gold);
    text-align: center;
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.4;
}

/* Showcase */
.showcase-section {
    padding: 100px 0;
    background: var(--cream);
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    height: 800px;
    gap: 15px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.showcase-item.large {
    grid-row: 1 / 4;
    grid-column: 1;
}

.showcase-item:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}

.showcase-item:nth-child(3) {
    grid-row: 1;
    grid-column: 3;
}

.showcase-item:nth-child(4) {
    grid-row: 2;
    grid-column: 2;
}

.showcase-item:nth-child(5) {
    grid-row: 2;
    grid-column: 3;
}

.showcase-item:nth-child(6) {
    grid-row: 3;
    grid-column: 2 / 4;
}

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

.showcase-item:hover img {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 22, 40, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 20%, rgba(10, 22, 40, 0.98) 100%);
}

.showcase-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.showcase-overlay p {
    color: var(--gold-light);
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Heritage Section */
.content-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.title-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 25px;
}

.heritage-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
}

.heritage-stats {
    display: flex;
    gap: 50px;
    margin-top: 35px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.heritage-image {
    position: relative;
    height: 550px;
}

.heritage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    pointer-events: none;
    opacity: 0.4;
}

/* Testimonials */
.testimonials-section {
    background: var(--cream);
}

.testimonial-card {
    background: var(--cream);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 2px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.quote-mark {
    font-size: 3rem;
    color: var(--gold);
    font-family: Georgia, serif;
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}

.author-name {
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-title {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Footer */
.luxury-footer {
    background: rgba(10, 22, 40, 0.97);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(197, 165, 114, 0.2);
}


.footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.85rem;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 18px;
    letter-spacing: 1px;
    font-weight: 500;
}

.footer-links,
.footer-info {
    list-style: none;
}

.footer-links li,
.footer-info li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

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

.footer-info li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy);
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(197, 165, 114, 0.15);
    text-align: center;
}

.footer-ornament {
    color: var(--gold);
    font-size: 0.7rem;
    margin-bottom: 12px;
    opacity: 0.4;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* Footer Contact Icons - Minimal */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item:hover {
    color: var(--gold);
}

.footer-icon {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-contact-item:hover .footer-icon {
    opacity: 1;
}

.footer-contact-item div {
    font-size: 0.85rem;
    line-height: 1.6;
}


/* Additional Utility Classes for Inline Styles */

/* Navigation Layout */
.nav-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-menu {
    list-style: none;
    display: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
}

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

/* Grid Layouts */
.grid-3-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 64px;
}

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

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

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

.grid-4-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

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

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

/* Contact Page Grids */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 80rem;
    margin: 0 auto;
}

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

.contact-hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 64rem;
    margin: 0 auto;
}

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

/* Gallery Page Grids */
.gallery-rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

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

.gallery-dining-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

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

/* About Page Grids */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1152px;
    margin: 0 auto;
}

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

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 80rem;
    margin: 0 auto;
}

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

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

.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 80rem;
    margin: 0 auto;
}

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

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

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

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

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

/* Index Page Heritage Grid */
.heritage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

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

/* Index Page Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 64px;
}

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

/* SVG Icon Sizes */
.icon-sm {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-md {
    width: 35px;
    height: 35px;
}

.icon-lg {
    width: 4rem;
    height: 4rem;
}

/* Logo Styles */
.logo-splash {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

/* Footer Logo */
.footer-logo-container {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 0;
    height: 60px;
    overflow: visible;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    margin: -30px 0;
}

.footer-logo:hover {
    opacity: 1;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    height: 40px;
    overflow: visible;
    flex-shrink: 0;
}

.brand-logo-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    height: 100%;
}

.brand-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
    display: block;
    margin: -20px 0;
}

/* Hero Section Variants */
.hero-section-short {
    min-height: 60vh;
    padding-top: 100px;
}

.hero-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ornament Line Variants */
.ornament-line-left {
    justify-content: flex-start;
}

/* Image Styles */
.story-image {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Section Backgrounds */
.section-white-bg {
    padding: 100px 0;
    background: var(--white);
}

/* Value Items (About Page) */
.value-item {
    text-align: center;
    padding: 25px 20px;
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--navy);
    opacity: 0.7;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.value-description {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Award Cards (About Page) */
.award-card-custom {
    padding: 35px 25px;
}

.award-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    text-align: center;
}

.award-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    text-align: center;
}

.award-subtitle {
    font-size: 0.75rem;
    color: var(--gray);
    text-align: center;
}

/* Hours Section (Contact Page) */
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
}

.hours-label {
    font-weight: 500;
    color: var(--navy);
}

.hours-time {
    color: var(--gray);
}

/* Map Container (Contact Page) */
.map-container {
    width: 100%;
    height: 350px;
    background: var(--cream);
    border-radius: 2px;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
}

.map-icon {
    width: 60px;
    height: 60px;
    color: var(--gold);
    margin: 0 auto 15px;
}

.map-text {
    color: var(--gray);
    font-size: 0.9rem;
}

.map-location {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 8px;
}

/* Gallery Items */
.gallery-item-custom {
    position: relative;
    height: 300px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.gallery-overlay-custom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent, rgba(10,22,40,0.9));
}

.gallery-category {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.gallery-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

/* Gallery Dining Items */
.gallery-dining-item {
    position: relative;
    height: 350px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.gallery-dining-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(180deg, transparent, rgba(10,22,40,0.9));
}

.gallery-dining-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.nav-menu.mobile-active {
    display: flex !important;
}

/* Responsive Breakpoints */

/* 1440px and above - Desktop Large */
@media (min-width: 1441px) {
    .nav-container,
    .content-container {
        max-width: 1400px;
    }
    
    .showcase-container {
        max-width: 1500px;
    }
}

/* 1440px - Desktop */
@media (max-width: 1440px) {
    .nav-container,
    .content-container {
        max-width: 1280px;
        padding: 0 50px;
    }
    
    .showcase-container {
        max-width: 1350px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
}

/* 1024px - Tablet Landscape */
@media (max-width: 1024px) {
    .nav-container,
    .content-container {
        padding: 0 35px;
    }
    
    .heritage-image {
        height: 450px;
        margin-top: 40px;
    }
    
    .slider-nav {
        padding: 0 20px;
    }
    
    .showcase-container {
        padding: 0 35px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        height: 600px;
        gap: 12px;
    }
    
    .showcase-item.large {
        grid-row: 1 / 3;
        grid-column: 1;
    }
    
    .showcase-item:nth-child(2) {
        grid-row: 1;
        grid-column: 2;
    }
    
    .showcase-item:nth-child(3) {
        grid-row: 2;
        grid-column: 2;
    }
    
    .showcase-item:nth-child(4) {
        grid-row: 3;
        grid-column: 1;
    }
    
    .showcase-item:nth-child(5) {
        grid-row: 3;
        grid-column: 2;
    }
    
    .showcase-item:nth-child(6) {
        display: none;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 4vw, 2.3rem);
    }
    
    .content-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
}

/* 768px - Tablet Portrait */
@media (max-width: 768px) {
    .nav-container,
    .content-container {
        padding: 0 30px;
    }
  
    
    .hero-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    .welcome-section,
    .heritage-section,
    .testimonials-section,
    .section-white-bg {
        padding: 60px 0;
    }
    
    .showcase-section {
        padding: 60px 0;
    }
    
    .showcase-container {
        padding: 0 30px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
        height: auto;
        gap: 12px;
    }
    
    .showcase-item.large {
        grid-row: 1 / 3;
        grid-column: 1;
    }
    
    .showcase-item:nth-child(2) {
        grid-row: 1;
        grid-column: 2;
    }
    
    .showcase-item:nth-child(3) {
        grid-row: 2;
        grid-column: 2;
    }
    
    .showcase-item:nth-child(4) {
        grid-row: 3;
        grid-column: 1;
    }
    
    .showcase-item:nth-child(5) {
        grid-row: 3;
        grid-column: 2;
    }
    
    .showcase-item:nth-child(6) {
        display: none;
    }
    
    .heritage-stats {
        gap: 25px;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .slider-dots {
        bottom: 18px;
    }
    
    .brand-logo-img {
        height: 80px;
        margin: -15px 0;
    }
    
    .footer-logo {
        height: 105px;
        margin: -25px 0;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    }
    
    .content-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }
    
    .grid-3-cols {
        gap: 25px;
    }
    
    .luxury-card {
        padding: 30px 25px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    /* Testimonials specific styling for 768px */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
    }
    
    .testimonial-card {
        padding: 35px 28px;
        margin-bottom: 0;
    }
    
    .quote-mark {
        font-size: 2.8rem;
        margin-bottom: 18px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 22px;
    }
    
    .testimonial-author {
        gap: 12px;
    }
    
    .author-image {
        width: 48px;
        height: 48px;
    }
    
    .author-name {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    
    .author-title {
        font-size: 0.85rem;
    }
}

/* 600px - Mobile transition for showcase */
@media (max-width: 600px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 220px);
    }
    
    .showcase-item.large {
        grid-row: 1;
        grid-column: 1;
    }
    
    .showcase-item:nth-child(2) {
        grid-row: 2;
        grid-column: 1;
    }
    
    .showcase-item:nth-child(3) {
        grid-row: 3;
        grid-column: 1;
    }
    
    .showcase-item:nth-child(4) {
        grid-row: 4;
        grid-column: 1;
    }
    
    .showcase-item:nth-child(5),
    .showcase-item:nth-child(6) {
        display: none;
    }
}

/* 500px and below - Mobile Menu Activation */
@media (max-width: 500px) {
    .burger-menu {
        display: flex;
    }
    
    /* Splash Screen Text - Make smaller for mobile */
    .intro-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        letter-spacing: 6px;
        gap: 3px;
    }
    
    .space {
        width: 16px;
    }
    
    .logo-splash {
        width: 110px;
        height: 110px;
    }
    
    .intro-tagline {
        font-size: 0.85rem;
        letter-spacing: 5px;
        gap: 14px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        border-left: 1px solid rgba(197, 165, 114, 0.3);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
    }
    
    .nav-menu.mobile-active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(197, 165, 114, 0.2);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 18px 10px;
        font-size: 0.9rem;
        letter-spacing: 2px;
        text-align: left;
        transition: all 0.3s ease;
    }
    
    
    .nav-link:hover {
        padding-left: 20px;
        background: rgba(197, 165, 114, 0.1);
    }
    
    .nav-link.active {
        color: var(--gold);
        background: rgba(197, 165, 114, 0.15);
        padding-left: 20px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
    width: 100%;
}
    
    .nav-link.active::after {
        background: var(--gold);
        height: 2px;
    }
}

/* 426px - Mobile Large */
@media (max-width: 426px) {
    /* Splash Screen - Smaller for 426px */
    .intro-title {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem);
        letter-spacing: 5px;
        gap: 3px;
    }
    
    .space {
        width: 14px;
    }
    
    .logo-splash {
        width: 100px;
        height: 100px;
    }
    
    .intro-tagline {
        font-size: 0.8rem;
        letter-spacing: 4.5px;
        gap: 12px;
    }
    
    .nav-container,
    .content-container {
        padding: 0 20px;
    }
    
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }
    
    .hero-btn {
        padding: 10px 28px;
        font-size: 0.7rem;
    }
    
    .welcome-section,
    .heritage-section,
    .testimonials-section,
    .section-white-bg {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 12px;
    }
    
    .section-label {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .luxury-card {
        padding: 30px 24px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-text {
        font-size: 0.85rem;
    }
    
    .showcase-section {
        padding: 50px 0;
    }
    
    .showcase-container {
        padding: 0 20px;
    }
    
    .showcase-grid {
        grid-template-rows: repeat(4, 220px);
    }
    
    .heritage-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .testimonial-card {
        padding: 30px 24px;
    }
    
    .quote-mark {
        font-size: 2.5rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .slider-nav {
        padding: 0 15px;
    }
    
    .brand-logo-img {
        height: 75px;
        margin: -15px 0;
    }
    
    .footer-logo {
        height: 100px;
        margin: -22px 0;
    }
    
    .footer-grid {
        gap: 35px;
    }
    
    .grid-3-cols {
        gap: 25px;
        margin-top: 48px;
    }
}

/* 383px - Mobile Medium */
@media (max-width: 383px) {
    /* Splash Screen - Smaller for 383px */
    .intro-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        letter-spacing: 4px;
        gap: 2px;
    }
    
    .space {
        width: 12px;
    }
    
    .logo-splash {
        width: 90px;
        height: 90px;
    }
    
    .intro-tagline {
        font-size: 0.75rem;
        letter-spacing: 4px;
        gap: 10px;
    }
    
    .nav-container,
    .content-container {
        padding: 0 18px;
    }
    
   
    
    .hero-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        letter-spacing: 1.5px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 2vw, 0.95rem);
        letter-spacing: 1.5px;
    }
    
    .hero-btn {
        padding: 9px 24px;
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }
    
    .content-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
    
    .luxury-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .showcase-grid {
        grid-template-rows: repeat(4, 200px);
    }
    
    .heritage-text {
        font-size: 0.9rem;
    }
    
    .brand-logo-img {
        height: 68px;
        margin: -12px 0;
    }
    
    .footer-logo {
        height: 88px;
        margin: -18px 0;
    }
    
    .intro-title {
        font-size: clamp(2rem, 5vw, 3rem);
        letter-spacing: 8px;
    }
    
    .logo-splash {
        width: 120px;
        height: 120px;
    }
    
    .nav-menu {
        width: 260px;
        padding: 90px 25px 25px;
    }
}

/* 320px - Mobile Small */
@media (max-width: 320px) {
    /* Splash Screen - Smallest for 320px */
    .intro-title {
        font-size: clamp(1.2rem, 4.5vw, 1.8rem);
        letter-spacing: 3px;
        gap: 2px;
    }
    
    .space {
        width: 10px;
    }
    
    .logo-splash {
        width: 80px;
        height: 80px;
    }
    
    .intro-tagline {
        font-size: 0.7rem;
        letter-spacing: 3.5px;
        gap: 8px;
    }
    
    .nav-container,
    .content-container {
        padding: 0 15px;
    }
    
   
    
    .hero-title {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        letter-spacing: 1px;
        margin-bottom: 25px;
    }
    
    .hero-btn {
        padding: 8px 20px;
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    
    .hero-divider {
        width: 60px;
    }
    
    .welcome-section,
    .heritage-section,
    .testimonials-section,
    .section-white-bg {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
    }
    
    .content-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    
    .section-label {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .luxury-card {
        padding: 20px 16px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .icon-md {
        width: 2.2rem;
        height: 2.2rem;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .card-text {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .showcase-section {
        padding: 40px 0;
    }
    
    .showcase-container {
        padding: 0 15px;
    }
    
    .showcase-grid {
        grid-template-rows: repeat(4, 180px);
        gap: 12px;
    }
    
    .showcase-overlay h3 {
        font-size: 1.1rem;
    }
    
    .showcase-overlay p {
        font-size: 0.8rem;
    }
    
    .heritage-image {
        height: 300px;
    }
    
    .heritage-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .quote-mark {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .author-image {
        width: 45px;
        height: 45px;
    }
    
    .author-name {
        font-size: 0.85rem;
    }
    
    .author-title {
        font-size: 0.75rem;
    }
    
    .luxury-footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-logo {
        height: 92px;
        margin: -20px 0;
    }
    
    .brand-logo-img {
        height: 64px;
        margin: -10px 0;
    }
    
    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .footer-text,
    .footer-links a,
    .footer-info li,
    .footer-contact-item div {
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .icon-sm {
        width: 1.1rem;
        height: 1.1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .slider-nav {
        padding: 0 10px;
    }
    
    .slider-dots {
        gap: 8px;
        bottom: 15px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    .brand-logo-img {
        height: 62px;
        margin: -8px 0;
    }
    
    .footer-logo {
        height: 85px;
        margin: -18px 0;
    }
    
    .nav-container {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .nav-menu {
        width: 240px;
        padding: 80px 20px 20px;
    }
    
    .nav-link {
        padding: 15px 8px;
        font-size: 0.85rem;
    }
    
    .grid-3-cols {
        gap: 20px;
        margin-top: 40px;
    }
    
    .amenities-heading {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .amenities-list {
        font-size: 0.9rem;
        line-height: 2;
    }
}

/* Amenities Section Styles */
.amenities-heading {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.amenities-list {
    font-size: 1rem;
    line-height: 2.2;
    list-style: none;
    padding: 0;
}

.amenities-list li {
    color: var(--gray);
    transition: color 0.3s ease;
    cursor: pointer;
}

.amenities-list li:hover {
    color: var(--gold);
}

/* ==================== CUSTOM SCROLLBAR - SINGLE CLEAN DESIGN ==================== */

/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-left: 1px solid #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom,
        #d4af37 0%,
        #f0c14b 50%,
        #d4af37 100%
    );
    border: none;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom,
        #f0c14b 0%,
        #fff4d9 50%,
        #f0c14b 100%
    );
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(to bottom,
        #fff4d9 0%,
        #ffffff 50%,
        #fff4d9 100%
    );
    box-shadow: 0 0 20px rgba(255, 244, 217, 1);
}

/* Remove scrollbar arrows */
::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #0a0a0a;
}

/* Edge and IE */
body {
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* ==================== OFFERS SECTION ==================== */
.offers-section {
    padding: 100px 0;
    background: var(--white);
}

.offers-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.offers-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.offer-slider-single {
    display: block !important;
    opacity: 1 !important;
}

.offer-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.offer-slide.active {
    display: block;
    opacity: 1;
}

.offer-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 165, 114, 0.2);
    position: relative;
}

.offer-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

/* Simple time left display below image */
.offer-time-left {
    background: var(--navy);
    color: var(--gold);
    padding: 12px 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-top: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-time-left:hover {
    background: var(--gold);
    color: var(--navy);
}

.offer-time-left.expired {
    background: var(--gray);
    color: var(--white);
    border-color: var(--gray);
}



.countdown-timer {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    padding: 20px 35px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    border: 3px solid var(--gold);
    box-shadow: 
        0 8px 25px rgba(10, 22, 40, 0.4),
        0 0 0 1px rgba(197, 165, 114, 0.3),
        inset 0 2px 10px rgba(197, 165, 114, 0.2);
    backdrop-filter: blur(15px);
    display: inline-block;
    min-width: 280px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: countdownPulse 2s infinite;
    font-family: 'Inter', sans-serif;
}

.countdown-timer.expired {
    background: linear-gradient(135deg, #6B7280, #9CA3AF);
    border-color: #9CA3AF;
    color: var(--white);
    animation: none;
}

@keyframes countdownPulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(10, 22, 40, 0.4),
            0 0 0 1px rgba(197, 165, 114, 0.3),
            inset 0 2px 10px rgba(197, 165, 114, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(10, 22, 40, 0.4),
            0 0 0 1px rgba(197, 165, 114, 0.3),
            inset 0 2px 10px rgba(197, 165, 114, 0.2),
            0 0 20px rgba(197, 165, 114, 0.4);
    }
}

/* Countdown Modal Styles */
.countdown-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.countdown-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    background: var(--navy);
    color: var(--gold);
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.2);
    color: var(--gold-light);
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.full-countdown-timer {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    padding: 25px 40px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 25px rgba(10, 22, 40, 0.4);
    margin-bottom: 20px;
    animation: countdownPulse 2s infinite;
}

.modal-description {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.modal-whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.modal-whatsapp-btn .whatsapp-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}


/* Offers Navigation */
.offers-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.offers-prev,
.offers-next {
    width: 50px;
    height: 50px;
    background: rgba(197, 165, 114, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.offers-prev:hover,
.offers-next:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.offers-prev {
    left: -25px;
}

.offers-next {
    right: -25px;
}

/* Offers Dots */
.offers-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.offer-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(197, 165, 114, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

.offer-dot:hover {
    background: var(--gold-light);
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 50%;
}

/* WhatsApp Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 426px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Auto Popup Offer Modal Styles */
.auto-offer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.auto-offer-modal.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

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

.auto-modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 420px;
    width: 90%;
    position: relative;
    z-index: 10001;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: modalBounceIn 0.5s ease;
    overflow: hidden;
}

@keyframes modalBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-100px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

.auto-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--gold);
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10002;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.auto-modal-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--gold);
    color: var(--white);
}

.auto-modal-body {
    padding: 0;
    text-align: center;
}

.auto-offer-badge {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        background: linear-gradient(135deg, #FF6B6B, #FF4757);
    }
    50% {
        background: linear-gradient(135deg, #FF4757, #FF6B6B);
    }
}

.auto-offer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin: 15px 0;
    padding: 0 25px;
    line-height: 1.3;
}

.auto-offer-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.auto-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.auto-modal-content:hover .auto-offer-image img {
    transform: scale(1.05);
}

.auto-offer-details {
    padding: 20px 25px;
    background: linear-gradient(180deg, var(--white) 0%, rgba(197, 165, 114, 0.05) 100%);
}

.auto-offer-description {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.auto-countdown-timer {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: 0 6px 20px rgba(10, 22, 40, 0.4);
    margin: 0 auto 18px;
    animation: countdownPulse 2s infinite;
    display: inline-block;
}

.auto-modal-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    margin-bottom: 22px;
}

.auto-modal-book-btn:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.auto-modal-book-btn .whatsapp-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .full-countdown-timer {
        font-size: 1.1rem;
        padding: 20px 25px;
        min-width: 200px;
    }
    
    .modal-whatsapp-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .offer-time-left {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .full-countdown-timer {
        font-size: 1rem;
        padding: 15px 20px;
        min-width: 180px;
    }
    
    .modal-whatsapp-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Auto Popup Modal Mobile */
    .auto-modal-content {
        width: 95%;
        margin: 15px;
    }
    
    .auto-offer-title {
        font-size: 1.4rem;
        padding: 0 20px;
        margin: 15px 0;
    }
    
    .auto-offer-image {
        height: 200px;
    }
    
    .auto-offer-details {
        padding: 20px 20px;
    }
    
    .auto-offer-description {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .auto-countdown-timer {
        font-size: 1rem;
        padding: 15px 25px;
        margin-bottom: 20px;
    }
    
    .auto-modal-book-btn {
        padding: 15px 30px;
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .auto-modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }
}

/* Offers Section Responsive */
@media (max-width: 768px) {
    .offers-section {
        padding: 60px 0;
    }
    
    .offer-slide {
        margin: 0 10px;
    }
    
    
    
    
    .countdown-timer {
        font-size: 1.1rem;
        padding: 15px 25px;
        min-width: 220px;
        letter-spacing: 1px;
    }
    
    .offers-prev,
    .offers-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .offers-prev {
        left: -20px;
    }
    
    .offers-next {
        right: -20px;
    }
}

@media (max-width: 426px) {
    .offers-section {
        padding: 50px 0;
    }
    
    .offer-image {
        height: 250px;
    }
    
    
    
    
    .countdown-timer {
        font-size: 1rem;
        padding: 12px 20px;
        min-width: 200px;
        letter-spacing: 1px;
        border-width: 2px;
    }
    
    
    .offers-prev,
    .offers-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .offers-prev {
        left: -17px;
    }
    
    .offers-next {
        right: -17px;
    }
}