/* ============================================
   PergoMas Madrid - Premium Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Brand Colors */
    --porcelain: #FDFAF7;
    --pale-oak: #E1C7A8;
    --porcelain-2: #FEFBF6;
    --chocolate-brown: #9E5B23;
    --golden-chestnut: #C1864A;
    --forest-green: #4A6741;
    --sage-green: #8FA885;
    --deep-brown: #5C3417;
    
    /* Neutrals */
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Semantic */
    --success: #4A6741;
    --error: #DC2626;
    --whatsapp: #25D366;
    
    /* Typography */
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Dancing Script', cursive;
    
    /* Spacing */
    --container-max: 1320px;
    --section-py: 120px;
    --section-py-mobile: 80px;
    
    /* Borders */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px rgba(193, 134, 74, 0.2);
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-base: 300ms;
    --duration-slow: 500ms;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-toast: 500;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--porcelain);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.script {
    font-family: var(--font-accent);
    font-weight: 700;
    color: var(--golden-chestnut);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--golden-chestnut);
    margin-bottom: 16px;
}

.section-label.light {
    color: var(--pale-oak);
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--gray-900);
}

.section-title.light {
    color: var(--white);
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--gray-900);
    padding: 10px 0;
    position: relative;
    z-index: var(--z-sticky);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-300);
    transition: color var(--duration-fast);
}

.top-bar-item:hover {
    color: var(--white);
}

.top-bar-item i {
    font-size: 14px;
    color: var(--golden-chestnut);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 16px;
    border-left: 1px solid var(--gray-700);
}

.top-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 14px;
    color: var(--gray-400);
    transition: all var(--duration-fast);
}

.top-bar-social a:hover {
    color: var(--golden-chestnut);
    transform: translateY(-2px);
}

/* ============================================
   Header & Navigation - CENTERED LOGO
   ============================================ */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: var(--z-fixed);
    transition: all var(--duration-base) var(--ease-out);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
    gap: 20px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo img {
    height: 52px;
    width: auto;
    transition: height var(--duration-fast);
}

.header.scrolled .nav-logo img {
    height: 44px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
}

.nav-link:hover {
    color: var(--chocolate-brown);
    background: rgba(193, 134, 74, 0.08);
}

.nav-link i {
    font-size: 16px;
    transition: transform var(--duration-fast);
}

.nav-item.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-link-cta {
    background: var(--chocolate-brown);
    color: var(--white) !important;
    padding: 10px 20px;
}

.nav-link-cta:hover {
    background: var(--golden-chestnut) !important;
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 520px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base) var(--ease-out);
    pointer-events: none;
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
}

.dropdown-item:hover {
    background: var(--porcelain);
}

.dropdown-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--chocolate-brown), var(--golden-chestnut));
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.dropdown-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.dropdown-desc {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 24px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--duration-fast);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: var(--z-modal);
    display: flex;
    flex-direction: column;
    transition: right var(--duration-base) var(--ease-out);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-logo {
    height: 40px;
}

.mobile-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gray-600);
    border-radius: var(--radius-full);
    transition: all var(--duration-fast);
}

.mobile-close:hover {
    background: var(--gray-100);
}

.mobile-nav {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-dropdown-content {
    display: none;
    padding: 8px 0 8px 16px;
}

.mobile-dropdown-content a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
}

.mobile-dropdown.open .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown.open .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-menu-footer {
    padding: 20px 24px;
    display: flex;
    gap: 12px;
    border-top: 1px solid var(--gray-200);
}

.mobile-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--chocolate-brown);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
}

.mobile-cta.whatsapp {
    background: var(--whatsapp);
}

/* Mobile menu overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: calc(var(--z-modal) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base);
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: var(--chocolate-brown);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--golden-chestnut);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-glass {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.25);
}

.btn-white {
    background: var(--white);
    color: var(--chocolate-brown);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s var(--ease-out);
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.7) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--whatsapp);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.045em;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title .script {
    font-size: 1.1em;
    color: var(--pale-oak);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-slider-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.slider-dot.active {
    background: var(--white);
    width: 32px;
    border-radius: var(--radius-full);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============================================
   Features Bar
   ============================================ */
.features-bar {
    background: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-100);
}

