:root {
    /* Traditional Greek Color Palette - Reverting to vibrant "Old Colors" */
    --primary-color: #aa0000; /* Vibrant Traditional Red */
    --primary-light: #cc3333;
    --primary-dark: #880000;
    --secondary-color: #1a1a1a; /* Traditional Charcoal/Black */
    --accent-color: #d4af37; /* Classic Gold */
    --bg-light: #ffffff; /* Pure White */
    --bg-stone: #f8f8f8; /* Light Neutral Gray */
    --text-dark: #222222;
    --text-muted: #666666;
    --text-light: #ffffff;
    
    /* Typography - Fluid System */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Lobster', cursive;
    
    /* UI elements - Refined Constants */
    --transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.4s ease;
    --transition-smooth: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.6s ease;
    --container-width: 1400px;
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    
    /* Deep Shadows & Glassmorphism */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    /* Spacing */
    --section-pad: 8rem 2rem;
    --section-pad-mobile: 5rem 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light); 
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: pageFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* Base Animations & Visibility - Optimized */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.fade-up.visible, .fade-right.visible, .fade-left.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
    .fade-right, .fade-left {
        transform: translateY(20px) !important; /* Change to vertical on mobile */
    }
}

/* Sticky Navbar - Glassmorphism Implementation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background-color: rgba(30, 20, 10, 0.85); /* Dark rustic brown */
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
}

.navbar.scrolled .nav-links a {
    color: var(--text-light);
}

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

.brand {
    font-family: var(--font-logo);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--accent-color);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1002;
    transition: var(--transition-smooth);
}

.brand span {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1.4rem;
    margin-left: 0.5rem;
}

.navbar.scrolled .brand {
    color: var(--accent-color);
}

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

.nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.5rem 0;
}

.navbar.scrolled .nav-links a {
    color: var(--text-light);
}

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

/* Language Switcher UI */
.lang-selector {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.lang-selector select {
    background: transparent;
    border: none;
    color: #ffffff; /* White when at the top */
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    padding-right: 15px;
    outline: none;
    transition: var(--transition);
}
.navbar.scrolled .lang-selector select {
    color: #ffffff;
}
.lang-selector select option {
    color: #000;
}
.lang-selector::after {
    content: '▼';
    font-size: 0.6rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: rgba(30, 20, 10, 0.98);
    backdrop-filter: blur(20px);
    min-width: 240px;
    padding: 1.2rem 0;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
    width: 100%;
}

.dropdown-menu a {
    display: block !important;
    padding: 0.9rem 2.5rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-color) !important;
    padding-left: 2.8rem !important;
}

.arrow {
    display: inline-block;
    font-size: 0.7rem;
    margin-left: 6px;
    opacity: 0.6;
    transition: transform 0.3s;
    vertical-align: middle;
}

.dropdown:hover > a .arrow {
    transform: rotate(180deg);
}

/* Mobile Dropdown Adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 0.5rem;
        display: none; /* Hidden by default on mobile, toggled if needed or just display all */
        text-align: center;
    }
    
    .dropdown.active .dropdown-menu {
        display: flex;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 1rem !important;
        font-size: 1.1rem !important;
        border-bottom: none;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: #fff;
}

.navbar.scrolled .hamburger .bar {
    background-color: #fff;
}

/* Hero Section - Immersive Experience */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

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

@keyframes kenBurns {
    0% { transform: scale(1); filter: brightness(1); }
    100% { transform: scale(1.15); filter: brightness(0.9); }
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 30s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    backdrop-filter: brightness(0.9);
    z-index: 1;
}

.overlay {
    display: none; /* Decommission since we now use ::after on the parent */
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-transform: uppercase;
    display: block;
}

.hero-title {
    font-family: var(--font-logo);
    font-size: clamp(4.5rem, 12vw, 8.5rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: #ffffff;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections Common - Refined Spacing & Headings */
.section {
    padding: var(--section-pad);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 2rem;
}

.section-subtitle {
    display: block;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
}

.about-content .section-subtitle {
    text-align: left;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    border-radius: 2px;
}

.visible .section-title::after {
    width: 80px;
}

/* Buttons - Modern & Tactile */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.8rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 10px 30px hsla(20, 50%, 52%, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px hsla(20, 50%, 52%, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--secondary-color);
    border-color: var(--text-light);
    transform: translateY(-5px);
}

/* Products Section - Refined Grid & Cards */
.products-section {
    background-color: var(--bg-stone);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3.5rem;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card {
        aspect-ratio: 1/1;
    }
}

.product-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: #2a2015;
    box-shadow: var(--shadow-md);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.product-card:hover .product-img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-family: var(--font-heading);
}

.product-info p {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 300;
}

.view-more {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .view-more {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .view-more {
        opacity: 0.9;
        transform: none;
        margin-top: 1rem;
        font-size: 0.8rem;
    }
}

.product-tap-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(170, 0, 0, 0.7); /* Traditional Red overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    pointer-events: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-card:hover .product-tap-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .product-tap-overlay {
        opacity: 0.9;
        font-size: 0.8rem;
        padding: 0.6rem 1.1rem;
        background: rgba(30, 20, 10, 0.65); /* Dark rustic brown on mobile */
    }
}

/* About Section - Balanced Layout */
.about-section {
    background-color: var(--bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Shop Gallery - Elegant Grid */
.about-gallery-section {
    margin-top: 6rem;
    padding-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Specific Layout - Masonry-like spans */
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item { height: 250px; }
    .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; }
}

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

.about-content .section-title {
    text-align: left;
    margin-bottom: 2.5rem;
}

.about-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    border-radius: 2px;
}

