/* ========================================
   LILLA STUGA - Apple Style Website
   ======================================== */

/* --- CSS Variables --- */
:root {
    /* Nordic Color Palette - Inspired by Scandinavian nature */
    --bg-color: #F5F5F0;
    --bg-secondary: #E8E8E0;
    --text-primary: #2C3338;
    --text-secondary: #6B7280;
    --accent-blue: #163C55;
    --accent-blue-light: #2d5a7b;
    --accent-teal: #5A8F8F;
    --accent-orange: #D4A574;
    --accent-green: #7A9B76;
    --accent-warm: #C9B8A8;
    --white: #FEFEFE;
    --black: #1A1A1A;
    --ice-blue: #D9E4E8;
    --forest-green: #4A5F54;
    --stone-gray: #B8BDB5;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 24px;
    
    /* Typography - Nordic minimalist fonts */
    --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "Segoe UI", Roboto, sans-serif;
    --font-serif: "Georgia", "Times New Roman", serif;
    
    /* Effects */
    --border-radius: 16px;
    --border-radius-small: 8px;
    --transition-smooth: cubic-bezier(0.28, 0.11, 0.32, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Nordic texture background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(90, 143, 143, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(122, 155, 118, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 248, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(253, 252, 248, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: -0.02em;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-primary);
    transition: opacity 0.2s;
    position: relative;
}

.nav-links a:not(.btn-nav):hover {
    opacity: 0.6;
}

.btn-nav {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
    color: var(--white);
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

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

.btn-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(90, 143, 143, 0.3);
}

/* Specific styling for the book button in nav */
.btn-nav-book {
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px var(--container-padding) 60px;
    position: relative;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, var(--ice-blue) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, var(--stone-gray) 0%, transparent 20%);
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    max-width: 980px;
    margin: 0 auto;
}

.logo-wrapper {
    margin-bottom: 48px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 48px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(22, 60, 85, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-teal);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-teal);
    transition: width 0.3s var(--transition-smooth);
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: var(--accent-teal);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s infinite;
}

/* --- Showcase Section --- */
.showcase {
    padding: 0 var(--container-padding) var(--section-padding);
}

.showcase-image {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
    height: 700px;
    border: 8px solid var(--white);
    background: var(--white);
}

.showcase-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius);
    pointer-events: none;
}

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

.showcase-image:hover .parallax-img {
    transform: scale(1.02);
}

/* --- Features Section --- */
.features {
    padding: var(--section-padding) 0;
}

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

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--stone-gray);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-teal);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--accent-teal);
    background: var(--ice-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

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

.feature-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-card.dark {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--accent-blue) 100%);
    color: var(--white);
    border: none;
}

.feature-card.dark::before {
    background: linear-gradient(180deg, var(--accent-warm), var(--accent-orange));
}

.feature-card.dark p {
    color: rgba(255, 255, 255, 0.85);
}

.feature-card.dark h3 {
    color: var(--white);
}

.feature-card.dark .feature-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-orange);
}

/* --- Gallery Section --- */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-small);
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--transition-smooth);
}

.gallery-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

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

/* --- Statement --- */
.statement {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--black) 100%);
    color: var(--white);
    padding: 200px var(--container-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.statement-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Booking Section --- */
.booking {
    padding: var(--section-padding) var(--container-padding);
    text-align: center;
}

.booking-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.booking-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 18px 42px;
    border-radius: 100px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-booking:hover::before {
    left: 100%;
}

.btn-booking svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--transition-smooth);
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(90, 143, 143, 0.3);
}

.btn-booking:hover svg {
    transform: translateX(4px);
}

/* --- Contact Section --- */
.contact {
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--ice-blue) 100%);
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

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

.contact-item a {
    color: var(--accent-blue);
    font-weight: 500;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--accent-teal);
}

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

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--stone-gray);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--stone-gray);
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    font-family: var(--font-family);
    color: var(--text-primary);
    background: var(--bg-color);
    transition: all 0.3s var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(90, 143, 143, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 100px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(90, 143, 143, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--transition-smooth);
}

.btn-submit:hover svg {
    transform: translateX(4px) rotate(-10deg);
}

/* --- Footer --- */
.footer {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 60px var(--container-padding) 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 48px;
    height: auto;
}