.features-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74,103,65,0.1), rgba(143,168,133,0.1));
    border-radius: var(--radius-md);
    color: var(--forest-green);
    font-size: 22px;
}

.feature-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: -0.02em;
}

.feature-text span {
    font-size: 12px;
    color: var(--gray-500);
}

.feature-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--section-py) 0;
    background: var(--porcelain-2);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 560px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-1 {
    width: 70%;
    height: 65%;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-img-2 {
    width: 55%;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 5px solid var(--white);
}

.about-img-3 {
    width: 40%;
    height: 35%;
    top: 20%;
    right: 5%;
    z-index: 2;
    border: 5px solid var(--white);
}

.about-experience {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: linear-gradient(135deg, var(--chocolate-brown), var(--golden-chestnut));
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.exp-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.exp-number sup {
    font-size: 24px;
    vertical-align: super;
}

.exp-text {
    font-size: 14px;
    line-height: 1.3;
    opacity: 0.9;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    margin-bottom: 32px;
}

.about-text .lead {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest-green);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 14px;
}

.highlight span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

/* ============================================
   Services Section - Bento Grid
   ============================================ */
.services {
    padding: var(--section-py) 0;
    background: var(--porcelain);
}

.section-header-left {
    max-width: 540px;
    margin-bottom: 48px;
}

.section-header-left .section-title {
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.6;
}

.services-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
}

.bento-small {
    grid-column: span 1;
}

.bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease-out);
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
    transition: opacity var(--duration-base);
}

.bento-card:hover .bento-bg {
    transform: scale(1.08);
}

.bento-content {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}

.bento-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

.bento-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.bento-large .bento-title {
    font-size: 32px;
}

.bento-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    max-width: 280px;
    margin-bottom: 16px;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pale-oak);
    transition: gap var(--duration-fast);
}

.bento-card:hover .bento-link {
    gap: 10px;
}

.bento-small .bento-content {
    padding: 20px;
}

.bento-small .bento-title {
    font-size: 18px;
}

.bento-small .bento-link {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Projects Section
   ============================================ */
.projects {
    background: var(--gray-900);
    padding-bottom: 80px;
    overflow: hidden;
}

.projects-header {
    padding: 80px 0 60px;
}

.projects-header-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.projects-header-left {
    flex: 1;
}

.projects-header-text {
    max-width: 400px;
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.6;
}

.projects-gallery {
    overflow: hidden;
    margin-bottom: 48px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: scrollGallery 30s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-item {
    position: relative;
    flex: 0 0 350px;
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--duration-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.projects-cta {
    text-align: center;
}

/* ============================================
   Process Section
   ============================================ */
.process {
    position: relative;
    padding: var(--section-py) 0;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
}

.process-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92), rgba(64, 64, 64, 0.88));
}

.process-content {
    position: relative;
}

.process-header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 64px;
}

.process-intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
}

.section-header-center {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 64px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px 28px 32px;
    text-align: center;
    transition: all var(--duration-base) var(--ease-out);
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.process-card-number {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--chocolate-brown), var(--golden-chestnut));
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    letter-spacing: 1px;
}

.process-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--chocolate-brown), var(--golden-chestnut));
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 32px;
    margin: 16px auto 24px;
    box-shadow: 0 8px 32px rgba(158, 91, 35, 0.3);
}

.process-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--porcelain-2);
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}

.testimonials-header .section-title {
    margin-bottom: 20px;
}

.testimonials-intro {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.testimonials-stats {
    display: flex;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 600;
    color: var(--chocolate-brown);
    letter-spacing: -0.04em;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-cards {
    display: flex;
    gap: 20px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-base) var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--chocolate-brown), var(--deep-brown));
    color: var(--white);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--golden-chestnut), var(--chocolate-brown));
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.testimonial-card.featured .testimonial-avatar {
    background: rgba(255,255,255,0.2);
}

.testimonial-meta {
    flex: 1;
}

.testimonial-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
}

.testimonial-card.featured .testimonial-name {
    color: var(--white);
}

.testimonial-location {
    font-size: 12px;
    color: var(--gray-500);
}

.testimonial-card.featured .testimonial-location {
    color: rgba(255,255,255,0.6);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #FFB800;
}

