/* ========================================
   SM ÉLAGAGE - Premium Green Stylesheet
   ======================================== */

:root {
    /* Primary Green Palette */
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --green-950: #052e16;
    
    /* Accent - Forest/Emerald */
    --emerald: #059669;
    --emerald-light: #34d399;
    --emerald-dark: #047857;
    
    /* Neutrals */
    --black: #0a0a0a;
    --gray-900: #171717;
    --gray-800: #262626;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #737373;
    --gray-400: #a3a3a3;
    --gray-300: #d4d4d4;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-green: linear-gradient(135deg, var(--green-500) 0%, var(--emerald) 100%);
    --gradient-dark: linear-gradient(135deg, var(--green-950) 0%, var(--gray-900) 100%);
    --gradient-light: linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
    
    /* Typography */
    --font-heading: 'Fraunces', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 7rem;
    --container-width: 1280px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 8px 10px rgba(0,0,0,0.04);
    --shadow-green: 0 10px 40px rgba(34, 197, 94, 0.3);
    --shadow-green-lg: 0 20px 50px rgba(34, 197, 94, 0.4);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== CURSOR TRAIL ========== */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--gradient-green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.3s, transform 0.3s;
}

/* ========== LOADER ========== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--gradient-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-leaf {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--green-400);
    animation: leafFloat 2s ease-in-out infinite;
}

.loader-leaf svg {
    width: 100%;
    height: 100%;
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-green);
    border-radius: 3px;
    animation: loading 1.5s ease-out forwards;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-slow);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

header.scrolled .logo-icon {
    color: var(--green-600);
}

header.scrolled .logo-text {
    color: var(--gray-900);
}

header.scrolled nav a {
    color: var(--gray-700);
}

header.scrolled .phone-link {
    color: var(--gray-700);
}

header.scrolled .mobile-toggle span {
    background: var(--gray-900);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--green-400);
    transition: var(--transition-base);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    transition: var(--transition-base);
}

.logo-text strong {
    font-weight: 700;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-400);
    transition: var(--transition-base);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.phone-link i {
    width: 18px;
    height: 18px;
}

.phone-link:hover {
    color: var(--green-400);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--gradient-dark);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-base);
}

.mobile-nav a:hover {
    color: var(--green-400);
    padding-left: 1rem;
}

.mobile-menu-footer {
    padding-top: 2rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn i {
    width: 18px;
    height: 18px;
    transition: var(--transition-base);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green-lg);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.btn-white {
    background: var(--white);
    color: var(--green-700);
}

.btn-white:hover {
    background: var(--green-50);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--green-600);
    border: 2px solid var(--green-600);
}

.btn-outline:hover {
    background: var(--green-600);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--green-700);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920') center/cover no-repeat;
    transform: scale(1.1);
    animation: heroZoom 25s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,46,22,0.92) 0%, rgba(20,83,45,0.85) 50%, rgba(5,46,22,0.9) 100%);
}

.hero-leaves {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0c0 10-10 20-10 30s10 20 10 30c0-10 10-20 10-30S30 10 30 0z' fill='%2322c55e' fill-opacity='0.03'/%3E%3C/svg%3E");
    animation: leavesMove 30s linear infinite;
}

@keyframes leavesMove {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 8rem 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-full);
    color: var(--green-300);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.2s; }
.hero-line:nth-child(3) { animation-delay: 0.6s; }

.hero-highlight {
    display: block;
    color: var(--green-400);
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.trust-item i {
    width: 18px;
    height: 18px;
    color: var(--green-400);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInRight 1s ease 0.5s forwards;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-base);
}

.hero-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.hero-card-alt {
    margin-left: 3rem;
}

.hero-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero-card-icon i {
    width: 28px;
    height: 28px;
}

.hero-card-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero-card-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--green-400);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== SECTION STYLES ========== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-tag i {
    width: 18px;
    height: 18px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.section-header-light .section-tag {
    color: var(--green-300);
}

.section-header-light h2 {
    color: var(--white);
}

.section-header-light p {
    color: rgba(255,255,255,0.7);
}

/* ========== SERVICES ========== */
.services {
    padding: var(--section-padding) 0;
    background: var(--gradient-light);
}

