:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --secondary: #495057;
    --dark: #212529;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(27, 67, 50, 0.12);
    --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --header-h: 80px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }

/* Typography */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.lead { font-size: 1.125rem; color: var(--secondary); margin-bottom: 1.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--gray-100); color: var(--primary-dark); border-color: var(--gray-200); }
.btn-secondary:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--primary-dark); }
.btn-white { background: var(--white); color: var(--primary-dark); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(45, 106, 79, 0.12);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
.site-header.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.logo img {
    width: auto;
    height: 52px;
    max-width: 160px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.logo-text { display: none; }

.main-nav { display: flex; gap: 0.25rem; }
.main-nav a {
    padding: 0.5rem 0.9rem;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--secondary);
    border-radius: var(--radius-sm);
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: rgba(45,106,79,0.08); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; }
.lang-switch a { color: var(--gray-600); padding: 0.2rem 0.3rem; }
.lang-switch a.active { color: var(--primary); }
.lang-switch span { color: var(--gray-300); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 2rem) 0 4rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.88) 0%, rgba(33,37,41,0.75) 100%);
}
.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}
.hero-text { color: var(--white); }
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-text > p { font-size: 1.125rem; opacity: 0.92; margin-bottom: 2rem; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-features { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}
.hero-features svg { color: var(--primary-light); flex-shrink: 0; }

.glass-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(27, 67, 50, 0.1);
}
.glass-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white) !important;
}
.glass-badge-dark {
    background: rgba(27, 67, 50, 0.9);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
}
.glass-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 1rem;
}
.glass-hover { transition: all var(--transition); }
.glass-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hero-shapes .shape {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35;
    animation: float 8s ease-in-out infinite;
}
.shape-1 { width: 300px; height: 300px; background: var(--primary-light); top: 10%; right: 10%; }
.shape-2 { width: 200px; height: 200px; background: #74c69d; bottom: 20%; left: 5%; animation-delay: -3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.seo-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.seo-intro-card, .seo-page-intro { padding: 2rem; }
.services-grid-compact { grid-template-columns: repeat(3, 1fr); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-card { padding: 1.75rem; text-align: center; }
.trust-icon { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%; background: rgba(45,106,79,0.12); display: flex; align-items: center; justify-content: center; }
.trust-icon::after { content: ''; width: 24px; height: 24px; background: var(--primary); mask-size: contain; mask-repeat: no-repeat; -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; }
.icon-shield::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z'/%3E%3C/svg%3E"); }
.icon-price::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z'/%3E%3C/svg%3E"); }
.icon-clock::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67V7z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67V7z'/%3E%3C/svg%3E"); }
.icon-star::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E"); }
.icon-kitchen::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E"); }
.icon-box::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E"); }
.icon-student::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 3L1 9l11 6 9-4.91V17h2V9L12 3z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 3L1 9l11 6 9-4.91V17h2V9L12 3z'/%3E%3C/svg%3E"); }
.icon-heart::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E"); }
.icon-piano::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E"); }
.icon-heavy::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4z'/%3E%3C/svg%3E"); }
.icon-users::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M16 11c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 3-1.34 3-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M16 11c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 3-1.34 3-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3z'/%3E%3C/svg%3E"); }
.process-inline { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.process-inline-item { display: flex; gap: 1rem; align-items: flex-start; }
.process-inline-item > span { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--primary); color: var(--white); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.regions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.region-card { padding: 1.5rem; }
.region-icon { color: var(--primary); margin-bottom: 0.75rem; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); }
.blog-card-image { display: block; aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-category { display: inline-block; font-size: 0.75rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.blog-card-body time { font-size: 0.8rem; color: var(--gray-600); }
.blog-card-body h2, .blog-card-body h3 { font-size: 1.15rem; margin: 0.5rem 0; font-family: var(--font-display); }
.blog-card-body h2 a, .blog-card-body h3 a { color: var(--primary-dark); }
.blog-single-grid { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: start; }
.blog-content { padding: 2.5rem; }
.blog-content h2 { margin: 1.5rem 0 0.75rem; color: var(--primary-dark); font-family: var(--font); font-size: 1.35rem; }
.blog-content p, .blog-content li { color: var(--secondary); margin-bottom: 1rem; }
.blog-content ul { padding-left: 1.25rem; list-style: disc; }
.blog-cta-inline { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.blog-sidebar { background: var(--gray-100); border-radius: var(--radius); padding: 1.5rem; }
.sidebar-post { display: block; padding: 1rem 0; border-bottom: 1px solid var(--gray-200); }
.sidebar-post strong { display: block; color: var(--primary-dark); }
.blog-meta { opacity: 0.9; font-size: 0.95rem; }
.empty-state { padding: 3rem; text-align: center; }
.pagination-wrap { margin-top: 2rem; }
body.menu-open { overflow: hidden; }
.desktop-only { display: flex; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(15,23,20,0.55); backdrop-filter: blur(4px); z-index: 1100; opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s; }
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer { position: fixed; top: 0; right: 0; width: min(340px, 88vw); height: 100%; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-left: 1px solid rgba(45,106,79,0.12); box-shadow: -8px 0 40px rgba(0,0,0,0.15); z-index: 1200; transform: translateX(105%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; padding: 1.25rem; }
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-200); }
.drawer-close { background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--secondary); }
.mobile-drawer-nav { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.mobile-drawer-nav a { padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 1.05rem; }
.mobile-drawer-nav a:hover { background: rgba(45,106,79,0.08); color: var(--primary); }
.mobile-quote-link { background: var(--primary) !important; color: var(--white) !important; margin-top: 1rem; text-align: center; }
.mobile-drawer-footer { padding-top: 1.5rem; border-top: 1px solid var(--gray-200); }
.mobile-drawer-footer .lang-switch { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.mobile-drawer-footer .lang-switch a { padding: 0.5rem 1rem; border-radius: 999px; background: var(--gray-100); font-weight: 600; font-size: 0.85rem; }
.mobile-drawer-footer .lang-switch a.active { background: var(--primary); color: var(--white); }
.mobile-phone { display: block; font-weight: 700; color: var(--primary); font-size: 1.1rem; }

.hero-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-logo {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    padding: 1.5rem 1.5rem 0;
    background: var(--white);
}
.hero-card-body { padding: 1.75rem 2rem 2rem; }
.hero-card-body h3 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.hero-card-body p { color: var(--secondary); font-size: 0.925rem; margin-bottom: 1.25rem; }
.hero-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}
.hero-phone:hover { color: var(--primary-dark); }

/* Stats */
.stats-section { background: var(--primary-dark); padding: 3rem 0; margin-top: -1px; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    color: var(--white);
}
.stat-item strong {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-item span { font-size: 0.9rem; opacity: 0.85; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-100); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-head p { color: var(--secondary); margin-top: 1rem; font-size: 1.05rem; }
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}
.section-cta { text-align: center; margin-top: 2.5rem; }

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(45,106,79,0.1);
    margin-bottom: 1.25rem;
    position: relative;
}
.service-icon::after {
    content: '';
    position: absolute;
    inset: 14px;
    background: var(--primary);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}
.icon-home::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E"); }
.icon-building::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z'/%3E%3C/svg%3E"); }
.icon-truck::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E"); }
.icon-elevator::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 2l5 5H8v10h4l-5 5 5 5V2H7z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 2l5 5H8v10h4l-5 5 5 5V2H7z'/%3E%3C/svg%3E"); }
.icon-tools::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z'/%3E%3C/svg%3E"); }
.icon-recycle::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M5.77 7.15L7.2 4.78l1.03-1.71c.39-.65 1.33-.65 1.72 0l1.48 2.46-1.23 2.06-1 1.62zM19.65 9.07l-1.23 2.06-1 1.62 1.03 1.71c.39.65 1.33.65 1.72 0l1.48-2.46 1.03-1.71c.39-.65-.03-1.48-.78-1.48h-2.25zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M5.77 7.15L7.2 4.78l1.03-1.71c.39-.65 1.33-.65 1.72 0l1.48 2.46-1.23 2.06-1 1.62zM19.65 9.07l-1.23 2.06-1 1.62 1.03 1.71c.39.65 1.33.65 1.72 0l1.48-2.46 1.03-1.71c.39-.65-.03-1.48-.78-1.48h-2.25zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z'/%3E%3C/svg%3E"); }
.icon-warehouse::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3z'/%3E%3C/svg%3E"); }
.icon-bolt::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M11 21h-1l1-7H7.5c-.58 0-.57-.32-.38-.66.19-.34.05-.08.07-.12C8.48 10.94 10.42 7.54 13 3h1l-1 7h3.5c.49 0 .56.33.47.51l-.07.15C12.96 17.55 11 21 11 21z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M11 21h-1l1-7H7.5c-.58 0-.57-.32-.38-.66.19-.34.05-.08.07-.12C8.48 10.94 10.42 7.54 13 3h1l-1 7h3.5c.49 0 .56.33.47.51l-.07.15C12.96 17.55 11 21 11 21z'/%3E%3C/svg%3E"); }

.service-card h3 { margin-bottom: 0.75rem; color: var(--primary-dark); }
.service-card p { color: var(--secondary); font-size: 0.925rem; margin-bottom: 1rem; }
.link-arrow { color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.link-arrow:hover { color: var(--primary-dark); }

/* Split layout */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.split-image { position: relative; }
.split-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.split-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}
.split-badge strong { display: block; font-size: 2rem; font-family: var(--font-display); line-height: 1; }
.split-badge span { font-size: 0.8rem; opacity: 0.9; }

.why-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.why-item { display: flex; gap: 1rem; }
.why-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(45,106,79,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.why-item h4 { margin-bottom: 0.25rem; color: var(--primary-dark); }
.why-item p { color: var(--secondary); font-size: 0.925rem; }

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.process-step {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--transition);
}
.process-step:hover { box-shadow: var(--shadow); border-color: transparent; }
.process-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: rgba(45,106,79,0.15);
    line-height: 1;
    margin-bottom: 1rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--primary-dark); }
.process-step p { color: var(--secondary); font-size: 0.9rem; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gallery-grid img {
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform var(--transition);
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testimonial-card p { color: var(--secondary); font-style: italic; margin-bottom: 1.25rem; font-size: 0.95rem; }
.testimonial-card footer strong { display: block; color: var(--primary-dark); }
.testimonial-card footer span { font-size: 0.85rem; color: var(--gray-600); }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
}
.cta-inline { margin-top: 0; }
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: var(--white);
}
.cta-inner h2 { margin-bottom: 0.5rem; }
.cta-inner p { opacity: 0.9; }

/* Page Hero */
.page-hero {
    position: relative;
    padding: calc(var(--header-h) + 4rem) 0 4rem;
    color: var(--white);
    text-align: center;
}
.page-hero-sm { padding-bottom: 3rem; }
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.9), rgba(33,37,41,0.8));
}
.page-hero-content { position: relative; max-width: 720px; margin: 0 auto; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { opacity: 0.92; font-size: 1.1rem; }

/* Service Detail */
.services-detail { display: flex; flex-direction: column; gap: 4rem; }
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-image img {
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow);
}
.service-detail-content .service-icon { margin-bottom: 1rem; }
.service-detail-content h2 { margin-bottom: 1rem; color: var(--primary-dark); }
.service-detail-content p { color: var(--secondary); margin-bottom: 1.5rem; }