.testimonial-card.featured .testimonial-rating {
    color: #FFD666;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    font-style: italic;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255,255,255,0.85);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    padding: var(--section-py) 0;
    background: var(--porcelain);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-card-content {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card-content .section-label {
    margin-bottom: 16px;
}

.cta-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.cta-title .script {
    color: var(--golden-chestnut);
}

.cta-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline-dark:hover {
    border-color: var(--gray-900);
    color: var(--gray-900);
    background: var(--gray-50);
}

.cta-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
}

.cta-trust-item i {
    font-size: 16px;
    color: var(--forest-green);
}

.cta-card-visual {
    position: relative;
    background: var(--gray-100);
}

.cta-image-wrapper {
    height: 100%;
    min-height: 400px;
}

.cta-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-stats {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
}

.cta-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 12px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-stat-number {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--chocolate-brown);
    letter-spacing: -0.03em;
    line-height: 1;
}

.cta-stat-label {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: block;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--porcelain);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-info-side {
    background: var(--gray-900);
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.contact-info-content {
    max-width: 420px;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--golden-chestnut);
    margin-bottom: 20px;
}

.contact-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-title .script {
    color: var(--pale-oak);
}

.contact-intro {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-out);
}

.contact-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    transform: translateX(6px);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    font-size: 20px;
    color: var(--pale-oak);
    flex-shrink: 0;
}

.contact-card-whatsapp .contact-card-icon {
    background: var(--whatsapp);
    color: var(--white);
}

.contact-card-info {
    flex: 1;
}

.contact-card-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-card-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
}

.contact-card-arrow {
    font-size: 18px;
    color: rgba(255,255,255,0.25);
    transition: all var(--duration-fast);
}

.contact-card:hover .contact-card-arrow {
    color: var(--pale-oak);
    transform: translate(3px, -3px);
}

.contact-hours {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(255,255,255,0.1);
}

.contact-hours-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    font-size: 18px;
    color: var(--pale-oak);
}

.contact-hours-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2px;
}

.contact-hours-value {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.contact-form-side {
    padding: 80px 60px;
    background: var(--white);
}

.contact-form {
    max-width: 480px;
}

.form-title {
    margin-bottom: 32px;
}

.form-title h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.form-title p {
    font-size: 14px;
    color: var(--gray-500);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full-width {
    grid-column: span 2;
}

.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: 14px 16px;
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--gray-800);
    transition: all var(--duration-fast);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--gray-400);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    background: var(--white);
    border-color: var(--golden-chestnut);
    box-shadow: 0 0 0 4px rgba(193, 134, 74, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    cursor: pointer;
    appearance: none;
    padding-right: 44px;
}

.select-wrapper i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--gray-400);
    pointer-events: none;
}

.checkbox-field {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast);
}

.checkbox-label input:checked + .checkmark {
    background: var(--chocolate-brown);
    border-color: var(--chocolate-brown);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-text {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--chocolate-brown);
    text-decoration: underline;
}

.contact-form .btn {
    margin-top: 24px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--gray-900);
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    height: 56px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    font-size: 18px;
    transition: all var(--duration-fast);
}

.social-link:hover {
    background: var(--golden-chestnut);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color var(--duration-fast);
}

.footer-nav a:hover {
    color: var(--golden-chestnut);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact ul li i {
    font-size: 16px;
    color: var(--golden-chestnut);
}

.footer-contact ul li a,
.footer-contact ul li span {
    font-size: 14px;
    color: var(--gray-400);
    transition: color var(--duration-fast);
}

.footer-contact ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--gray-500);
    transition: color var(--duration-fast);
}

.footer-legal a:hover {
    color: var(--golden-chestnut);
}