.services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-main {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 120px;
}

.service-main-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-main:hover .service-main-image img {
    transform: scale(1.05);
}

.service-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
}

.service-main-content {
    padding: 2rem;
}

.service-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.service-main h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-main p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.service-features i {
    width: 20px;
    height: 20px;
    color: var(--green-500);
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-green);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    margin-bottom: 1.25rem;
    transition: var(--transition-base);
}

.service-card-icon i {
    width: 24px;
    height: 24px;
}

.service-card:hover .service-card-icon {
    background: var(--gradient-green);
    color: var(--white);
}

.service-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--green-600);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link i {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.service-link:hover {
    color: var(--green-700);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ========== PROCESS ========== */
.process {
    padding: var(--section-padding) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green-500), transparent);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(34, 197, 94, 0.2);
    margin-bottom: 1.5rem;
}

.step-content {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    transition: var(--transition-base);
}

.process-step:hover .step-content {
    background: rgba(255,255,255,0.1);
    border-color: var(--green-500);
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white);
}

.step-icon i {
    width: 28px;
    height: 28px;
}

.step-content h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== ABOUT ========== */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-image-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--gradient-green);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-green);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-tag {
    justify-content: flex-start;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
}

.about-intro {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    flex-shrink: 0;
}

.feature-icon i {
    width: 22px;
    height: 22px;
}

.feature-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--green-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
}

.testimonial-quote {
    margin-bottom: 1.5rem;
}

.testimonial-quote i {
    width: 40px;
    height: 40px;
    color: var(--green-400);
}

.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-featured blockquote {
    font-size: 1.15rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info {
    flex: 1;
}

.author-info strong {
    display: block;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    width: 16px;
    height: 16px;
    color: #fbbf24;
    fill: #fbbf24;
}

/* ========== FAQ ========== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-content .section-tag {
    justify-content: flex-start;
}

.faq-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.faq-content > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.faq-item.active {
    background: var(--white);
    border-color: var(--green-200);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--green-600);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ========== CTA ========== */
.cta {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-green);
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0c0 10-10 20-10 30s10 20 10 30c0-10 10-20 10-30S30 10 30 0z' fill='%23fff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.cta-icon i {
    width: 40px;
    height: 40px;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info .section-tag {
    justify-content: flex-start;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

a.contact-card {
    cursor: pointer;
}

a.contact-card:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
}

a.contact-card:hover .contact-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    flex-shrink: 0;
}

.contact-card-icon i {
    width: 22px;
    height: 22px;
}

.contact-card-content {
    flex: 1;
}

.contact-card-content strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.125rem;
}

.contact-card-content span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.contact-card-arrow {
    width: 18px;
    height: 18px;
    color: var(--green-600);
    opacity: 0;
    transform: translate(-5px, 5px);
    transition: var(--transition-base);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.form-header-badge i {
    width: 14px;
    height: 14px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-500);
}

.contact-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.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-400);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.form-notice i {
    width: 14px;
    height: 14px;
    color: var(--green-500);
}

/* ========== FOOTER ========== */
footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-99%);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-wave path {
    fill: var(--green-950);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    color: var(--green-400);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-social a i {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    background: var(--green-500);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--green-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--green-400);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-contact-item a:hover {
    color: var(--green-400);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--green-400);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 99;
    box-shadow: var(--shadow-green);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green-lg);
}

.back-to-top i {
    width: 24px;
    height: 24px;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    z-index: 99;
}

.whatsapp-float i {
    width: 22px;
    height: 22px;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ========== ANIMATIONS ========== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ========== SERVICES GRID FULL ========== */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.services-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-full {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card-full:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card-full:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4) 100%);
}

.service-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body .service-card-icon {
    width: 45px;
    height: 45px;
    background: var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    margin-bottom: 1rem;
    transition: var(--transition-base);
}

.service-card-body .service-card-icon i {
    width: 22px;
    height: 22px;
}

