﻿:root {
    --green-950: #0a1f0c;
    --green-900: #0f2e12;
    --green-800: #1a4a1e;
    --green-700: #246b29;
    --green-600: #2d8633;
    --green-500: #38a03e;
    --green-400: #5cb862;
    --green-300: #86cf8a;
    --green-200: #b5e2b7;
    --green-100: #ddf2de;
    --green-50: #f0f9f0;
    --copper-900: #6b2f00;
    --copper-800: #8a3d00;
    --copper-700: #b85a1a;
    --copper-600: #d4722e;
    --copper-500: #e8863f;
    --copper-400: #f0a060;
    --copper-300: #f5be8f;
    --copper-200: #fadcbc;
    --copper-100: #fef0e2;
    --copper-50: #fff8f0;
    --neutral-950: #0f0f0d;
    --neutral-900: #1a1a17;
    --neutral-800: #2d2d28;
    --neutral-700: #44443d;
    --neutral-600: #5c5c53;
    --neutral-500: #7a7a70;
    --neutral-400: #9e9e94;
    --neutral-300: #c2c2ba;
    --neutral-200: #e0e0db;
    --neutral-100: #f0f0ec;
    --neutral-50: #f8f8f5;
    --white: #ffffff;
    --black: #000000;
    --primary: var(--green-700);
    --primary-dark: var(--green-900);
    --primary-light: var(--green-400);
    --accent: var(--copper-600);
    --accent-dark: var(--copper-800);
    --accent-light: var(--copper-300);
    --text-primary: var(--neutral-900);
    --text-secondary: var(--neutral-600);
    --text-muted: var(--neutral-500);
    --bg-primary: var(--white);
    --bg-secondary: var(--neutral-50);
    --bg-dark: var(--neutral-950);
    --border-color: var(--neutral-200);
    --whatsapp: #25D366;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --shadow-xs: 0 1px 2px rgba(15,15,13,0.04);
    --shadow-sm: 0 2px 8px rgba(15,15,13,0.06);
    --shadow-md: 0 8px 24px rgba(15,15,13,0.08);
    --shadow-lg: 0 16px 48px rgba(15,15,13,0.1);
    --shadow-xl: 0 24px 64px rgba(15,15,13,0.14);
    --shadow-glow-green: 0 0 40px rgba(36,107,41,0.15);
    --shadow-glow-copper: 0 0 40px rgba(212,114,46,0.15);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-base: 0.4s var(--ease-out-expo);
    --transition-slow: 0.7s var(--ease-out-expo);
    --transition-dramatic: 1s var(--ease-out-expo);
    --section-padding: clamp(60px, 8vw, 120px);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.6;
}
body.lightbox-open {
    overflow: hidden;
}
::selection {
    background: rgba(212, 114, 46, 0.32);
    color: var(--neutral-950);
}
::-moz-selection {
    background: rgba(212, 114, 46, 0.32);
    color: var(--neutral-950);
}
.hero-section ::selection,
.page-header ::selection,
.footer-section ::selection,
.navbar ::selection {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
}
html {
    scrollbar-color: var(--green-700) var(--neutral-100);
    scrollbar-width: thin;
}
::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}
::-webkit-scrollbar-track {
    background: var(--neutral-100);
    border-radius: 999px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--copper-600) 0%, var(--green-800) 100%);
    border-radius: 999px;
    border: 2px solid var(--neutral-100);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--copper-500) 0%, var(--green-700) 100%);
}
::-webkit-scrollbar-corner {
    background: var(--neutral-100);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
.preloader {
    position: fixed;
    inset: 0;
    background: var(--green-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s var(--ease-out-expo);
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--copper-500);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}
.navbar {
    background: transparent;
    padding: 1.25rem 0;
    transition: all var(--transition-base);
    z-index: 1000;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(10, 31, 12, 0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white) !important;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all var(--transition-fast);
}
.navbar-brand i {
    color: var(--copper-400);
    font-size: 1.3rem;
    transition: all var(--transition-base);
}
.navbar-brand:hover i {
    transform: rotate(-5deg) scale(1.1);
    color: var(--copper-300);
}
.navbar-brand-logo {
    height: 100px;
    width: auto;
    max-width: min(180px, 42vw);
    object-fit: contain;
    display: block;
    transition: height var(--transition-base), opacity var(--transition-fast), transform var(--transition-fast), filter var(--transition-base);
    will-change: height;
}
.navbar.scrolled .navbar-brand-logo {
    height: 56px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}
.navbar-brand:hover .navbar-brand-logo {
    opacity: 0.92;
    transform: scale(1.02);
}
@media (max-width: 767px) {
    .navbar-brand-logo {
        height: 72px;
    }
    .navbar.scrolled .navbar-brand-logo {
        height: 48px;
    }
}
.nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    margin: 0 0.15rem;
    padding: 0.6rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--copper-400);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: all var(--transition-base);
}
.nav-link:hover {
    color: var(--white) !important;
    background: rgba(255,255,255,0.06);
}
.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scale(1);
}
.nav-link.active {
    color: var(--white) !important;
}
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.45rem 0.65rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}
.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--copper-400);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: var(--green-900);
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(36,107,41,0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(212,114,46,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(36,107,41,0.08) 0%, transparent 70%);
    z-index: 0;
}
.hero-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.hero-mesh .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: blobFloat 20s ease-in-out infinite;
}
.hero-mesh .blob:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--green-600);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}
.hero-mesh .blob:nth-child(2) {
    width: 400px;
    height: 400px;
    background: var(--copper-600);
    bottom: -100px;
    left: 10%;
    animation-delay: -7s;
    opacity: 0.15;
}
.hero-mesh .blob:nth-child(3) {
    width: 300px;
    height: 300px;
    background: var(--green-400);
    top: 40%;
    left: 50%;
    animation-delay: -14s;
    opacity: 0.1;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.02); }
}
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    color: var(--copper-200);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero-badge i {
    color: var(--copper-400);
    font-size: 0.75rem;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.hero-title span {
    background: linear-gradient(135deg, var(--copper-400) 0%, var(--copper-300) 50%, var(--copper-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.75;
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat {
    text-align: left;
}
.hero-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.hero-stat-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.hero-image {
    position: relative;
    z-index: 2;
}
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-circle {
    width: 420px;
    height: 420px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: heroCirclePulse 4s ease-in-out infinite;
}
.hero-image-circle::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 50%;
}
.hero-image-circle::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 50%;
}
.hero-image-circle i {
    font-size: 160px;
    color: rgba(255,255,255,0.08);
    z-index: 1;
    transition: all var(--transition-slow);
}
.hero-image-circle--photo {
    padding: 0;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow:
        0 24px 80px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.06) inset;
}
.hero-image-circle--photo::before,
.hero-image-circle--photo::after {
    display: none;
}
.hero-image-circle--photo img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.hero-mobile-photo {
    margin-top: 2rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.hero-mobile-photo img {
    width: 100%;
    height: clamp(200px, 42vw, 320px);
    object-fit: cover;
    display: block;
}
@keyframes heroCirclePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}
.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: cardFloat 4s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.2);
}
.floating-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}
.floating-card-text {
    font-size: 0.82rem;
}
.floating-card-text strong {
    display: block;
    color: var(--neutral-900);
    font-weight: 700;
    font-size: 0.85rem;
}
.floating-card-text span {
    color: var(--neutral-500);
    font-size: 0.75rem;
}
.floating-card-1 {
    top: 8%;
    right: -8%;
    animation-delay: 0s;
}
.floating-card-2 {
    bottom: 18%;
    left: -3%;
    animation-delay: -2s;
}
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.btn-primary-custom {
    background: linear-gradient(135deg, var(--copper-600) 0%, var(--copper-700) 100%);
    color: var(--white);
    border: none;
    padding: 0.95rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(212,114,46,0.3);
    position: relative;
    overflow: hidden;
}
.btn-primary-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--copper-700) 0%, var(--copper-900) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212,114,46,0.4);
}
.btn-primary-custom:hover::before {
    opacity: 1;
}
.btn-primary-custom i,
.btn-primary-custom span {
    position: relative;
    z-index: 1;
}
.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-custom:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}
.btn-green {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
    color: var(--white);
    border: none;
    padding: 0.95rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(36,107,41,0.25);
}
.btn-green:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(36,107,41,0.35);
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
}
.btn-white {
    background: var(--white);
    color: var(--copper-700);
    border: none;
    padding: 0.95rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    background: var(--neutral-50);
    color: var(--copper-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}
section {
    padding: var(--section-padding) 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}
.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--green-50);
    color: var(--green-700);
    border: 1px solid var(--green-100);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.15;
}
.section-title span {
    color: var(--copper-600);
}
.section-subtitle {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}
.services-section {
    background: var(--bg-primary);
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}
.service-icon {
    width: 72px;
    height: 72px;
    background: var(--green-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid var(--green-100);
}
.service-icon i {
    font-size: 1.75rem;
    color: var(--green-700);
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
}
.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}
.service-link {
    color: var(--green-700);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition-base);
}
.service-link:hover {
    color: var(--copper-600);
    gap: 0.7rem;
}
.products-section {
    background: var(--bg-secondary);
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.5s var(--ease-out-expo);
    height: 100%;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.product-image {
    height: 220px;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.15) 100%);
}
.product-image i {
    font-size: 80px;
    color: rgba(255,255,255,0.12);
    transition: all var(--transition-base);
    z-index: 1;
}
.product-card:hover .product-image i {
    transform: scale(1.1) rotate(-3deg);
    color: rgba(255,255,255,0.18);
}
.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.1);
}
.product-content {
    padding: 1.75rem;
}
.product-brand {
    font-size: 0.72rem;
    color: var(--green-600);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
}
.product-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}
.product-description {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}
.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.product-features li {
    padding: 0.35rem 0;
    color: var(--text-secondary);
    font-size: 0.83rem;
    display: flex;
    align-items: center;
}
.product-features li i {
    color: var(--green-500);
    margin-right: 8px;
    font-size: 0.7rem;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--neutral-100);
}
.product-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.product-price strong {
    font-size: 1.15rem;
    color: var(--copper-600);
    font-weight: 700;
}
.product-btn {
    background: var(--green-700);
    color: var(--white);
    border: none;
    padding: 0.55rem 1.15rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.product-btn:hover {
    background: var(--green-900);
    color: var(--white);
    transform: translateX(3px);
}
.gallery-section {
    background: var(--bg-primary);
    overflow: hidden;
}
.home-gallery-section .section-header {
    margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}
.brands-section {
    background: var(--bg-secondary);
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    overflow: hidden;
}
.brands-section-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 0;
    padding-bottom: 1.75rem;
}
.brands-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brands-track {
    display: flex;
    width: max-content;
    animation: marquee 45s linear infinite;
}
.brands-track:hover {
    animation-play-state: paused;
}
.brands-wrapper {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 3.5rem);
    padding: 0 2rem;
    flex-shrink: 0;
}
.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.82;
    transition: opacity var(--transition-base), transform var(--transition-base);
}
.brand-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.brand-logo {
    width: clamp(120px, 18vw, 160px);
    height: 56px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.85rem;
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
}
.brand-item:hover .brand-logo {
    box-shadow: var(--shadow-md);
    border-color: rgba(36, 107, 41, 0.25);
}
.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.15);
    transition: filter var(--transition-base);
}
.brand-item:hover .brand-logo img {
    filter: grayscale(0);
}
.brand-logo i {
    font-size: 2rem;
    color: var(--green-700);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .brands-track {
        animation: none;
    }
    .gallery-tile,
    .gallery-tile-frame img,
    .home-gallery-card,
    .home-gallery-card img {
        transition: none;
    }
    .gallery-tile:hover,
    .home-gallery-card:hover {
        transform: none;
    }
    .gallery-tile:hover .gallery-tile-frame img,
    .home-gallery-card:hover img {
        transform: none;
    }
}
.about-section {
    background: var(--bg-primary);
}
.about-image {
    position: relative;
}
.about-image-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-image-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.about-image-main::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}
.about-image-main i {
    font-size: 180px;
    color: rgba(255,255,255,0.06);
}
.about-experience-badge {
    position: absolute;
    bottom: -24px;
    right: 30px;
    background: linear-gradient(135deg, var(--copper-600) 0%, var(--copper-800) 100%);
    color: var(--white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-copper), var(--shadow-xl);
    border: 4px solid var(--white);
}
.about-experience-badge .number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
}
.about-experience-badge .text {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    font-weight: 600;
}
.about-content {
    padding-left: 2rem;
}
.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.about-content h2 span {
    color: var(--copper-600);
}
.about-content .lead {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}
.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.92rem;
}
.about-features {
    margin-top: 2rem;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 1.15rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}