/* ============================================
   WhatsApp Float & Back to Top
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    z-index: var(--z-fixed);
    transition: all var(--duration-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    border: 2px solid var(--whatsapp);
    animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 100px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--chocolate-brown);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 20px;
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-base);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--golden-chestnut);
    transform: translateY(-4px);
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base);
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 24px;
    transition: all var(--duration-fast);
}

.lightbox-close:hover {
    background: var(--white);
    color: var(--black);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 24px;
    transition: all var(--duration-fast);
}

.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }

.lightbox-nav:hover {
    background: var(--white);
    color: var(--black);
}

.lightbox-content img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

/* ============================================
   Cookie Banner & Modal
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: var(--z-modal);
    transform: translateY(100%);
    transition: transform var(--duration-base);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cookie-text i {
    font-size: 24px;
    color: var(--golden-chestnut);
}

.cookie-text p {
    font-size: 14px;
    color: var(--gray-600);
}

.cookie-text a {
    color: var(--chocolate-brown);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie-settings {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: all var(--duration-fast);
}

.btn-cookie-settings:hover {
    border-color: var(--chocolate-brown);
    color: var(--chocolate-brown);
}

.btn-cookie-accept {
    padding: 10px 24px;
    background: var(--chocolate-brown);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    transition: all var(--duration-fast);
}

.btn-cookie-accept:hover {
    background: var(--golden-chestnut);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base);
    padding: 24px;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.cookie-modal-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.cookie-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--gray-500);
    transition: all var(--duration-fast);
}

.cookie-modal-close:hover {
    background: var(--gray-100);
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-option-info p {
    font-size: 13px;
    color: var(--gray-500);
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--gray-300);
    border-radius: var(--radius-full);
    transition: var(--duration-fast);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: var(--duration-fast);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--forest-green);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.toggle-switch.disabled .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-200);
}

.btn-cookie-save {
    width: 100%;
    padding: 12px 24px;
    background: var(--chocolate-brown);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    transition: all var(--duration-fast);
}

.btn-cookie-save:hover {
    background: var(--golden-chestnut);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1200px) {
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .bento-large {
        grid-column: span 2;
        height: 360px;
    }
    
    .bento-medium {
        grid-column: span 1;
        height: 280px;
    }
    
    .bento-small {
        height: 240px;
    }
    
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .testimonials-header {
        text-align: center;
    }
    
    .testimonials-stats {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    :root {
        --section-py: 80px;
    }
    
    .top-bar {
        display: none;
    }
    
    .nav {
        display: flex;
        justify-content: space-between;
        position: relative;
    }
    
    .nav-list {
        display: none;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image-stack {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .contact-info-side {
        padding: 56px 36px;
    }
    
    .contact-form-side {
        padding: 56px 36px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-card {
        padding: 14px 16px;
    }
    
    .contact-card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-card {
        padding: 36px 24px 28px;
    }
    
    .process-card-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .process-card h3 {
        font-size: 18px;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
    }
    
    .cta-card-content {
        padding: 48px 40px;
        order: 2;
    }
    
    .cta-card-visual {
        order: 1;
    }
    
    .cta-image-wrapper {
        min-height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 60px;
    }
    
    .features-grid {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .feature-divider {
        display: none;
    }
    
    .feature-item {
        flex: 1 1 calc(50% - 8px);
        padding: 16px;
        background: var(--gray-50);
        border-radius: var(--radius-md);
    }
    
    .services-bento {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-medium {
        grid-column: span 1;
        height: 300px;
    }
    
    .testimonials-cards {
        flex-direction: column;
    }
    
    .testimonial-card.featured {
        order: -1;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-field.full-width {
        grid-column: span 1;
    }
    
    .gallery-item {
        flex: 0 0 280px;
        height: 200px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .back-to-top {
        right: 24px;
        bottom: 96px;
    }
    
    .projects-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-slider-nav {
        bottom: 80px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .about-image-stack {
        height: 360px;
    }
    
    .about-experience {
        left: 10px;
        bottom: 40px;
        padding: 18px 24px;
    }
    
    .exp-number {
        font-size: 36px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .process-card {
        padding: 32px 20px 24px;
    }
    
    .process-card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin: 12px auto 20px;
    }
    
    .process-header {
        margin-bottom: 48px;
    }
    
    .cta-card-content {
        padding: 36px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .cta-stat {
        padding: 12px;
    }
    
    .cta-image-wrapper {
        min-height: 250px;
    }
    
    .contact-info-side,
    .contact-form-side {
        padding: 40px 20px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-card-value {
        font-size: 14px;
    }
    
    .contact-hours {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .mobile-menu {
        max-width: 100%;
    }
    
    .feature-item {
        flex: 1 1 100%;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .gallery-track {
        animation: none;
    }
}

/* Print */
@media print {
    .header, .top-bar, .cookie-banner, .whatsapp-float, .back-to-top, .lightbox {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}
