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

body {
    font-family: 'Inter', sans-serif;
    background: url('media/background.jpg') center/cover no-repeat fixed;
    color: #e8f5f5;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

/* Language Selection Popup */
.language-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-popup.show {
    opacity: 1;
}

.language-popup-content {
    background: rgba(26, 51, 51, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 32px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(64, 224, 208, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-width: 600px;
    width: 90%;
}

.language-popup.show .language-popup-content {
    transform: scale(1);
}

.language-popup-content h2 {
    font-family: 'Anybody', sans-serif;
    font-size: 3rem;
    color: #40E0D0;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.language-popup-content p {
    font-size: 1.2rem;
    color: #8dd3c7;
    margin-bottom: 40px;
    font-weight: 300;
}

.language-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.language-btn {
    background: rgba(64, 224, 208, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(64, 224, 208, 0.4);
    border-radius: 20px;
    padding: 25px 45px;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #40E0D0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.language-btn:hover {
    background: rgba(64, 224, 208, 0.3);
    border-color: #40E0D0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 36px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(64, 224, 208, 0.4);
}

.language-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.language-btn .flag {
    font-size: 4rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.language-btn span:last-child {
    font-weight: 500;
    letter-spacing: 1px;
}

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-lightbox.show {
    opacity: 1;
}

.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: rgba(26, 51, 51, 0.3);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(64, 224, 208, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(64, 224, 208, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    color: #40E0D0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: rgba(64, 224, 208, 0.4);
    border-color: #40E0D0;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.6);
}

.lightbox-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Reserve Button */
.reserve-btn {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.25), rgba(74, 124, 42, 0.25));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 16px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #40E0D0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.reserve-btn:hover {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.35), rgba(74, 124, 42, 0.35));
    border-color: #40E0D0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.4);
}

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

/* Reserve Form Popup */
.reserve-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10002;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.reserve-popup.show {
    opacity: 1;
}

.reserve-popup-content {
    position: relative;
    background: rgba(26, 51, 51, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 32px;
    padding: 50px 60px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(64, 224, 208, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.reserve-popup.show .reserve-popup-content {
    transform: scale(1);
}

.reserve-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(64, 224, 208, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    color: #40E0D0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
    padding: 0;
}

.reserve-close:hover {
    background: rgba(64, 224, 208, 0.4);
    border-color: #40E0D0;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.6);
}

.reserve-close:active {
    transform: rotate(90deg) scale(0.95);
}

.reserve-popup-content h2 {
    font-family: 'Anybody', sans-serif;
    font-size: 2.5rem;
    color: #40E0D0;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.reserve-subtitle {
    font-size: 1.1rem;
    color: #8dd3c7;
    margin-bottom: 35px;
    font-weight: 300;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    color: #40E0D0;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(64, 224, 208, 0.3);
    border-radius: 12px;
    color: #e8f5f5;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #40E0D0;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(64, 224, 208, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(232, 245, 245, 0.5);
}

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

.reserve-submit-btn {
    width: 100%;
    padding: 16px 35px;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.25), rgba(74, 124, 42, 0.25));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #40E0D0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
}

.reserve-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.35), rgba(74, 124, 42, 0.35));
    border-color: #40E0D0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.4);
}

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

.reserve-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.reserve-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    display: none;
}

.reserve-message.success {
    display: block;
    background: rgba(74, 124, 42, 0.3);
    border: 2px solid rgba(74, 124, 42, 0.6);
    color: #9acd32;
}

.reserve-message.error {
    display: block;
    background: rgba(220, 20, 60, 0.3);
    border: 2px solid rgba(220, 20, 60, 0.6);
    color: #ff6b6b;
}

/* Floating Leaves Animation - Behind Grid */
.leaves-back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Floating Leaves - In Front (Minimal) */
.leaves-front {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: float-leaf linear infinite;
    opacity: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.leaf-1 {
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.leaf-2 {
    left: 30%;
    animation-duration: 18s;
    animation-delay: 3s;
    width: 35px;
    height: 35px;
}

.leaf-3 {
    left: 50%;
    animation-duration: 20s;
    animation-delay: 6s;
    width: 45px;
    height: 45px;
}

.leaf-4 {
    left: 70%;
    animation-duration: 16s;
    animation-delay: 2s;
}

.leaf-5 {
    left: 85%;
    animation-duration: 19s;
    animation-delay: 8s;
    width: 38px;
    height: 38px;
}

.leaf-6 {
    left: 20%;
    animation-duration: 17s;
    animation-delay: 5s;
    width: 42px;
    height: 42px;
}

/* Front Leaves - Minimal and Subtle */
.leaf-front-1 {
    left: 15%;
    animation-duration: 22s;
    animation-delay: 4s;
    width: 50px;
    height: 50px;
    opacity: 0 !important;
}

.leaf-front-2 {
    left: 75%;
    animation-duration: 25s;
    animation-delay: 10s;
    width: 45px;
    height: 45px;
    opacity: 0 !important;
}

@keyframes float-leaf-front {
    0% {
        top: -10%;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        top: 110%;
        opacity: 0;
        transform: translateX(80px) rotate(360deg);
    }
}

.leaves-front .leaf {
    animation-name: float-leaf-front;
}

@keyframes float-leaf {
    0% {
        top: -10%;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        top: 110%;
        opacity: 0;
        transform: translateX(100px) rotate(360deg);
    }
}

/* Grid Container */
.grid-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(19, 1fr);
    grid-template-rows: repeat(9, 1fr);
    gap: 20px;
    padding: 20px;
    height: 100vh;
    width: 100vw;
}

/* Glassmorphism Effect */
.glass-box {
    background: rgba(26, 51, 51, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.5),
        inset 0 1px 1px 0 rgba(64, 224, 208, 0.15);
}

.glass-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 224, 208, 0.15), transparent);
    transition: left 0.5s;
}