.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-color: var(--green-200);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.15rem;
    flex-shrink: 0;
}
.feature-icon i {
    color: var(--white);
    font-size: 1.2rem;
}
.feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}
.feature-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}
.stats-section {
    background: var(--green-900);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(212,114,46,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(36,107,41,0.15) 0%, transparent 60%);
}
.stats-section::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image:
        linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 50px 50px;
}
.stat-item {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.stat-icon i {
    font-size: 1.5rem;
    color: var(--copper-400);
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
    color: var(--white);
    line-height: 1;
}
.stat-number span {
    color: var(--copper-400);
}
.stat-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
.testimonials-section {
    background: var(--bg-secondary);
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, var(--green-300), var(--copper-300));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}
.testimonial-card:hover::before {
    opacity: 1;
}
.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--green-100);
    line-height: 1;
}
.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}
.testimonial-rating i {
    color: var(--copper-500);
    font-size: 0.85rem;
}
.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-body);
}
.testimonial-info .testimonial-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    font-weight: 700;
}
.testimonial-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}
.cta-section {
    background: linear-gradient(135deg, var(--copper-600) 0%, var(--copper-800) 50%, var(--copper-900) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.contact-section {
    background: var(--bg-primary);
}
.contact-info-card {
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    height: 100%;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,114,46,0.12) 0%, transparent 70%);
}
.contact-info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
}
.contact-info-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.contact-info-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
.contact-info-header p {
    opacity: 0.65;
    font-size: 0.9rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.contact-item:last-of-type {
    margin-bottom: 0;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.15rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}
.contact-item:hover .contact-icon {
    background: rgba(212,114,46,0.15);
    border-color: rgba(212,114,46,0.2);
}
.contact-icon i {
    color: var(--copper-400);
    font-size: 1.15rem;
}
.contact-text h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}
.contact-text p {
    opacity: 0.7;
    margin: 0;
    font-size: 0.88rem;
}
.contact-text a {
    color: var(--white);
    transition: all var(--transition-fast);
}
.contact-text a:hover {
    color: var(--copper-300);
}
.contact-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}
.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: all var(--transition-base);
}
.social-link:hover {
    background: var(--copper-600);
    border-color: var(--copper-600);
    color: var(--white);
    transform: translateY(-2px);
}
.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.contact-form-header {
    margin-bottom: 1.75rem;
}
.contact-form-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}
.contact-form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.form-group {
    margin-bottom: 1rem;
    position: relative;
}
.form-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    display: block;
    font-size: 0.85rem;
}
.form-control {
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.15rem;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: all var(--transition-base);
    width: 100%;
    background: var(--neutral-50);
    color: var(--text-primary);
}
.form-control:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(36,107,41,0.08);
    outline: none;
    background: var(--white);
}
.form-control::placeholder {
    color: var(--neutral-400);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a7a70' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.footer-section {
    background: var(--neutral-950);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 40% at 10% 90%, rgba(36,107,41,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 90% 10%, rgba(212,114,46,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.footer-brand {
    margin-bottom: 1.25rem;
}
.footer-brand a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-brand i {
    color: var(--copper-400);
}
.footer-brand-logo {
    height: 110px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
.footer-brand a:hover .footer-brand-logo {
    transform: scale(1.02);
}
.footer-about {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
}
.footer-social {
    display: flex;
    gap: 0.5rem;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}
.footer-social a:hover {
    background: var(--copper-600);
    border-color: var(--copper-600);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--copper-500);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.7rem;
}
.footer-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition-fast);
}
.footer-links a i {
    font-size: 0.6rem;
    color: var(--copper-500);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-fast);
}
.footer-links a:hover {
    color: rgba(255,255,255,0.8);
    padding-left: 4px;
}
.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.4);
}
.footer-contact-item i {
    color: var(--copper-400);
    font-size: 0.85rem;
    margin-top: 4px;
}
.footer-contact-item span {
    font-size: 0.88rem;
    line-height: 1.5;
}
.footer-newsletter p {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    margin-bottom: 1rem;
}
.newsletter-form {
    display: flex;
    gap: 0.4rem;
}
.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.85rem;
    color: var(--white);
    font-size: 0.85rem;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.25);
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--copper-500);
    background: rgba(255,255,255,0.08);
}
.newsletter-form button {
    background: var(--copper-600);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0 1rem;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}
