/* ==========================================================================
   ENTRE VALLES - SITE DESIGN SYSTEM & STYLESHEET
   Developed by AcuarioDevs
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    /* Color Palette */
    --color-cream: #FAF5F0;        /* Main body background to integrate logo */
    --color-white: #FFFFFF;
    --color-olive: #3E4D2A;        /* Olive Green */
    --color-olive-rgb: 62, 77, 42;
    --color-grape: #490B28;        /* Grape Purple */
    --color-grape-rgb: 73, 11, 40;
    --color-gold: #C8893A;         /* Sun Gold */
    --color-gold-hover: #B4772C;
    --color-beige: #E9D6C7;        /* Soft Natural Beige */
    --color-brown: #533222;        /* Earth Brown */
    --color-text-dark: #2C1E17;   /* Deep dark brown-black for high contrast readability */
    --color-text-light: #F6ECE4;  /* Light text */
    --color-text-muted: #7E6B5F;  /* Secondary text color */
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Layout */
    --container-max-width: 1200px;
    --section-spacing: 100px;
    --section-spacing-mobile: 60px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    /* Shadows & Border Radius */
    --shadow-sm: 0 4px 10px rgba(83, 50, 34, 0.04);
    --shadow-md: 0 10px 30px rgba(83, 50, 34, 0.08);
    --shadow-lg: 0 20px 50px rgba(83, 50, 34, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-cream);
    color: var(--color-text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

/* Selection & Scrollbar styling */
::selection {
    background-color: var(--color-olive);
    color: var(--color-white);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--color-beige);
    border-radius: 5px;
    border: 2px solid var(--color-cream);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-olive);
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
}

.section-padding {
    padding: var(--section-spacing) 0;
}

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

.text-light {
    color: var(--color-text-light) !important;
}

.hidden {
    display: none !important;
}

/* Section Header Styles */
.section-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--color-olive);
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: var(--color-text-muted);
}

/* Button Component Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-olive);
    color: var(--color-white);
    border: 1px solid var(--color-olive);
    box-shadow: 0 4px 15px rgba(62, 77, 42, 0.15);
}

.btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-olive);
    box-shadow: 0 8px 25px rgba(62, 77, 42, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-olive);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Header & Navigation Bar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 25px 0;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 10px 0;
    background-color: rgba(250, 245, 240, 0.9); /* Matches body cream background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(83, 50, 34, 0.05);
    border-bottom: 1px solid rgba(233, 214, 199, 0.3);
}

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

/* Glassmorphism capsule for transparent header to keep dark logo legible */
.logo-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: var(--radius-md);
    background-color: rgba(250, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233, 214, 199, 0.4);
    transition: var(--transition-smooth);
}

.logo-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

/* Scrolled state: Logo capsule blends natively into header bar */
.main-header.scrolled .logo-link {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-color: transparent;
    padding: 4px 0;
    transform: none;
}

.header-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-logo {
    height: 48px;
}

.nav-toggle {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-dark);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-fast);
}

.hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-dark);
    position: absolute;
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle.open .hamburger {
    background-color: transparent;
}

.nav-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-white); /* White in hero */
    position: relative;
    padding: 8px 0;
}

.main-header.scrolled .nav-link {
    color: var(--color-text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

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

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

.nav-btn {
    background-color: var(--color-gold);
    color: var(--color-white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(200, 137, 58, 0.2);
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    background-color: var(--color-gold-hover);
    color: var(--color-white) !important;
    transform: translateY(-2px);
}

/* Language Switcher Styles */
.lang-switcher-container {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.main-header.scrolled .lang-switcher-container {
    color: var(--color-text-dark);
}

.btn-lang {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    color: inherit;
    opacity: 0.6;
    padding: 4px 6px;
    transition: var(--transition-fast);
}

.btn-lang:hover,
.btn-lang.active {
    opacity: 1;
    color: var(--color-gold) !important;
}

.lang-separator {
    opacity: 0.3;
    color: inherit;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 8s ease-out;
    transform: scale(1.05);
}

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

.hero-content {
    z-index: 10;
    max-width: 800px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 25px;
    transform: translateY(30px);
    opacity: 0;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    transform: translateY(35px);
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    transform: translateY(40px);
    opacity: 0;
}

/* Animations for Active Slide content load */
.hero-section .fade-in {
    animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle.fade-in { animation-delay: 0.2s; }
.hero-title.fade-in { animation-delay: 0.4s; }
.hero-description.fade-in { animation-delay: 0.6s; }
.hero-actions.fade-in { animation-delay: 0.8s; }

@keyframes hero-fade-in {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* About Us Section Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-info .section-badge {
    margin-bottom: 8px;
}

.about-text-lead {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-olive);
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.6;
}

.about-text {
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.about-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
}

.about-mini-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233, 214, 199, 0.2);
    transition: var(--transition-smooth);
}

.about-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-beige);
}

.about-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-olive);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 8px;
}

.about-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-gold);
}

.about-mini-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.about-images {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-box-main {
    width: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-box-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.image-box-sub {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 50%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--color-cream);
}

.image-box-sub img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: 40px;
    background-color: var(--color-grape);
    color: var(--color-white);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(73, 11, 40, 0.25);
    text-align: center;
    z-index: 10;
}

.experience-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-gold);
}

.experience-badge .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
    line-height: 1.3;
}

/* Values Section Styles */
.values-section {
    background-color: var(--color-white);
    border-top: 1px solid rgba(233, 214, 199, 0.2);
    border-bottom: 1px solid rgba(233, 214, 199, 0.2);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--color-cream);
    padding: 40px 35px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.value-card:hover {
    background-color: var(--color-white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-beige);
}