.glass-box:hover::before {
    left: 100%;
}

.glass-box:hover {
    background: rgba(26, 51, 51, 0.35);
    border: 1px solid rgba(64, 224, 208, 0.5);
    transform: translateY(-5px);
    box-shadow: 
        0 12px 48px 0 rgba(0, 0, 0, 0.6),
        inset 0 1px 1px 0 rgba(64, 224, 208, 0.25);
}

/* Box Layouts */
/* Logo - Top Center (Floating Badge - No Glass Box) */
.box-logo {
    grid-column: 5 / 16;
    grid-row: 1 / 7;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.box-logo::before {
    display: none;
}

.box-logo:hover {
    background: none;
    border: none;
    transform: none;
    box-shadow: none;
}

/* Text/Mission Box - Top Left (includes contact) */
.box-mission {
    grid-column: 1 / 9;
    grid-row: 1 / 6;
}

/* Gallery - Top Right */
.box-gallery {
    grid-column: 12 / 20;
    grid-row: 1 / 6;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

/* Gallery bottom controls wrapper */
.box-gallery > div:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

/* Color Options - Bottom Left */
.box-colors {
    grid-column: 1 / 5;
    grid-row: 6 / 10;
}

/* Video - Bottom Center (Large) */
.box-video {
    grid-column: 5 / 16;
    grid-row: 6 / 10;
}

/* Artisan/Luis - Bottom Right */
.box-artisan {
    grid-column: 16 / 20;
    grid-row: 6 / 10;
}

/* Contact - Merged into Mission Box */
.box-contact {
    grid-column: 1 / 5;
    grid-row: 1 / 6;
    display: none;
}

/* Logo Styling - Floating Badge */
.logo-image {
    width: auto;
    max-width: 90%;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 40px rgba(64, 224, 208, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
    margin-top: 10px;
}

.box-logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 50px rgba(64, 224, 208, 0.5));
}

/* Tagline Styling */
.tagline {
    font-family: 'Anybody', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #40E0D0;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 0.95rem;
    color: #8dd3c7;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Video Box */
.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.1);
}

.video-placeholder svg circle {
    stroke: #40E0D0;
}

.video-placeholder svg path {
    fill: #40E0D0;
}

.video-placeholder svg {
    filter: drop-shadow(0 4px 12px rgba(64, 224, 208, 0.5));
}

.video-label {
    font-family: 'Anybody', sans-serif;
    font-size: 1.8rem;
    color: #40E0D0;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.video-preview {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.box-video:hover .video-preview {
    transform: scale(1.05);
}