.newsletter-form button:hover {
    background: var(--copper-700);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 3.5rem;
    padding: 1.25rem 0;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copyright {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
}
.footer-copyright a {
    color: var(--copper-400);
}
.footer-credit {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-credit i {
    color: var(--copper-400);
    font-size: 0.72rem;
    opacity: 0.85;
}
.footer-credit a {
    color: var(--copper-400);
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: color var(--transition-fast);
    position: relative;
}
.footer-credit a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper-400), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-base);
}
.footer-credit a:hover {
    color: var(--copper-300);
}
.footer-credit a:hover::after {
    transform: scaleX(1);
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
    transition: all var(--transition-fast);
}
.footer-legal a:hover {
    color: rgba(255,255,255,0.7);
}
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 999;
}
.whatsapp-btn {
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all var(--transition-base);
    position: relative;
}
.whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    color: var(--white);
}
.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: whatsappPulse 2.5s infinite;
    z-index: -1;
}
@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}
.whatsapp-tooltip {
    position: absolute;
    right: 66px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--green-800);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 998;
    border: 1px solid rgba(255,255,255,0.08);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--green-700);
    transform: translateY(-3px);
}
.gallery-page-section {
    padding: clamp(48px, 6vw, 80px) 0 var(--section-padding);
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(36, 107, 41, 0.06) 0%, transparent 55%),
        var(--bg-primary);
}
.page-header--gallery::before {
    background:
        radial-gradient(ellipse 45% 40% at 60% 40%, rgba(212, 114, 46, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 70% 50%, rgba(36, 107, 41, 0.15) 0%, transparent 60%);
}
.gallery-page-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}
.gallery-page-heading {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 400;
    color: var(--text-primary);
    margin: 0.75rem 0 1rem;
    line-height: 1.15;
}
.gallery-page-heading em {
    font-style: normal;
    background: linear-gradient(135deg, var(--copper-600) 0%, var(--green-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gallery-page-lead {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0;
}
.gallery-page-container {
    max-width: 1280px;
}
.gallery-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: clamp(10px, 2vw, 18px);
}
@media (min-width: 768px) {
    .gallery-wall {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}
.gallery-tile {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    cursor: pointer;
    text-align: left;
    background: var(--neutral-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);
}
.gallery-tile:focus-visible {
    outline: 3px solid var(--copper-500);
    outline-offset: 3px;
}
.gallery-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.gallery-tile-frame {
    display: block;
    aspect-ratio: 3 / 5;
    overflow: hidden;
}
.gallery-tile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease-out-expo);
}
.gallery-tile:hover .gallery-tile-frame img {
    transform: scale(1.06);
}
.gallery-tile-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        transparent 30%,
        rgba(255, 255, 255, 0.07) 45%,
        transparent 55%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}