/* About */
.about-logo {
    width: 200px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-team { margin-top: 1rem; }
.check-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary);
}
.check-list svg { color: var(--primary); flex-shrink: 0; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0 2rem; }
.contact-cards li {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}
.contact-cards svg { color: var(--primary); flex-shrink: 0; margin-top: 0.2rem; }
.contact-cards strong { display: block; margin-bottom: 0.25rem; color: var(--primary-dark); }
.contact-cards a { display: block; color: var(--primary); font-weight: 500; }
.contact-cards a:hover { color: var(--primary-dark); }

/* Forms */
.form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.form-card-lg { padding: 2.5rem; }
.form-card h3 { margin-bottom: 1.5rem; color: var(--primary-dark); }
.site-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--secondary); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.15);
}

/* Quote */
.quote-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
}
.quote-logo {
    width: 160px;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.quote-benefits h3 { margin-bottom: 1rem; color: var(--primary-dark); }
.quote-contact-mini {
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}
.quote-contact-mini a { color: var(--primary); font-weight: 700; font-size: 1.1rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--primary); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.5rem 1.25rem; color: var(--secondary); font-size: 0.95rem; }

/* Legal */
.legal-page { padding-top: calc(var(--header-h) + 3rem); }
.legal-content h1 { margin-bottom: 2rem; color: var(--primary-dark); }
.legal-text h3 { margin: 1.5rem 0 0.75rem; color: var(--primary-dark); }
.legal-text p { color: var(--secondary); margin-bottom: 1rem; }
.legal-text a { color: var(--primary); }