/* Mission Box */
.icon-leaf {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.box-mission h3 {
    font-family: 'Anybody', sans-serif;
    font-size: 2rem;
    color: #40E0D0;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.box-mission p {
    font-size: 1rem;
    color: #8dd3c7;
    text-align: center;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.box-mission blockquote {
    font-family: 'Anybody', sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #40E0D0;
    text-align: center;
    line-height: 1.5;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(64, 224, 208, 0.3);
}

.mission-contact {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(64, 224, 208, 0.3);
}

.mission-contact h4 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.4rem;
    color: #40E0D0;
    margin-bottom: 12px;
    text-align: center;
}

.mission-contact p {
    font-size: 0.9rem;
    color: #8dd3c7;
    text-align: center;
    margin-bottom: 8px;
}

/* Gallery Box - Slider */
.gallery-slider {
    width: 100%;
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Gallery arrows - now positioned horizontally */
.gallery-arrow {
    position: static;
    background: rgba(64, 224, 208, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 224, 208, 0.5);
    color: #40E0D0;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-arrow:hover {
    background: rgba(64, 224, 208, 0.5);
    transform: scale(1.1);
}

.gallery-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(64, 224, 208, 0.3);
    border: 1px solid rgba(64, 224, 208, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #40E0D0;
    width: 30px;
    border-radius: 5px;
}

.indicator:hover {
    background: rgba(64, 224, 208, 0.6);
}

.gallery-label {
    font-family: 'Anybody', sans-serif;
    font-size: 1.2rem;
    color: #40E0D0;
    text-align: center;
    font-weight: 500;
    margin: 0;
}

/* Gardener Box */
.box-artisan {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.artisan-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.box-artisan:hover .artisan-image {
    transform: scale(1.05);
}

.artisan-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 25px;
}

.artisan-overlay h3 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.6rem;
    color: #40E0D0;
    margin-bottom: 5px;
}

.artisan-overlay p {
    font-size: 1rem;
    color: #CD7F32;
    font-weight: 400;
}

/* Color Options Box - Square with Preview */
.box-colors {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
}

.box-colors h4 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.6rem;
    color: #40E0D0;
    margin-bottom: 15px;
    text-align: center;
}

.color-preview {
    flex: 1;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-preview img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.color-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}

.color-circle {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
}

.color-circle:hover {
    transform: scale(1.15);
    border-color: rgba(64, 224, 208, 0.5);
}

.color-circle.active {
    border-color: #40E0D0;
    box-shadow: 0 0 15px rgba(64, 224, 208, 0.6);
}

.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.color-circle:hover .color-dot {
    box-shadow: 0 6px 20px rgba(64, 224, 208, 0.4);
}

/* Contact Box */
.box-contact h4 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.6rem;
    color: #40E0D0;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info p {
    font-size: 0.95rem;
    color: #8dd3c7;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .grid-container {
        gap: 15px;
        padding: 15px;
    }
    
    .glass-box {
        padding: 20px;
    }
    
    .tagline {
        font-size: 2rem;
    }
}