.service-card-full:hover .service-card-body .service-card-icon {
    background: var(--gradient-green);
    color: var(--white);
}

.service-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.service-card-body p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.service-card-body .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--green-600);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: auto;
}

.service-card-body .service-link i {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.service-card-full:hover .service-link i {
    transform: translateX(4px);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========== NAV DROPDOWN ========== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown-trigger i {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--gray-700);
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.nav-dropdown-menu a:hover {
    background: var(--green-50);
    color: var(--green-700);
}

.nav-dropdown-menu a::after {
    display: none;
}

/* ========== ZONE D'INTERVENTION ========== */
.zone {
    padding: var(--section-padding) 0;
    background: var(--green-50);
}

.zone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.zone-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 2px solid var(--gray-100);
    transition: var(--transition-base);
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.zone-card-primary {
    border-color: var(--green-300);
    background: linear-gradient(135deg, var(--white) 0%, var(--green-50) 100%);
}

.zone-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.zone-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-500);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.zone-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.zone-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.zone-cities {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zone-cities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.zone-cities i {
    width: 16px;
    height: 16px;
    color: var(--green-500);
}

.zone-cta {
    text-align: center;
}

.zone-cta p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* ========== WHATSAPP BUTTON STYLE ========== */
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da851;
}

.contact-card-whatsapp .contact-card-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

/* ========== ABOUT BADGE ICON ========== */
.about-badge .badge-icon {
    display: block;
    margin-bottom: 0.25rem;
}

.about-badge .badge-icon i {
    width: 28px;
    height: 28px;
}

/* ========== FOOTER CREDIT ========== */
.footer-credit {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-credit a {
    color: var(--green-400);
}

.footer-credit a:hover {
    color: var(--green-300);
}

/* ========== SERVICE PAGES ========== */
.header-service {
    background: rgba(5, 46, 22, 0.95);
}

.header-service .logo-icon {
    color: var(--green-400);
}

.header-service .logo-text {
    color: var(--white);
}

.header-service nav a {
    color: rgba(255,255,255,0.9);
}

.header-service .phone-link {
    color: var(--white);
}

.header-service .mobile-toggle span {
    background: var(--white);
}

/* Hero Service */
.hero-service {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-service-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-service-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,46,22,0.92) 0%, rgba(20,83,45,0.85) 100%);
}

.hero-service .container {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--green-400);
}

.breadcrumb span {
    color: var(--green-400);
}

.breadcrumb i {
    width: 14px;
    height: 14px;
    color: rgba(255,255,255,0.5);
}

.hero-service-content {
    max-width: 800px;
}

.hero-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-full);
    color: var(--green-300);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-service-badge i {
    width: 16px;
    height: 16px;
}

.hero-service h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-service-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.hero-service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Service Intro */
.service-intro {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-intro-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1.5rem;
}

.service-intro-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
}

.highlight-item i {
    width: 20px;
    height: 20px;
    color: var(--green-500);
}

.service-intro-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.service-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Service Prestations */
.service-prestations {
    padding: var(--section-padding) 0;
    background: var(--green-50);
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.prestation-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.prestation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}

.prestation-icon {
    width: 60px;
    height: 60px;
    background: var(--green-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--green-600);
    transition: var(--transition-base);
}

.prestation-icon i {
    width: 28px;
    height: 28px;
}

.prestation-card:hover .prestation-icon {
    background: var(--gradient-green);
    color: var(--white);
}

.prestation-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.prestation-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Service Types */
.service-types {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
}

.type-item:hover {
    background: var(--green-50);
}

.type-item i {
    width: 32px;
    height: 32px;
    color: var(--green-600);
}

.type-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.types-grid-large {
    grid-template-columns: repeat(3, 1fr);
}

.type-item-large {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
}

.type-item-large:hover {
    background: var(--green-50);
    transform: translateY(-3px);
}

.type-item-large .type-icon {
    width: 60px;
    height: 60px;
    background: var(--green-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--green-600);
}