.visible .section-title::after {
    width: 80px;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.about-image-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

/* Contact & Map Section */
.contact {
    background-color: #ffffff;
    padding: var(--section-pad);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr 1.2fr;
    }
}

@media (max-width: 768px) {
    .contact-container {
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .contact-info-panel, .contact-form-panel {
        padding: 2.5rem 1.5rem !important;
        width: 100%;
        margin: 0 auto;
    }

    .contact-info-panel h3, .contact-form-panel h3 {
        font-size: 1.75rem;
        text-align: center;
    }

    .contact-desc {
        text-align: center;
    }

    .contact-details-grid {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-text {
        align-items: center;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    
    .contact-value {
        font-size: 0.95rem;
    }
    
    .contact-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-panel h3, .contact-form-panel h3 {
        margin-bottom: 1rem;
    }

    .map-section {
        margin-top: 2.5rem;
        height: 300px;
        border-radius: 12px;
    }
}

.contact-info-panel, .contact-form-panel {
    background: #fff;
    padding: 3.5rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-info-panel {
    background: linear-gradient(145deg, var(--primary-color), hsl(20, 50%, 42%));
    color: #fff;
}

.contact-info-panel h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}
.contact-desc {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    margin-bottom: 0.2rem;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Modern Form */
.contact-form-panel h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.modern-form .form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background-color: var(--bg-stone);
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.modern-form .form-control:focus {
    outline: none;
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(20, 50, 52, 0.05);
}

.modern-form textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Map Section */
.map-section {
    margin-top: 5rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    height: 500px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Map section is styled within the global mobile media queries if needed */


/* FAQ Section - Interactive & Clean */
.faq-section {
    padding: var(--section-pad);
    background-color: var(--bg-stone);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-question h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-stone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-muted);
    transition: var(--transition);
}

.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    background: var(--primary-color);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background-color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 2.5rem 2.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}


/* Removing duplicated contact section */

/* Footer - Elegant & Detailed */
.footer {
    background: linear-gradient(rgba(30, 20, 10, 0.92), rgba(30, 20, 10, 0.95)), url('assets/footer-wood.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 10rem 0 4rem;
    position: relative;
    border-top: 8px solid var(--accent-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand {
    font-family: var(--font-logo);
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-brand span {
    color: var(--accent-color);
}

.footer-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9); /* More white */
    font-size: 1rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    :root { --section-pad: 6rem 2rem; }
    .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
    }

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

    .hamburger { display: block; z-index: 1002; background: transparent; border: none; }
    .hamburger .bar { background: #fff; }
    .navbar.scrolled .hamburger .bar { background: #fff; }
    
    .hero-title { font-size: 3.5rem; }
    .about-container { grid-template-columns: 1fr; gap: 3rem; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-flex { flex-direction: column; text-align: center; gap: 1.5rem; }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-light);
    overflow: hidden;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-slider {
    overflow: hidden;
    cursor: grab;
}

.testimonials-slider:active {
    cursor: grabbing;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 30px;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--bg-stone);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    min-width: 250px;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.slider-arrow:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow { left: 0; }
.next-arrow { right: 0; }

@media (max-width: 1024px) {
    .testimonial-slide { flex: 0 0 calc(50% - 15px); }
    .testimonials-slider-wrapper { padding: 0 40px; }
}

@media (max-width: 768px) {
    .testimonial-slide { flex: 0 0 100%; min-width: unset; }
    .testimonials-slider-wrapper { padding: 0 30px; }
    .slider-arrow { width: 36px; height: 36px; }
    .testimonials-track { gap: 15px; }
    .testimonial-slide { padding: 1.5rem; }
}

/* Subpages & Modals */
.subpage-header {
    padding-top: 12rem;
    padding-bottom: 2rem;
}

.subpage-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.subpage-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.subpage-hero .hero-title {
    color: #ffffff !important;
}

.subpage-hero .hero-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

.subpage-grid-section {
    padding: 0 0 10rem 0;
}

.filter-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    padding-top: 2rem;
}

.filter-btn {
    padding: 0.7rem 1.4rem;
    background: #f5f5f7;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 100px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-dark);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(170, 0, 0, 0.15);
}

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

.item-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
}

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

.item-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.item-card h3 {
    padding: 1.5rem 1.2rem;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    color: var(--secondary-color);
    background: white;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.item-card:hover h3 {
    color: var(--primary-color);
}

/* Lightbox Modal - Apple Style */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 2rem;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 1000px;
    width: 100%;
    position: relative;
    cursor: default;
    transform: scale(0.92);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: #fff;
}

.lightbox-close svg {
    width: 20px;
    height: 20px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

/* AI Chatbot System - Premium Glassmorphism */
.ai-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 40px hsla(20, 50%, 52%, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
}

.chat-toggle-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary-dark);
}

.chat-container {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.chat-container.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chat-header {
    padding: 1.5rem 2rem;
    background: var(--secondary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    background: #fdfdfd;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chat-msg {
    max-width: 85%;
    padding: 1.2rem 1.5rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    animation: slideIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.ai-msg {
    align-self: flex-start;
    background: var(--bg-stone);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
}

.user-msg {
    align-self: flex-end;
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-input-area {
    padding: 1.5rem 2rem;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 1rem;
    align-items: center;
}

#chat-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    background: transparent;
}

#chat-send-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s;
}

#chat-send-btn:hover {
    transform: scale(1.1);
}

.typing-indicator {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-muted);
}

/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

@media (max-width: 480px) {
    .chat-container {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 100px;
    }
}