.footer-logo p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.footer-social a {
    display: inline-block;
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

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

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

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

@keyframes wheelScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

.fade-in {
    animation: fadeIn 1s var(--transition-smooth) forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-smooth) forwards;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 32px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        transition: right 0.4s var(--transition-smooth);
        z-index: 1000;
        align-items: flex-start;
    }

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

    .nav-links a {
        font-size: 1.25rem;
        font-weight: 500;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--bg-secondary);
    }

    .nav-links .btn-nav {
        background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
        color: var(--white) !important;
        padding: 16px 32px;
        text-align: center;
        border-radius: 100px;
        border: none;
        margin-top: 20px;
    }

    .nav-links .btn-nav-book {
        color: var(--white) !important;
    }

    .menu-toggle {
        display: flex;
    }

    /* Mobile overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .hero {
        padding: 120px var(--container-padding) 60px;
    }

    .hero-logo {
        width: 140px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }

    .showcase-image {
        height: 400px;
        border-width: 4px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        min-height: 320px;
        padding: 36px 28px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .gallery-grid {
        gap: 12px;
    }

    .gallery-item {
        border-width: 3px;
    }

    .statement {
        padding: 120px var(--container-padding);
    }

    .statement-text {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .booking {
        padding: 80px var(--container-padding);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

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

/* --- New Hero Section --- */
.hero-new {
    padding: 160px 0 80px;
    background-color: var(--bg-color);
}

.hero-new .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text-content {
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-image-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.02);
}

/* --- New Features Section --- */
.features-new {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.feature-item {
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    transition: transform 0.3s var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--accent-blue);
}

.feature-item p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    color: var(--accent-teal);
}

/* --- Details Section --- */
.details-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-color);
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.detail-item {
    padding: 24px;
    background: var(--white);
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-soft);
}

.detail-item h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.detail-item p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* --- Spaces Section --- */
.spaces-section {
    padding: var(--section-padding) 0;
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.space-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
}

.space-item.full-width {
    grid-column: span 2;
    height: 500px;
}

.space-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

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

.space-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.9);
    padding: 16px 24px;
    border-radius: var(--border-radius-small);
    backdrop-filter: blur(10px);
}

.space-info h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.space-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: var(--section-padding) 0;
    background-color: var(--accent-blue);
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.testimonial-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--accent-orange);
}

.testimonial-item p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.9;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

/* --- Activities Section --- */
.activities-section {
    padding: var(--section-padding) 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.activity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: transform 0.3s var(--transition-smooth);
    text-align: center;
    height: 100%;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.activity-icon {
    font-size: 2.5rem;
}

@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .activity-item {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .activity-icon {
        font-size: 2rem;
    }
    
    .activity-item span {
        font-size: 0.875rem;
    }
}

/* --- Contact Footer --- */
.contact-footer {
    background-color: var(--text-primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.footer-contact-info a, .footer-pages a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-contact-info a:hover, .footer-pages a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

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

.social-links a {
    color: inherit;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .hero-new .container,
    .features-grid-new,
    .details-grid,
    .spaces-grid,
    .testimonials-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .space-item.full-width,
    .space-item.half-width {
        grid-column: span 1;
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Contact Form Section --- */
.contact-form-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-secondary);
}

.contact-form-new {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-small);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

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

.btn-submit-new {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit-new:hover {
    background-color: var(--accent-blue-light);
}

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

/* --- FAQ Section --- */
.faq-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-secondary);
}

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s;
}

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

.faq-question svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--text-primary);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Infinite Gallery Section --- */
.infinite-gallery-section {
    padding: 60px 0;
    overflow: hidden;
}

.gallery-toggle-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.btn-gallery-toggle {
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gallery-toggle:hover {
    background: var(--text-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-gallery-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--transition-smooth);
}

.btn-gallery-toggle.active svg {
    transform: rotate(180deg);
}

.gallery-carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.5s ease, max-height 0.5s ease;
    overflow: hidden;
}

.gallery-carousel-wrapper.visible {
    opacity: 1;
    max-height: 2000px; /* Arbitrary large height */
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scroll 40s linear infinite;
}

.carousel-track.reverse {
    animation-direction: reverse;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    position: relative;
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.02);
}

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

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    pointer-events: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Moves half the width (the original set) */
    }
}

/* --- Image Modal --- */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

#modalCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-size: 1.2rem;
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

@media (max-width: 768px) {
    .carousel-item {
        width: 250px;
        height: 160px;
    }
}

/* --- Location Section --- */
.location-section {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-text h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--accent-blue);
}

.location-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 500;
}

.location-text p {
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.curiosities {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
}

.curiosities h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--accent-blue);
}

.curiosity-list {
    list-style: none;
    padding: 0;
}

.curiosity-list li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

.curiosity-list li::before {
    content: '•';
    color: var(--accent-teal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* --- Updated Activities Section --- */
.activity-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
    display: block;
}

/* --- Footer CIN --- */
.footer-cin {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