.type-item-large .type-icon i {
    width: 28px;
    height: 28px;
}

.type-item-large h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.type-item-large p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Service Process */
.service-process {
    padding: var(--section-padding) 0;
    background: var(--gradient-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.process-step-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-base);
}

.process-step-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--green-500);
}

.process-step-card .step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.process-step-card .step-number i {
    width: 24px;
    height: 24px;
}

.process-step-card h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-step-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Service Zone */
.service-zone {
    padding: var(--section-padding) 0;
    background: var(--green-50);
}

.zone-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.zone-dept {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.zone-dept h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.zone-dept .zone-number {
    display: inline-block;
    background: var(--gradient-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    margin-right: 0.5rem;
}

.zone-dept p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Service Why */
.service-why {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.why-card:hover {
    background: var(--green-50);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    flex-shrink: 0;
}

.why-icon i {
    width: 24px;
    height: 24px;
}

.why-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.why-card p {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* Service Clients */
.service-clients {
    padding: var(--section-padding) 0;
    background: var(--green-50);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.client-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
}

.client-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.client-icon i {
    width: 32px;
    height: 32px;
}

.client-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.client-card ul {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.client-card li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.client-card li:last-child {
    border-bottom: none;
}

/* Service FAQ */
.service-faq {
    padding: var(--section-padding) 0;
    background: var(--white);
}

/* Service CTA */
.service-cta {
    padding: 5rem 0;
    background: var(--gradient-green);
    text-align: center;
}

.service-cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.service-cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.service-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Calendar */
.service-calendar {
    padding: var(--section-padding) 0;
    background: var(--gradient-dark);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.calendar-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.calendar-season {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-400);
    margin-bottom: 0.5rem;
}

.calendar-months {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.calendar-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Form Error */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
}

.form-error-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fef2f2;
    color: #dc2626;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.form-error-message i {
    width: 18px;
    height: 18px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .services-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .service-main {
        position: static;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonial-featured {
        grid-row: span 1;
    }

    .zone-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zone-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 5rem;
    }
    
    nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-cta .btn {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }

    .services-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-images {
        order: -1;
    }
    
    .about-content .section-tag {
        justify-content: center;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-features {
        max-width: 400px;
        margin: 0 auto 2.5rem;
    }

    .zone-grid {
        grid-template-columns: 1fr;
    }

    .zone-card:last-child {
        grid-column: span 1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-content {
        text-align: center;
    }
    
    .faq-content .section-tag {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info .section-tag {
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .hero-container {
        padding: 7rem 1.5rem 4rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .services-grid-full {
        grid-template-columns: 1fr;
    }

    .services-grid-6 {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .about-image-secondary {
        width: 150px;
        right: 0;
        bottom: -20px;
    }
    
    .about-badge {
        left: 0;
        top: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .zone-grid {
        grid-template-columns: 1fr;
    }

    .zone-card:last-child {
        grid-column: span 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 1rem;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .service-main-content {
        padding: 1.5rem;
    }

    .hero-service h1 {
        font-size: 1.75rem;
    }

    .prestations-grid {
        grid-template-columns: 1fr;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .calendar-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional responsive for service pages */
@media (max-width: 1200px) {
    .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .types-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .types-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-intro-image {
        order: -1;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .zone-content {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-service {
        min-height: 50vh;
    }

    .hero-service-cta {
        flex-direction: column;
    }

    .prestations-grid {
        grid-template-columns: 1fr;
    }

    .types-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        flex-direction: column;
        text-align: center;
    }

    .service-cta-buttons {
        flex-direction: column;
    }

    .types-grid-large {
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        flex-wrap: wrap;
    }
}

/* ========== CONTACT PAGE ========== */
.hero-contact {
    min-height: 45vh;
}

.contact-page {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-full {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-full .form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.contact-form-full .form-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.contact-form-full .form-header p {
    color: var(--gray-600);
}

.radio-group {
    display: flex;
    gap: 1.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--gradient-green);
    border-radius: 50%;
    transform: scale(0);
    transition: var(--transition-base);
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--green-500);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    transform: scale(1);
}

.form-checkbox {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
    margin-top: 2px;
}

.checkbox-custom::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg) scale(0);
    transition: var(--transition-base);
    margin-top: -2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--gradient-green);
    border-color: var(--green-500);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: rotate(-45deg) scale(1);
}

.checkbox-label a {
    color: var(--green-600);
    text-decoration: underline;
}

.contact-info-full {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

a.contact-info-item:hover {
    background: var(--gray-50);
}

.contact-info-item.contact-info-whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    flex-shrink: 0;
}

.contact-info-icon i {
    width: 20px;
    height: 20px;
}

.contact-info-whatsapp .contact-info-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-info-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.contact-info-content span {
    font-size: 0.95rem;
    color: var(--gray-800);
}

.contact-reasons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-reasons li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.contact-reasons i {
    width: 18px;
    height: 18px;
    color: var(--green-500);
}

.contact-zones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-zone {
    text-align: center;
}

.contact-zone .zone-badge {
    display: inline-block;
    background: var(--gradient-green);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.contact-zone strong {
    display: block;
    font-size: 0.85rem;
}

.contact-zone p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.contact-reassurance .reassurance-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.reassurance-item {
    text-align: center;
}

.reassurance-item i {
    width: 28px;
    height: 28px;
    color: var(--green-500);
    margin-bottom: 0.25rem;
}

.reassurance-item span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
}

.contact-map {
    background: var(--gray-200);
}

.contact-map iframe {
    display: block;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
    padding: 120px 0 var(--section-padding);
    background: var(--gray-50);
    min-height: 100vh;
}

.legal-page .breadcrumb {
    margin-bottom: 2rem;
}

.legal-page .breadcrumb a {
    color: var(--gray-500);
}

.legal-page .breadcrumb a:hover {
    color: var(--green-600);
}

.legal-page .breadcrumb span {
    color: var(--gray-900);
}

.legal-page .breadcrumb i {
    color: var(--gray-400);
}

.legal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    max-width: 900px;
}

.legal-content h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--green-800);
}

.legal-section p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 0;
}

.legal-section li {
    color: var(--gray-700);
    line-height: 1.8;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.legal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
}

.legal-section a {
    color: var(--green-600);
}

.legal-section a:hover {
    text-decoration: underline;
}

/* ========== 404 PAGE ========== */
.page-404 {
    background: var(--gradient-dark);
    min-height: 100vh;
}

.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.error-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.error-tree {
    width: 400px;
    height: 500px;
    opacity: 0.15;
}

.error-leaves {
    position: absolute;
    inset: 0;
}

.leaf {
    position: absolute;
    color: var(--green-500);
    opacity: 0.2;
    animation: leafFall 15s linear infinite;
}

.leaf i {
    width: 30px;
    height: 30px;
}

.leaf-1 { left: 10%; animation-delay: 0s; }
.leaf-2 { left: 30%; animation-delay: 3s; }
.leaf-3 { left: 50%; animation-delay: 6s; }
.leaf-4 { left: 70%; animation-delay: 9s; }
.leaf-5 { left: 90%; animation-delay: 12s; }

@keyframes leafFall {
    0% {
        top: -50px;
        transform: rotate(0deg) translateX(0);
    }
    100% {
        top: 100%;
        transform: rotate(360deg) translateX(100px);
    }
}

.error-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
}

.error-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.error-code span {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 700;
    color: var(--white);
    opacity: 0.2;
    line-height: 1;
}

.error-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.error-icon i {
    width: 50px;
    height: 50px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.error-content h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.error-content > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-links {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.error-links h3 {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.error-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.error-links-grid a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.error-links-grid a:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--green-500);
    color: var(--white);
}

.error-links-grid a i {
    width: 18px;
    height: 18px;
    color: var(--green-400);
}

.error-footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.error-footer .logo {
    margin-bottom: 0.5rem;
    justify-content: center;
}

.error-footer .logo-icon {
    width: 30px;
    height: 30px;
    color: var(--green-400);
}

.error-footer .logo-text {
    font-size: 1rem;
}

.error-footer p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.cookie-text a {
    color: var(--green-600);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
}

.btn-cookie-reject {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-cookie-reject:hover {
    background: var(--gray-200);
}

/* Responsive Contact & Legal */
@media (max-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-full {
        order: -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-card:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-form-full {
        padding: 1.5rem;
    }

    .contact-info-full {
        grid-template-columns: 1fr;
    }

    .contact-info-card:first-child {
        grid-column: span 1;
    }

    .contact-zones {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-reassurance .reassurance-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .error-links-grid {
        grid-template-columns: 1fr;
    }

    .error-footer {
        position: relative;
        bottom: auto;
        transform: none;
        margin-top: 3rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
}

/* ========== BLOG STYLES ========== */
.hero-blog {
    min-height: 45vh;
}

.blog-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.blog-card-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--gradient-green);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.blog-card-meta i {
    width: 14px;
    height: 14px;
}

.blog-card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-content h2 a {
    color: var(--gray-900);
}

.blog-card-content h2 a:hover {
    color: var(--green-600);
}

.blog-card-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green-600);
    font-weight: 600;
}

.blog-card-link i {
    width: 18px;
    height: 18px;
    transition: var(--transition-base);
}

.blog-card-link:hover i {
    transform: translateX(4px);
}

/* Article Page */
.article-hero {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-top: 80px;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.article-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,46,22,0.5) 0%, rgba(5,46,22,0.95) 100%);
}

.article-hero .container {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
}

.article-hero .breadcrumb {
    margin-bottom: 2rem;
}

.article-header {
    max-width: 800px;
}

.article-category {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--gradient-green);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.article-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.article-meta i {
    width: 16px;
    height: 16px;
    color: var(--green-400);
}

/* Article Content */
.article-content {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.article-main {
    max-width: 750px;
}

.article-intro {
    font-size: 1.2rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.article-main h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.article-main h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.article-main p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.article-main ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.article-main li {
    color: var(--gray-700);
    line-height: 1.8;
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.article-main li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
}

.article-callout {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff7ed;
    border-left: 4px solid #f97316;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.article-callout-success {
    background: var(--green-50);
    border-left-color: var(--green-500);
}

.callout-icon {
    flex-shrink: 0;
}

.callout-icon i {
    width: 24px;
    height: 24px;
    color: #f97316;
}

.article-callout-success .callout-icon i {
    color: var(--green-600);
}

.callout-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.callout-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.article-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
}

.article-table th,
.article-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.article-table th {
    background: var(--green-50);
    font-weight: 600;
    color: var(--gray-900);
}

.article-table td {
    color: var(--gray-700);
}

.article-cta-box {
    background: var(--green-50);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.article-cta-box h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.article-cta-box p {
    margin-bottom: 1.5rem;
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.sidebar-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-toc {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-toc li {
    padding-left: 0;
}

.sidebar-toc li::before {
    display: none;
}

.sidebar-toc a {
    color: var(--gray-600);
    font-size: 0.9rem;
    display: block;
    padding: 0.375rem 0;
    transition: var(--transition-base);
}

.sidebar-toc a:hover {
    color: var(--green-600);
    padding-left: 0.5rem;
}

.sidebar-cta {
    background: var(--gradient-dark);
    text-align: center;
}

.sidebar-cta h4 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.1);
}

.sidebar-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--green-400);
    font-weight: 600;
    margin-top: 1rem;
}

.sidebar-phone i {
    width: 18px;
    height: 18px;
}

.sidebar-related {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-related li {
    padding-left: 0;
}

.sidebar-related li::before {
    display: none;
}

.sidebar-related a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-related img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.sidebar-related span {
    font-size: 0.9rem;
    color: var(--gray-700);
    flex: 1;
}

.sidebar-related a:hover span {
    color: var(--green-600);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .article-sidebar .sidebar-cta {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .blog-card-content h2 {
        font-size: 1.25rem;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .article-sidebar .sidebar-cta {
        grid-column: span 1;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}