.value-icon-wrapper {
    color: var(--color-olive);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background-color: rgba(62, 77, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon-wrapper {
    color: var(--color-white);
    background-color: var(--color-olive);
    transform: rotateY(180deg);
}

.value-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Centered long/wide value card */
.value-card-wide {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 35px 50px;
}

.value-card-wide .value-icon-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
}

.value-card-wide .value-content {
    flex-grow: 1;
}

/* Products Section Styles */
.products-section {
    background-color: var(--color-grape);
    position: relative;
    overflow: hidden;
}

/* Decorative background shapes */
.products-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
    z-index: 1;
}

.products-section .container {
    z-index: 5;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1.5px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border-color: var(--color-gold);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.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.08);
}

.product-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(200, 137, 58, 0.3);
}

.product-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-olive);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.product-features {
    margin-bottom: 35px;
    display: grid;
    gap: 12px;
}

.product-features li {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-features li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-gold);
    flex-shrink: 0;
}

.product-actions {
    margin-top: auto;
}

.btn-quote {
    font-size: 0.85rem;
}

.quality-banner {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 35px 50px;
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.quality-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: 550;
}

.quality-banner p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Gallery Section Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(62, 77, 42, 0.8) 0%, rgba(62, 77, 42, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 5;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

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

.gallery-title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-desc {
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(44, 30, 23, 0.95); /* Matches text-dark shade */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
}

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

.lightbox-content-wrapper {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: zoom-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 600px;
    text-align: center;
    color: var(--color-text-light);
    padding: 20px 0;
    font-size: 1.05rem;
    line-height: 1.5;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-text-light);
    font-size: 40px;
    font-weight: 300;
    transition: var(--transition-fast);
    cursor: pointer;
    z-index: 1010;
}

.lightbox-close:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    padding: 20px 24px;
    font-size: 24px;
    border-radius: 50%;
    transition: var(--transition-fast);
    z-index: 1005;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* Contact Section Styles */
.contact-section {
    background-color: var(--color-olive);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-panel {
    color: var(--color-text-light);
}

.contact-lead-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details-list {
    display: grid;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail-content h4 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-detail-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.contact-detail-content a:hover {
    color: var(--color-gold);
}

.contact-form-panel {
    background-color: var(--color-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-olive);
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form {
    display: grid;
    gap: 25px;
}

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

.form-group {
    position: relative;
    width: 100%;
}

.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 1.5px solid rgba(83, 50, 34, 0.15);
    background-color: var(--color-cream);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-olive);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(62, 77, 42, 0.08);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    pointer-events: none;
}

.form-group textarea ~ label {
    top: 25px;
    transform: none;
}

/* Floating labels magic */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-olive);
    background-color: var(--color-white);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(83, 50, 34, 0.08);
}

/* Dropdown select labeling fix */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233E4D2A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 45px;
}

.select-label {
    top: -10px !important;
    left: 12px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: var(--color-olive) !important;
    background-color: var(--color-white) !important;
    padding: 2px 8px !important;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(83, 50, 34, 0.08);
    transform: none !important;
}

/* Toast message styling */
.form-feedback {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    animation: fade-in-toast 0.4s ease;
}

@keyframes fade-in-toast {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-feedback.success {
    background-color: #E8F7EC;
    color: #0A5C22;
    border: 1px solid #C4EDCD;
}

.form-feedback.error {
    background-color: #FCE8E6;
    color: #A51D14;
    border: 1px solid #F7C4C0;
}

/* Footer Styles */
.main-footer {
    background-color: var(--color-brown);
    color: var(--color-text-light);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(233, 214, 199, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand .footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 25px;
    filter: brightness(0) invert(1); /* Makes the logo completely white! */
    opacity: 0.8;
    transition: var(--transition-smooth);
}

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

.footer-brand p {
    color: rgba(246, 236, 228, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

.footer-links h4, .footer-legal h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links ul {
    display: grid;
    gap: 15px;
}

.footer-links a {
    color: rgba(246, 236, 228, 0.75);
    font-size: 0.95rem;
}

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

.footer-legal p {
    font-size: 0.95rem;
    color: rgba(246, 236, 228, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 25px 0;
    font-size: 0.85rem;
    color: rgba(246, 236, 228, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    color: rgba(246, 236, 228, 0.7);
}

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

/* Responsive Breakpoints & Media Queries */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .about-grid {
        gap: 50px;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .value-card-wide {
        grid-column: span 2;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-img-wrapper {
        height: 280px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Tablet (768px) */
@media (max-width: 768px) {
    :root {
        --section-spacing: 70px;
    }
    
    /* Header toggle */
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-cream);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        padding: 100px 40px 40px 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .nav-link {
        color: var(--color-text-dark) !important;
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }
    
    .nav-btn {
        width: 100%;
        text-align: center;
    }

    .lang-switcher-container {
        color: var(--color-text-dark) !important;
        margin-top: 15px;
        padding-left: 5px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        justify-content: center;
        margin-top: 20px;
        height: 350px;
    }
    
    .image-box-main {
        width: 100%;
    }
    
    .image-box-main img {
        height: 350px;
    }
    
    .image-box-sub {
        width: 45%;
        bottom: -20px;
        left: -10px;
        border-width: 4px;
    }
    
    .image-box-sub img {
        height: 160px;
    }
    
    .experience-badge {
        padding: 15px 20px;
        top: -15px;
        left: 15px;
    }
    
    .experience-badge .number {
        font-size: 2rem;
    }
    
    .about-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .lightbox-content-wrapper {
        max-width: 95%;
    }
    
    .lightbox-prev, .lightbox-next {
        padding: 12px 16px;
        font-size: 18px;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    :root {
        --section-spacing: 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card-wide {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
}
