/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Logo-inspired Palette */
    --primary-dark: #2c3e2f;
    --primary-light: #f9f7f2;
    --accent-gold: #d4af37;
    --accent-sage: #5a7c5b;
    --text-primary: #2c3e2f;
    --text-secondary: #6b7c6b;
    --text-light: #ffffff;
    --border-light: #e5e5e5;
    --background-light: #faf8f3;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 40px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   DECORATIVE ELEMENTS
   =================================== */
.decorative-element {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    color: var(--accent-gold);
    width: 120px;
    height: 120px;
    opacity: 0.6;
}

/* Sun/rays positioning - top left */
.element-sun {
    top: 15%;
    left: 8%;
    animation: rotate 20s linear infinite;
}

/* Nest positioning - bottom right */
.element-nest {
    bottom: 12%;
    right: 10%;
}

/* Rays positioning - top right */
.element-rays {
    top: 20%;
    right: 8%;
    animation: pulse 4s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes sway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

@keyframes drift {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.section-header.center {
    text-align: center;
    margin-bottom: 4rem;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(248, 247, 244, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 85px;
    width: auto;
    transition: var(--transition);
    filter: brightness(1);
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
    transition: var(--transition);
    margin: 0;
    letter-spacing: 0.5px;
}

.logo:hover h1 {
    color: var(--accent-gold);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

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

.nav-links .cta-btn {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.nav-links .cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--accent-gold);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.nav-links .cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.nav-links .cta-btn:hover {
    color: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-dark);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 80px;
    text-align: center;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    opacity: 1;
    transform: scale(1);
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(139, 157, 131, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-indicator span {
    width: 4px;
    height: 10px;
    background-color: var(--text-secondary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

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

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(40px);
    }
    60% {
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideUpPop {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.95);
    }
    50% {
        opacity: 0.5;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   PHILOSOPHY SECTION
   =================================== */
.philosophy {
    padding: var(--section-padding) 0;
    background-color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 3rem;
}

.philosophy-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.stat-item:hover h3 {
    transform: scale(1.15);
    color: var(--accent-sage);
}

.stat-item p {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.philosophy-image {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.philosophy-image img,
.feature-image img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

.philosophy-image img {
    height: 500px;
}

.philosophy-image:hover img,
.feature-image:hover img {
    transform: scale(1.05);
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    padding: var(--section-padding) 0;
    background-color: var(--primary-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    height: 350px;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

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

.gallery-overlay h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ===================================
   ROOMS SECTION
   =================================== */
.rooms {
    padding: var(--section-padding) 0;
    background-color: var(--text-light);
}

.section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 4rem;
    line-height: 1.8;
}

.room-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.room-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.room-item:nth-child(even) {
    direction: rtl;
}

.room-item:nth-child(even) > * {
    direction: ltr;
}

.room-image {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    height: 400px;
}

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

.room-item:hover .room-image img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(201, 169, 97, 0);
    }
}

.room-content h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.room-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.room-features {
    list-style: none;
}

.room-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.room-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===================================
   FACILITIES DETAIL SECTION
   =================================== */
.facilities-detail {
    padding: var(--section-padding) 0;
    background-color: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.facility-card {
    background-color: var(--text-light);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.facility-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

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

.facility-info {
    padding: 2rem;
}

.facility-info h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.facility-info p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   VIDEO TOUR SECTION
   =================================== */
.video-tour {
    padding: var(--section-padding) 0;
    background-color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.video-item {
    background-color: var(--primary-light);
    padding: 1.5rem;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.video-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-sage));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.video-item:hover::after {
    transform: scaleX(1);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-item video {
    width: 100%;
    border-radius: 2px;
    margin-bottom: 1rem;
    display: block;
    background-color: #000;
}

.video-item h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    text-align: center;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: var(--section-padding) 0;
    background-color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.feature-list svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.feature-image img {
    height: 500px;
}

/* Reveal Animations */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-image {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.animate {
    transform: translateY(50px);
    opacity: 0;
}

.reveal-left.animate {
    transform: translateX(-50px);
    opacity: 0;
}

.reveal-right.animate {
    transform: translateX(50px);
    opacity: 0;
}

.reveal-image.animate {
    transform: scale(0.9);
    opacity: 0;
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-image.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ===================================
   AMENITIES SECTION
   =================================== */
.amenities {
    padding: var(--section-padding) 0;
    background-color: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.amenity-card {
    background-color: var(--text-light);
    padding: 3rem 2rem;
    border-radius: 2px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.5s ease;
}

.amenity-card:hover::before {
    left: 100%;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-sage);
    animation: shake 0.5s ease-in-out;
}

.amenity-icon svg {
    width: 100%;
    height: 100%;
}

.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.amenity-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   LOCATION SECTION
   =================================== */
.location {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #e8e6e1 100%);
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.location-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-sage));
    transition: height 0.4s ease;
}

.location-card:hover::before {
    height: 100%;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-sage));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    transition: var(--transition);
}

.location-card:hover .location-icon {
    transform: rotate(5deg) scale(1.1);
}

.location-icon svg {
    width: 30px;
    height: 30px;
}

.location-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.location-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: 8px;
    transition: var(--transition);
}

.location-item:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: translateX(5px);
}

.place-name {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    flex: 1;
}

.place-distance {
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(201, 169, 97, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
    margin-left: 1rem;
}

/* Old location styles - kept for backward compatibility */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.location-category h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-gold);
}

.location-category ul {
    list-style: none;
}

.location-category ul li {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.location-category ul li span:first-child {
    color: var(--text-primary);
    flex: 1;
}

.distance {
    color: var(--accent-sage);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 1rem;
}

/* ===================================
   TESTIMONIAL SECTION
   =================================== */
.testimonial {
    padding: var(--section-padding) 0;
    background-color: var(--primary-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.testimonial .section-header {
    margin-bottom: 3rem;
}

.testimonial .section-label,
.testimonial .section-title {
    color: var(--text-light);
}

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

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-item {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quote-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    color: var(--accent-gold);
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

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

.testimonial blockquote {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
    padding: 0 2rem;
}

.testimonial cite {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-style: normal;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background-color: var(--accent-gold);
    transform: scale(1.3);
}


/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: var(--section-padding) 0;
    background-color: var(--primary-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--text-light);
    margin-bottom: 1rem;
    border-radius: 2px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 0.5rem;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background-color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-item span {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

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

.contact-form {
    background-color: var(--primary-light);
    padding: 3rem;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    background-color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-dark);
    color: var(--text-light);
    border: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-gold);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-submit span {
    position: relative;
    z-index: 1;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.developer-credit {
    margin-top: 0.5rem !important;
}

.developer-credit a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.developer-credit a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
        --container-padding: 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .philosophy-grid,
    .contact-grid,
    .features-grid,
    .room-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .room-item:nth-child(even) {
        direction: ltr;
    }
    
    .feature-image {
        order: -1;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonial blockquote {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .philosophy-image img,
    .feature-image img,
    .room-image {
        height: 300px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    
    .room-showcase {
        gap: 3rem;
    }
    
    .amenity-card {
        padding: 2rem 1.5rem;
    }
    
    .location-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card {
        padding: 2rem;
    }
    
    .location-icon {
        width: 50px;
        height: 50px;
    }
    
    .location-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .testimonial blockquote {
        font-size: 1.25rem;
        padding: 0 1rem;
    }
    
    .testimonial-slider {
        min-height: 400px;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Legal Sections */
.legal-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.legal-content .last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: var(--accent-sage);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-content p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    line-height: 1.8;
    color: #333;
    margin-bottom: 0.5rem;
}

.legal-section .back-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background: var(--accent-sage);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.legal-section .back-btn:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
    }
    
    .legal-content h2 {
        font-size: 2rem;
    }
    
    .legal-content h3 {
        font-size: 1.25rem;
    }
}