/* Tablet Layout */
@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: auto;
        gap: 15px;
        padding: 15px;
        height: auto;
        min-height: 100vh;
    }
    
    body {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
    }
    
    .box-logo {
        grid-column: 1 / 13;
        grid-row: 1;
        height: 200px;
    }
    
    .logo-image {
        height: 80%;
    }
    
    .box-mission {
        grid-column: 1 / 13;
        grid-row: 2;
        min-height: 300px;
    }
    
    .box-video {
        grid-column: 1 / 13;
        grid-row: 3;
        min-height: 300px;
    }
    
    .box-gallery {
        grid-column: 1 / 13;
        grid-row: 4;
        min-height: 400px;
    }
    
    .box-colors {
        grid-column: 1 / 7;
        grid-row: 5;
        min-height: 350px;
    }
    
    .box-artisan {
        grid-column: 7 / 13;
        grid-row: 5;
        min-height: 350px;
    }
    
    .box-contact {
        display: none;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        padding: 15px;
        height: auto;
        min-height: 100vh;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .glass-box {
        padding: 20px;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    img, svg, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Logo - Large and Overlapping */
    .box-logo {
        grid-column: 1;
        grid-row: 1;
        height: 280px;
        margin-bottom: -40px;
        z-index: 50;
        position: relative;
        overflow: visible;
    }
    
    .logo-image {
        height: 100%;
        width: auto;
        max-width: 95%;
        filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.9)) 
                drop-shadow(0 0 60px rgba(64, 224, 208, 0.5));
        transform: scale(1.1);
    }
    
    /* Mission Box */
    .box-mission {
        grid-column: 1;
        grid-row: 2;
        min-height: auto;
        padding: 25px 20px;
    }
    
    .box-mission h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .box-mission p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .mission-contact h4 {
        font-size: 1.2rem;
    }
    
    .mission-contact p {
        font-size: 0.85rem;
    }
    
    /* Video Box */
    .box-video {
        grid-column: 1;
        grid-row: 4;
        min-height: 250px;
        padding: 40px 20px;
    }
    
    .video-placeholder svg {
        width: 60px;
        height: 60px;
    }
    
    .video-label {
        font-size: 1.4rem;
    }
    
    /* Gallery */
    .box-gallery {
        grid-column: 1;
        grid-row: 3;
        min-height: 350px;
        padding: 20px;
    }
    
    .gallery-controls {
        margin-top: 12px;
        gap: 15px;
    }
    
    .gallery-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .gallery-label {
        font-size: 1rem;
    }
    
    /* Colors - Compact */
    .box-colors {
        grid-column: 1;
        grid-row: 5;
        min-height: 250px;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .box-colors h4 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .color-preview {
        flex: 0 1 auto;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .color-selector {
        gap: 10px;
        padding: 5px 0;
    }
    
    .color-dot {
        width: 22px;
        height: 22px;
    }
    
    .color-circle {
        padding: 3px;
    }
    
    /* Artisan */
    .box-artisan {
        grid-column: 1;
        grid-row: 6;
        min-height: 300px;
    }
    
    .artisan-overlay h3 {
        font-size: 1.4rem;
    }
    
    .artisan-overlay p {
        font-size: 0.9rem;
    }
    
    /* Language Popup */
    .language-popup-content {
        padding: 40px 30px;
        width: 95%;
    }
    
    .language-popup-content h2 {
        font-size: 2rem;
    }
    
    .language-popup-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .language-buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .language-btn {
        width: 100%;
        min-width: auto;
        padding: 20px 30px;
        font-size: 1.1rem;
    }
    
    /* Video Lightbox */
    .video-lightbox-content {
        width: 95%;
        max-width: 100%;
    }
    
    .lightbox-close {
        top: -45px;
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .video-wrapper iframe {
        border-radius: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    body {
        width: 100vw;
        max-width: 100%;
    }
    
    .grid-container {
        gap: 15px;
        padding: 10px;
        width: 100%;
        max-width: 100vw;
    }
    
    .glass-box {
        padding: 15px;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .box-logo {
        height: 220px;
        margin-bottom: -35px;
    }
    
    .logo-image {
        max-width: 90%;
    }
    
    .box-mission h3 {
        font-size: 1.4rem;
    }
    
    .box-mission p {
        font-size: 0.9rem;
    }
    
    .box-video {
        min-height: 200px;
        padding: 30px 15px;
    }
    
    .video-placeholder svg {
        width: 50px;
        height: 50px;
    }
    
    .video-label {
        font-size: 1.2rem;
    }
    
    .box-gallery {
        min-height: 300px;
    }
    
    .gallery-arrow {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .box-colors {
        min-height: 160px;
        padding: 12px;
    }
    
    .box-colors h4 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .color-preview {
        height: 200px;
        margin-bottom: 10px;
    }
    
    .color-dot {
        width: 20px;
        height: 20px;
    }
    
    .color-selector {
        gap: 8px;
    }
    
    .language-popup-content {
        padding: 30px 20px;
    }
    
    .language-popup-content h2 {
        font-size: 1.6rem;
    }
    
    .language-btn {
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .reserve-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .reserve-popup-content {
        padding: 30px 25px;
        max-width: 90%;
    }
    
    .reserve-popup-content h2 {
        font-size: 1.6rem;
    }
    
    .reserve-subtitle {
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    .reserve-submit-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