.gallery-tile:hover .gallery-tile-shine {
    opacity: 1;
}
.gallery-tile-zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(15, 15, 13, 0.55);
    backdrop-filter: blur(8px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.lightbox[hidden] {
    display: none !important;
}
.lightbox:not([hidden]) {
    display: block;
}
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
}
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 12, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: zoom-out;
}
.lightbox-panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(56px, 10vw, 88px) clamp(16px, 4vw, 40px);
    pointer-events: none;
}
.lightbox-panel > * {
    pointer-events: auto;
}
.lightbox-figure {
    margin: 0;
    max-width: min(92vw, 1100px);
    max-height: 85vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-img {
    max-width: 100%;
    max-height: calc(85vh - 48px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.lightbox-caption {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}
.lightbox-close {
    position: absolute;
    top: clamp(12px, 3vw, 24px);
    right: clamp(12px, 3vw, 24px);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    z-index: 2;
}
.lightbox-close:hover {
    background: var(--copper-600);
    border-color: var(--copper-500);
    transform: scale(1.05);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
    z-index: 2;
}
.lightbox-nav:hover {
    background: rgba(36, 107, 41, 0.65);
    border-color: rgba(255, 255, 255, 0.2);
}
.lightbox-prev {
    left: clamp(8px, 2vw, 20px);
}
.lightbox-next {
    right: clamp(8px, 2vw, 20px);
}
@media (max-width: 575px) {
    .lightbox-nav {
        top: auto;
        bottom: 16px;
        transform: none;
    }
    .lightbox-prev {
        left: calc(50% - 52px);
    }
    .lightbox-next {
        right: calc(50% - 52px);
    }
}
.home-gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 2.5vw, 20px);
    margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .home-gallery-preview-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.home-gallery-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--neutral-200);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    aspect-ratio: 3 / 4;
}
.home-gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
.home-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}
.home-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease-out-expo);
}
.home-gallery-card:hover img {
    transform: scale(1.05);
}
.home-gallery-card-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 0.35rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(90deg, rgba(15, 46, 18, 0.88), rgba(15, 46, 18, 0.45));
    border-radius: var(--radius-sm);
    pointer-events: none;
}
.page-header {
    background-color: var(--green-950);
    background-image:
        linear-gradient(180deg,
            rgba(10, 31, 12, 0.68) 0%,
            rgba(10, 31, 12, 0.82) 55%,
            rgba(15, 46, 18, 0.94) 100%),
        url('/images/3.webp');
    background-size: auto, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    padding: 150px 0 70px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 55% 55% at 75% 40%, rgba(212, 114, 46, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 15% 85%, rgba(36, 160, 62, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10, 31, 12, 0.35) 0%, transparent 30%, transparent 70%, rgba(10, 31, 12, 0.4) 100%);
    pointer-events: none;
}
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 80%);
            mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 80%);
    pointer-events: none;
}
.page-header .container {
    position: relative;
    z-index: 1;
}
.page-title {
    text-shadow: 0 2px 20px rgba(10, 31, 12, 0.4);
}
.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 0.85rem;
}
.page-title span {
    color: var(--copper-400);
}
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
}
.breadcrumb-nav a {
    color: rgba(255,255,255,0.5);
    transition: all var(--transition-fast);
}
.breadcrumb-nav a:hover {
    color: var(--white);
}
.breadcrumb-nav span {
    color: var(--copper-400);
}
@media (max-width: 1199px) {
    .hero-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
    .hero-image-circle {
        width: 360px;
        height: 360px;
    }
    .hero-image-circle::before {
        width: 260px;
        height: 260px;
    }
    .hero-image-circle::after {
        width: 440px;
        height: 440px;
    }
    .hero-image-circle i {
        font-size: 130px;
    }
}
@media (max-width: 991px) {
    .hero-image {
        display: none;
    }
    .hero-stats {
        gap: 2rem;
    }
    .about-content {
        padding-left: 0;
        margin-top: 3.5rem;
    }
    .about-experience-badge {
        right: 20px;
        bottom: -18px;
        width: 105px;
        height: 105px;
    }
    .about-experience-badge .number {
        font-size: 1.85rem;
    }
}
@media (max-width: 767px) {
    .hero-section {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
    }
    .about-image-main {
        height: 320px;
    }
    .brands-wrapper {
        gap: 2rem;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .whatsapp-float {
        bottom: 80px;
        right: 18px;
    }
    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
    .scroll-top {
        right: 18px;
        bottom: 18px;
        width: 42px;
        height: 42px;
    }
    section {
        padding: 60px 0;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .about-content h2 {
        font-size: 1.75rem;
    }
    .page-title {
        font-size: 2rem;
    }
}
@media (max-width: 575px) {
    .hero-buttons {
        flex-direction: column;
    }
    .btn-primary-custom,
    .btn-outline-custom,
    .btn-green {
        width: 100%;
        justify-content: center;
    }
    .floating-card {
        display: none;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn-white,
    .cta-buttons .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}
.section-header {
    position: relative;
}
.section-header::before {
    content: '';
    display: block;
    width: 1px;
    height: 44px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(212, 114, 46, 0.0) 10%,
        var(--copper-600) 55%,
        transparent 100%);
}
.section-header .section-badge {
    background: linear-gradient(135deg, var(--green-50) 0%, var(--copper-50) 100%);
    border-color: rgba(36, 107, 41, 0.18);
    color: var(--green-800);
    position: relative;
    padding-left: 2.1rem;
    box-shadow: 0 1px 2px rgba(15, 15, 13, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.section-header .section-badge::before {
    content: '';
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--copper-500);
    box-shadow: 0 0 0 3px rgba(212, 114, 46, 0.22);
}
.section-title span {
    background: linear-gradient(115deg, var(--copper-500) 0%, var(--copper-700) 60%, var(--copper-900) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.services-section {
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(36, 107, 41, 0.08) 0%, transparent 58%),
        radial-gradient(ellipse 70% 50% at 92% 100%, rgba(212, 114, 46, 0.09) 0%, transparent 55%),
        linear-gradient(180deg, var(--neutral-50) 0%, #ffffff 45%, var(--neutral-50) 100%);
    position: relative;
    isolation: isolate;
}
.services-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(36, 107, 41, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 107, 41, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, black, transparent 75%);
            mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, black, transparent 75%);
}
.service-card {
    background:
        linear-gradient(180deg, #ffffff 0%, var(--neutral-50) 100%);
    box-shadow: 0 1px 2px rgba(15, 15, 13, 0.03), inset 0 1px 0 rgba(255, 255, 255, 1);
}
.service-icon {
    background:
        radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.85) 0%, transparent 60%),
        conic-gradient(from 135deg at 50% 50%,
            var(--green-100) 0deg,
            var(--copper-100) 120deg,
            var(--green-50) 240deg,
            var(--green-100) 360deg);
    border: 1px solid var(--green-200);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 4px 12px -4px rgba(36, 107, 41, 0.15);
}
.services-grid--home .service-icon i {
    animation: service-icon-spin 18s linear infinite;
    transform-origin: 50% 50%;
}
@keyframes service-icon-spin {
    to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    .services-grid--home .service-icon i {
        animation: none;
    }
}
.about-image-main--photo {
    padding: 0;
}
.about-image-main--photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: inherit;
}
.about-image-main--photo::before {
    mix-blend-mode: overlay;
    opacity: 0.55;
}
.about-image {
    isolation: isolate;
}
.about-experience-badge {
    z-index: 3;
}
.products-section {
    background:
        radial-gradient(ellipse 55% 80% at 8% 0%, rgba(212, 114, 46, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 65% 60% at 95% 100%, rgba(36, 134, 51, 0.28) 0%, transparent 58%),
        radial-gradient(ellipse 45% 50% at 50% 50%, rgba(212, 114, 46, 0.06) 0%, transparent 70%),
        linear-gradient(175deg, var(--green-950) 0%, var(--neutral-950) 50%, var(--green-900) 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 80%);
            mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 80%);
}
.products-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}
.products-section .section-header::before {
    background: linear-gradient(to bottom, transparent, var(--copper-400) 55%, transparent);
}
.products-section .section-badge {
    background: linear-gradient(135deg, rgba(212, 114, 46, 0.18) 0%, rgba(36, 107, 41, 0.12) 100%);
    border-color: rgba(240, 160, 96, 0.28);
    color: var(--copper-300);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.products-section .section-badge::before {
    background: var(--copper-400);
    box-shadow: 0 0 0 3px rgba(240, 160, 96, 0.2);
}
.products-section .section-title {
    color: var(--white);
}
.products-section .section-title span {
    background: linear-gradient(115deg, var(--copper-300) 0%, var(--copper-500) 60%, var(--copper-700) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.products-section .section-subtitle {
    color: rgba(255, 255, 255, 0.58);
}
.products-section .product-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.products-section .product-card:hover {
    border-color: rgba(240, 160, 96, 0.28);
    box-shadow:
        0 32px 64px -16px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(240, 160, 96, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.products-section .product-title {
    color: var(--white);
}
.products-section .product-brand {
    color: var(--copper-400);
}
.products-section .product-description {
    color: rgba(255, 255, 255, 0.6);
}
.products-section .product-features li {
    color: rgba(255, 255, 255, 0.7);
}
.products-section .product-features li i {
    color: var(--copper-400);
}
.products-section .product-footer {
    border-top-color: rgba(255, 255, 255, 0.08);
}
.products-section .product-price {
    color: rgba(255, 255, 255, 0.5);
}
.products-section .product-price strong {
    color: var(--copper-300);
}
.products-section .product-btn {
    background: linear-gradient(135deg, var(--copper-500) 0%, var(--copper-700) 100%);
    box-shadow: 0 4px 12px -2px rgba(212, 114, 46, 0.4);
}
.products-section .product-btn:hover {
    background: linear-gradient(135deg, var(--copper-400) 0%, var(--copper-600) 100%);
    box-shadow: 0 8px 20px -4px rgba(212, 114, 46, 0.55);
}
.products-section .btn-green {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
    color: var(--white);
    box-shadow: 0 8px 20px -6px rgba(36, 160, 62, 0.45);
}
.product-image {
    background:
        radial-gradient(ellipse 75% 60% at 20% 20%, rgba(212, 114, 46, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 60% 80% at 85% 85%, rgba(10, 31, 12, 0.6) 0%, transparent 55%),
        linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 55%, var(--neutral-950) 100%);
}
.product-card:hover .product-image i {
    transform: scale(1.12) rotate(-4deg);
    color: rgba(255, 255, 255, 0.22);
}
.gallery-section.home-gallery-section {
    background:
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(36, 107, 41, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 0% 100%, rgba(212, 114, 46, 0.04) 0%, transparent 60%),
        var(--bg-primary);
}
.about-section {
    background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(36, 107, 41, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(212, 114, 46, 0.06) 0%, transparent 55%),
        var(--bg-primary);
    position: relative;
}
.about-image-main {
    background:
        radial-gradient(ellipse 70% 60% at 15% 20%, rgba(212, 114, 46, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 60% 70% at 85% 85%, rgba(10, 31, 12, 0.5) 0%, transparent 55%),
        linear-gradient(145deg, var(--green-600) 0%, var(--green-800) 45%, var(--green-950) 100%);
    box-shadow:
        0 40px 80px -20px rgba(10, 31, 12, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.about-image-main::before {
    top: -20%;
    right: -20%;
    width: 80%;
    height: 80%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
        conic-gradient(from 200deg at 50% 50%,
            transparent 0deg,
            rgba(212, 114, 46, 0.15) 90deg,
            transparent 180deg,
            transparent 360deg);
}
.about-image-main i {
    font-size: 200px;
    color: rgba(255, 255, 255, 0.08);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}
.about-experience-badge {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25) 0%, transparent 55%),
        linear-gradient(145deg, var(--copper-500) 0%, var(--copper-700) 50%, var(--copper-900) 100%);
    box-shadow:
        0 0 0 4px var(--white),
        0 0 50px rgba(212, 114, 46, 0.4),
        0 24px 48px -12px rgba(107, 47, 0, 0.5);
}
.feature-icon {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
        linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 60%, var(--green-950) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 6px 14px -4px rgba(36, 107, 41, 0.4);
}
.stats-section {
    background:
        linear-gradient(180deg, var(--green-950) 0%, var(--neutral-950) 50%, var(--green-950) 100%);
}
.stats-section::before {
    background:
        radial-gradient(ellipse 55% 80% at 15% 15%, rgba(212, 114, 46, 0.38) 0%, transparent 55%),
        radial-gradient(ellipse 55% 80% at 85% 85%, rgba(36, 160, 62, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse 45% 55% at 50% 50%, rgba(212, 114, 46, 0.1) 0%, transparent 70%);
}
.stats-section::after {
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 80%);
            mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 80%);
}
.stat-icon {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
        linear-gradient(135deg, rgba(212, 114, 46, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(240, 160, 96, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 20px -6px rgba(212, 114, 46, 0.25);
}
.stat-icon i {
    color: var(--copper-300);
    filter: drop-shadow(0 2px 8px rgba(240, 160, 96, 0.35));
}
.stat-number {
    background: linear-gradient(180deg, #ffffff 0%, rgba(245, 190, 143, 0.92) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.02em;
}
.stat-number span {
    background: linear-gradient(180deg, var(--copper-300) 0%, var(--copper-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.testimonials-section {
    background:
        radial-gradient(ellipse 55% 50% at 0% 50%, rgba(212, 114, 46, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 100% 100%, rgba(36, 107, 41, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--copper-50) 0%, var(--neutral-50) 60%, var(--copper-50) 100%);
    position: relative;
    isolation: isolate;
}
.testimonials-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}
.testimonial-card {
    background:
        linear-gradient(180deg, #ffffff 0%, var(--neutral-50) 100%);
    box-shadow:
        0 1px 2px rgba(15, 15, 13, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}
.testimonial-quote {
    font-size: 6rem;
    top: 0.25rem;
    right: 1.5rem;
    line-height: 0.85;
    color: transparent;
    background: linear-gradient(135deg, rgba(212, 114, 46, 0.18) 0%, rgba(36, 107, 41, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.testimonial-avatar {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22) 0%, transparent 55%),
        linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 55%, var(--green-950) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 6px 14px -4px rgba(36, 107, 41, 0.4);
}
.cta-section {
    background:
        radial-gradient(ellipse 50% 70% at 0% 0%, rgba(30, 20, 10, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 60% 60% at 100% 100%, rgba(107, 47, 0, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(240, 160, 96, 0.12) 0%, transparent 70%),
        linear-gradient(135deg, var(--copper-500) 0%, var(--copper-700) 45%, var(--copper-900) 100%);
}
.cta-section::before {
    background:
        conic-gradient(from 220deg at 70% 40%,
            transparent 0deg,
            rgba(255, 255, 255, 0.14) 80deg,
            transparent 160deg,
            transparent 360deg),
        radial-gradient(ellipse 55% 55% at 80% 25%, rgba(255, 255, 255, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 35% 50% at 10% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    animation: cta-conic-flow 28s linear infinite;
}
@keyframes cta-conic-flow {
    to { transform: rotate(1turn); }
}
@media (prefers-reduced-motion: reduce) {
    .cta-section::before {
        animation: none;
    }
}
.cta-section::after {
    opacity: 0.045;
}
.contact-section {
    background:
        radial-gradient(ellipse 45% 60% at 100% 20%, rgba(36, 107, 41, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 0% 80%, rgba(212, 114, 46, 0.05) 0%, transparent 60%),
        var(--bg-primary);
}
.contact-info-card {
    background:
        radial-gradient(ellipse 65% 45% at 0% 0%, rgba(212, 114, 46, 0.22) 0%, transparent 58%),
        radial-gradient(ellipse 50% 55% at 100% 100%, rgba(10, 31, 12, 0.4) 0%, transparent 55%),
        linear-gradient(145deg, var(--green-800) 0%, var(--green-900) 50%, var(--green-950) 100%);
    box-shadow:
        0 32px 64px -16px rgba(10, 31, 12, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.contact-info-card::before {
    top: -25%;
    right: -25%;
    width: 360px;
    height: 360px;
    background:
        conic-gradient(from 180deg at 50% 50%,
            transparent 0deg,
            rgba(212, 114, 46, 0.22) 100deg,
            transparent 200deg,
            transparent 360deg),
        radial-gradient(circle, rgba(212, 114, 46, 0.18) 0%, transparent 65%);
}
.contact-icon {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14) 0%, transparent 55%),
        linear-gradient(135deg, rgba(212, 114, 46, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(240, 160, 96, 0.18);
}
.contact-item:hover .contact-icon {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22) 0%, transparent 55%),
        linear-gradient(135deg, var(--copper-500) 0%, var(--copper-700) 100%);
    border-color: var(--copper-500);
    box-shadow: 0 6px 16px -4px rgba(212, 114, 46, 0.5);
}
.social-link {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.08);
}
.social-link:hover {
    background: linear-gradient(135deg, var(--copper-500) 0%, var(--copper-700) 100%);
    border-color: var(--copper-500);
    box-shadow: 0 8px 20px -6px rgba(212, 114, 46, 0.45);
}
.contact-form-card {
    background:
        linear-gradient(180deg, #ffffff 0%, var(--neutral-50) 100%);
    box-shadow:
        0 24px 48px -16px rgba(15, 15, 13, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}
.form-control:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 4px rgba(36, 107, 41, 0.1), 0 1px 2px rgba(15, 15, 13, 0.04);
}
@media (max-width: 767px) {
    .products-section {
        background:
            radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 114, 46, 0.22) 0%, transparent 55%),
            radial-gradient(ellipse 80% 50% at 50% 100%, rgba(36, 134, 51, 0.2) 0%, transparent 55%),
            linear-gradient(180deg, var(--green-950) 0%, var(--neutral-950) 100%);
    }
    .section-header::before {
        height: 36px;
    }
}
html,
body {
    max-width: 100%;
    overflow-x: clip;
}
@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}
p, h1, h2, h3, h4, h5, h6, li, span, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.hero-section,
.services-section,
.products-section,
.about-section,
.stats-section,
.testimonials-section,
.gallery-section,
.gallery-page-section,
.home-gallery-section,
.contact-section,
.cta-section,
.brands-section,
.footer-section,
.page-header {
    max-width: 100%;
    overflow-x: clip;
}
img, picture, video, canvas, svg {
    max-width: 100%;
    height: auto;
}
.whatsapp-float {
    right: max(22px, env(safe-area-inset-right, 0px) + 18px);
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
}
.scroll-top {
    right: max(22px, env(safe-area-inset-right, 0px) + 18px);
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}
@media (max-width: 767px) {
    .whatsapp-float {
        right: max(18px, env(safe-area-inset-right, 0px) + 14px);
        bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    }
    .scroll-top {
        right: max(18px, env(safe-area-inset-right, 0px) + 14px);
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    }
    .whatsapp-btn::before {
        animation-name: whatsappPulseMobile;
    }
    .whatsapp-tooltip {
        display: none;
    }
}
@keyframes whatsappPulseMobile {
    0%   { transform: scale(1);    opacity: 0.35; }
    100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 575px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
@media (max-width: 575px) {
    .hero-section {
        padding-top: 128px;
        padding-bottom: 48px;
        min-height: auto;
    }
    .hero-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }
    .hero-title {
        font-size: clamp(1.9rem, 8.5vw, 2.6rem);
        letter-spacing: -0.3px;
    }
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.38rem 0.85rem;
        margin-bottom: 1.25rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }
    .hero-buttons {
        gap: 0.6rem;
        margin-bottom: 2.25rem;
    }
    .hero-stats {
        gap: 1rem;
        padding-top: 1.5rem;
    }
    .hero-stat-number {
        font-size: 1.6rem;
    }
    .hero-stat-text {
        font-size: 0.66rem;
        letter-spacing: 1px;
    }
    .hero-mobile-photo {
        margin-top: 1.5rem;
        border-radius: var(--radius-lg);
    }
}
@media (max-width: 575px) {
    .services-section,
    .products-section,
    .about-section,
    .contact-section,
    .testimonials-section,
    .home-gallery-section,
    .gallery-page-section {
        padding: 56px 0;
    }
    .stats-section,
    .cta-section {
        padding: 52px 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .section-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }
    .section-subtitle {
        font-size: 0.92rem;
    }
}
@media (max-width: 575px) {
    .service-card {
        padding: 1.75rem 1.35rem;
        border-radius: var(--radius-xl);
    }
    .product-image {
        height: 180px;
    }
    .product-image i {
        font-size: 64px;
    }
    .product-content {
        padding: 1.35rem;
    }
    .product-title {
        font-size: 1.05rem;
    }
    .product-footer {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 1.75rem 1.35rem;
        border-radius: var(--radius-xl);
    }
    .contact-info-header h3 {
        font-size: 1.35rem;
    }
    .contact-item {
        margin-bottom: 1.15rem;
    }
    .testimonial-card {
        padding: 1.75rem 1.35rem;
    }
    .testimonial-quote {
        font-size: 4rem;
        right: 1rem;
        top: 0.5rem;
    }
}
@media (max-width: 575px) {
    .about-content {
        padding-left: 0;
        margin-top: 2.5rem;
    }
    .about-image-main {
        height: clamp(240px, 60vw, 340px);
    }
    .feature-item {
        padding: 1rem;
    }
    .feature-icon {
        width: 42px;
        height: 42px;
        margin-right: 0.85rem;
    }
    .feature-icon i {
        font-size: 1rem;
    }
    .feature-text h4 {
        font-size: 0.98rem;
    }
    .feature-text p {
        font-size: 0.8rem;
    }
}
@media (max-width: 420px) {
    .about-experience-badge {
        right: 14px;
        bottom: -14px;
        width: 86px;
        height: 86px;
        border-width: 3px;
    }
    .about-experience-badge .number {
        font-size: 1.45rem;
    }
    .about-experience-badge .text {
        font-size: 0.58rem;
        letter-spacing: 0.8px;
    }
}
@media (max-width: 575px) {
    .stat-icon {
        width: 50px;
        height: 50px;
        border-radius: var(--radius-md);
    }
    .stat-icon i {
        font-size: 1.15rem;
    }
    .stat-number {
        font-size: 1.85rem;
    }
    .stat-text {
        font-size: 0.68rem;
        letter-spacing: 1.2px;
    }
}
@media (max-width: 575px) {
    .page-header {
        padding: 120px 0 48px;
    }
    .page-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }
    .breadcrumb-nav {
        font-size: 0.8rem;
    }
}
@media (max-width: 575px) {
    .footer-section {
        padding: 52px 0 0;
    }
    .footer-brand-logo {
        height: 82px;
        max-width: 180px;
    }
    .footer-about {
        max-width: 100%;
    }
    .footer-title {
        margin-bottom: 1rem;
        margin-top: 0.5rem;
    }
    .footer-bottom {
        margin-top: 2rem;
    }
    .footer-legal {
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-bottom-content {
        gap: 0.75rem;
    }
}
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 31, 12, 0.96);
        backdrop-filter: blur(18px) saturate(1.5);
        -webkit-backdrop-filter: blur(18px) saturate(1.5);
        margin-top: 0.75rem;
        padding: 0.75rem 0.5rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .navbar-nav .nav-link {
        padding: 0.7rem 1rem !important;
    }
}
@media (max-width: 375px) {
    .navbar .container {
        padding-left: 14px;
        padding-right: 14px;
    }
    .navbar-brand-logo {
        height: 60px;
    }
    .navbar.scrolled .navbar-brand-logo {
        height: 42px;
    }
}
@media (max-width: 575px) {
    .contact-section + section[style*="padding: 0"] .reveal {
        height: 280px !important;
    }
}
@media (max-width: 400px) {
    .gallery-wall {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
    .gallery-tile-zoom {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
        bottom: 8px;
        right: 8px;
    }
}
@media (max-width: 575px) {
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .lightbox-nav {
        width: 42px;
        height: 42px;
    }
}
@media (max-width: 575px) {
    .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
    }
    .newsletter-form button {
        padding: 0.65rem 1rem;
    }
}