/* Flash */
.flash {
    position: fixed;
    top: calc(var(--header-h) + 1rem);
    left: 0; right: 0;
    z-index: 1100;
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.flash .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}
.flash-success .container { background: #d1e7dd; color: #0f5132; border: 1px solid #badbcc; }
.flash-error .container { background: #f8d7da; color: #842029; border: 1px solid #f5c2c7; }
.flash-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; opacity: 0.6; line-height: 1; }
.flash-close:hover { opacity: 1; }

/* Footer */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-brand p { margin: 1rem 0 1.5rem; font-size: 0.925rem; line-height: 1.7; }
.footer-logo .logo-text strong { color: var(--white); }
.footer-logo .logo-text small { color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }
.site-footer h4 { color: var(--white); margin-bottom: 1.25rem; font-family: var(--font); font-size: 1rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.925rem; opacity: 0.8; }
.footer-links a:hover { opacity: 1; color: var(--white); }
.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.925rem;
    align-items: flex-start;
}
.footer-contact svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--primary-light); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* Animations – visible by default; JS enhances */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js .reveal:not(.visible) {
    opacity: 0;
    transform: translateY(24px);
}

html.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-card { max-width: 420px; }
    .services-grid, .services-grid-compact { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .split-grid, .service-detail, .contact-grid, .quote-layout, .seo-intro-grid, .blog-single-grid { grid-template-columns: 1fr; }
    .service-detail.reverse { direction: ltr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .regions-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-h: 70px; }
    .main-nav { display: none; }
    .desktop-only { display: none !important; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero { min-height: auto; padding-bottom: 3rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .services-grid, .services-grid-compact, .testimonials-grid, .process-grid, .blog-grid, .trust-grid, .regions-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-features { flex-direction: column; gap: 0.75rem; }
}
