/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (Humanarum Agencia - Sage Green Palette)
   ========================================================================== */

:root {
    /* Color Palette derived from corporate logo colors */
    --color-primary: #1f241a;        /* Deep Charcoal Sage */
    --color-primary-rgb: 31, 36, 26;
    --color-secondary: #3e4438;      /* Deep Slate Sage */
    --color-accent: #7e9d65;         /* Corporate Sage Green (Dominant) */
    --color-accent-hover: #698453;
    --color-accent-teal: #9bb28b;    /* Lighter accent Sage */
    
    --color-text-dark: #1f241a;
    --color-text-light: #f4f6f2;
    --color-text-muted: #5c6455;
    --color-text-muted-light: #a4ac9d;
    
    --color-bg-light: #f4f6f2;       /* Light Sage Background */
    --color-bg-white: #ffffff;
    --color-bg-dark: #141711;        /* Dark Charcoal Sage for Hero/Footer */
    
    /* Semantic Colors */
    --color-error: #ef4444;          /* Red */
    --color-success: #10b981;        /* Green */
    --color-whatsapp: #25d366;       /* WhatsApp Green */
    
    /* Brand Social Colors */
    --color-linkedin: #0a66c2;
    --color-instagram: #e1306c;
    
    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #7e9d65 0%, #9cb989 100%);
    --gradient-hero: linear-gradient(135deg, #141711 0%, #293022 50%, #0f120d 100%);
    --gradient-card-hover: linear-gradient(135deg, rgba(126, 157, 101, 0.05) 0%, rgba(156, 185, 137, 0.05) 100%);
    
    /* Shadows & Glassmorphism */
    --shadow-sm: 0 2px 8px -2px rgba(31, 36, 26, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(31, 36, 26, 0.08), 0 8px 16px -6px rgba(31, 36, 26, 0.05);
    --shadow-lg: 0 20px 40px -15px rgba(31, 36, 26, 0.15);
    --shadow-accent: 0 10px 20px -10px rgba(126, 157, 101, 0.4);
    
    --glass-bg: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 36, 26, 0.06);
    
    /* Typography */
    --font-headings: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing & Borders */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
}

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

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

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f4f6f2;
}
::-webkit-scrollbar-thumb {
    background: #cbd2c5;
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: #a4ac9d;
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUT
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
}

/* Section Header Styles */
.section-header {
    margin-bottom: 3.5rem;
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    font-family: var(--font-headings);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(126, 157, 101, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: #ffffff;
    box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
}

.btn-mail {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-mail:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVIGATION (Logo Made Larger!)
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(244, 246, 242, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(31, 36, 26, 0.05);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 125px; /* Refined header height */
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 90px; /* Compacted scrolled height */
}

.logo-link {
    display: flex;
    align-items: center;
    margin-left: -20px; /* Adjusted negative margin to prevent overlap */
    margin-right: -10px; /* Reduced negative margin */
}

.logo-img {
    height: 75px; /* Made base height smaller to fit layout comfortably */
    width: auto;
    object-fit: contain;
    transform: scale(1.55); /* Balanced scale to bypass transparent space without overlapping */
    transform-origin: left center;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    height: 55px; /* Proportionally compacted on scroll */
    transform: scale(1.35); /* Elegant scale-down on scroll */
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-smooth);
    border-radius: var(--radius-full);
}

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

.nav-link.active {
    color: var(--color-accent);
    font-weight: 600;
}

.nav-btn {
    background: var(--gradient-accent);
    color: #ffffff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-accent);
}

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

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(126, 157, 101, 0.5);
}

/* Special Highlighted Nav Links (Orientació Laboral & Mediació) */
.nav-link-special {
    color: var(--color-accent) !important;
    background: rgba(122, 170, 107, 0.08);
    border: 1px solid rgba(122, 170, 107, 0.22);
    padding: 0.4rem 0.85rem !important;
    border-radius: var(--radius-md) !important;
    transition: var(--transition-smooth) !important;
    display: inline-flex;
    align-items: center;
    font-weight: 600 !important;
}

.nav-link-special:hover {
    background: rgba(122, 170, 107, 0.15) !important;
    border-color: rgba(122, 170, 107, 0.45) !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(122, 170, 107, 0.1);
}

.nav-link-special::after {
    display: none !important; /* Hide standard underline */
}

/* Hamburger Icon for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 110px;
    background: var(--gradient-hero);
    color: var(--color-text-light);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(126, 157, 101, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 10% 80%, rgba(156, 185, 137, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-tagline {
    display: inline-flex;
    padding: 0.4rem 1rem;
    background: rgba(126, 157, 101, 0.1);
    border: 1px solid rgba(126, 157, 101, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text-light);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-muted-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Hero Image Wrap */
.hero-visual {
    position: relative;
    z-index: 10;
}

.hero-visual .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 0.5rem);
    filter: brightness(0.9) contrast(1.03);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(20, 23, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    animation: float-badge 6s ease-in-out infinite;
}

.floating-badge h4 {
    color: var(--color-text-light);
    font-size: 1.25rem;
    font-weight: 800;
}

.floating-badge p {
    font-size: 0.75rem;
    color: var(--color-text-muted-light);
    white-space: nowrap;
}

.floating-badge i {
    color: var(--color-accent);
    width: 24px;
    height: 24px;
}

.badge-1 {
    top: 15%;
    left: -50px;
}

.badge-2 {
    bottom: 12%;
    right: -30px;
    animation-delay: 3s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ==========================================================================
   KEY PILLARS SECTION
   ========================================================================== */

.pillars-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-bg-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.pillar-card {
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card-hover);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(126, 157, 101, 0.25);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(126, 157, 101, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-accent);
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    background: var(--gradient-accent);
    color: #ffffff;
    transform: scale(1.05);
}

.pillar-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(31, 36, 26, 0.04);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(126, 157, 101, 0.18);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-content {
    padding: 2.25rem 2rem;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -24px;
    left: 2rem;
    box-shadow: 0 8px 16px rgba(126, 157, 101, 0.3);
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 0.925rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-accent);
    gap: 0.25rem;
    transition: var(--transition-smooth);
}

.service-link i {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-link {
    color: var(--color-accent-hover);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   PROCESS SECTION (Timeline)
   ========================================================================== */

.process-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    color: var(--color-text-light);
    position: relative;
}

.process-section .section-title {
    color: var(--color-text-light);
}

.process-section .section-subtitle {
    color: var(--color-text-muted-light);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 5rem auto 0;
    padding: 0 1rem;
}

/* Vertical line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent) 0%, rgba(164, 172, 157, 0.3) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 20px;
    top: 5px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.15rem;
    z-index: 10;
    box-shadow: 0 0 0 6px rgba(126, 157, 101, 0.15);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(126, 157, 101, 0.25);
}

.timeline-content {
    padding: 2.5rem 2.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-light);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(126, 157, 101, 0.3);
    transform: translateX(6px);
}

.timeline-content h3 {
    color: var(--color-text-light);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.timeline-meta {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted-light);
    line-height: 1.65;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */

.about-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.img-grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 480px;
}

.about-img-main {
    grid-column: 1 / 10;
    grid-row: 1 / 11;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-img-sub {
    grid-column: 5 / 13;
    grid-row: 5 / 13;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 6px solid var(--color-bg-light);
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-text.text-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.5;
}

.about-values {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1.25rem;
}

.value-number {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 800;
    color: rgba(126, 157, 101, 0.15);
    line-height: 1;
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

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

/* ==========================================================================
   PRE-CONTACT CTA
   ========================================================================== */

.pre-contact-cta {
    padding: 80px 0;
    background: var(--gradient-accent);
    color: #ffffff;
    text-align: center;
}

.pre-contact-cta h2 {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.pre-contact-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT FORM & GDPR SECTION
   ========================================================================== */

.contact-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.info-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    padding: 2.5rem 2rem;
    text-align: center;
    background: rgba(244, 246, 242, 0.6);
    border: 1px solid rgba(31, 36, 26, 0.05);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(126, 157, 101, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.info-card h3 {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.info-card p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
}

.info-card .sub-address {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-top: 0.25rem;
    line-height: 1.4;
}

.contact-link {
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--color-accent);
}

.whatsapp-link-text {
    font-size: 0.9rem;
    color: var(--color-success);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.whatsapp-link-text:hover {
    color: #10b981;
}

.inline-icon {
    width: 16px;
    height: 16px;
}

/* GDPR compliant Contact Form */
.contact-form-wrapper {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 3.5rem;
    border: 1px solid rgba(31, 36, 26, 0.08);
    box-shadow: 0 30px 60px -20px rgba(31, 36, 26, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.75rem;
    position: relative;
}

.form-group label {
    font-family: var(--font-headings);
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.form-group label .required {
    color: var(--color-error);
    margin-left: 2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    background-color: var(--color-bg-white);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(126, 157, 101, 0.1);
}

/* Custom Spanish Phone input with prefix */
.phone-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.phone-prefix-selector {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    background-color: #f8fafc;
    cursor: pointer;
    user-select: none;
    position: relative;
    min-width: 100px;
    height: 100%;
}

.phone-prefix-selector:hover {
    background-color: #f1f5f9;
}

.flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.prefix-number {
    font-size: 0.9rem;
    font-weight: 600;
}

.dropdown-chevron {
    width: 14px;
    height: 14px;
    color: var(--color-text-muted);
}

.prefix-dropdown-list {
    position: absolute;
    top: 105%;
    left: 0;
    width: 220px;
    background-color: var(--color-bg-white);
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    z-index: 100;
    display: none;
    overflow: hidden;
}

.prefix-dropdown-list.active {
    display: block;
}

.prefix-dropdown-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.prefix-dropdown-list li:hover {
    background-color: var(--color-bg-light);
    color: var(--color-accent);
}

.prefix-dropdown-list li img {
    width: 20px;
}

/* Form Validations Styling */
.form-group.invalid input,
.form-group.invalid textarea {
    border-color: var(--color-error);
    background-color: rgba(239, 68, 68, 0.01);
}

.form-group.invalid input:focus,
.form-group.invalid textarea:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-msg {
    color: var(--color-error);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.35rem;
    display: none;
}

.form-group.invalid .error-msg {
    display: block;
}

/* GDPR Box Style matches Spanish screenshot standards */
.rgpd-container {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 2.25rem;
    border-radius: var(--radius-md);
    background: #f1f6f1; /* Green tint */
    border: 1px solid rgba(126, 157, 101, 0.12);
}

.rgpd-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.rgpd-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.rgpd-checkbox-wrapper input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.rgpd-checkbox-wrapper label {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--color-text-muted);
    cursor: pointer;
}

.rgpd-checkbox-wrapper label strong {
    color: var(--color-primary);
}

.rgpd-checkbox-wrapper label em {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--color-text-muted-light);
}

.rgpd-checkbox-wrapper label a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 500;
}

.text-center-error {
    text-align: left;
    margin-left: 1.75rem;
    margin-bottom: 1.25rem;
}

.rgpd-divider {
    border: 0;
    height: 1px;
    background-color: rgba(126, 157, 101, 0.15);
    margin: 1.5rem 0;
}

.rgpd-info-block {
    font-size: 0.775rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.rgpd-info-block strong {
    color: var(--color-primary);
}

.rgpd-info-block a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Submit and Subtext */
.form-submit-container {
    text-align: center;
}

.btn-submit {
    background: var(--gradient-accent);
    color: #ffffff;
    border-radius: var(--radius-sm);
    padding: 1rem 3.5rem;
    width: auto;
    font-family: var(--font-headings);
    font-weight: 700;
    box-shadow: var(--shadow-accent);
    font-size: 1.05rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -6px rgba(126, 157, 101, 0.6);
}

.rgpd-footer-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

/* ==========================================================================
   RESERVA SECTION (EMBEDDED APP)
   ========================================================================== */

.reserva-section {
    padding: 100px 0;
    background-color: #fafbf9;
    border-bottom: 1px solid rgba(126, 157, 101, 0.08);
}

/* Booking CTA Card Styles */
.booking-cta-card {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(126, 157, 101, 0.15);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.booking-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(126, 157, 101, 0.12);
    border-color: rgba(126, 157, 101, 0.35);
}

.booking-cta-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.booking-cta-card:hover .booking-cta-icon-wrapper {
    transform: scale(1.1);
    background: var(--color-primary);
    color: #ffffff;
}

.booking-cta-icon-wrapper svg {
    width: 36px;
    height: 36px;
}

.booking-cta-card .section-title {
    margin-bottom: 0.75rem;
    font-size: 2rem;
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--color-secondary);
}

.booking-cta-card .section-subtitle {
    margin-bottom: 2.25rem;
    max-width: 620px;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.btn-large {
    padding: 15px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(126, 157, 101, 0.3);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Language Selector Navigation Styles */
.lang-selector-nav {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding-left: 0.5rem;
}

.lang-selector-nav .active-lang {
    color: var(--color-primary);
    cursor: default;
}

.lang-selector-nav .inactive-lang {
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.lang-selector-nav .inactive-lang:hover {
    color: var(--color-primary);
}

.lang-selector-nav .lang-separator {
    color: rgba(126, 157, 101, 0.2);
}

@media (max-width: 768px) {
    .reserva-section {
        padding: 60px 0;
    }
    .booking-cta-card {
        padding: 3rem 1.5rem;
    }
    .booking-cta-card .section-title {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.main-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 52px;
    width: auto;
    align-self: flex-start;
    margin-bottom: 1.5rem;
}

.brand-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted-light);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

/* Brand specific social buttons styling */
.social-btn-brand {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted-light);
    transition: var(--transition-smooth);
}

.brand-linkedin:hover {
    background-color: var(--color-linkedin);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4);
}

.brand-instagram:hover {
    background-color: var(--color-instagram);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.brand-social-svg {
    transition: var(--transition-smooth);
}

.footer-grid h3 {
    color: var(--color-text-light);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-grid ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-grid ul li {
    font-size: 0.925rem;
    color: var(--color-text-muted-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-grid ul li i {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.footer-grid ul li a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    font-size: 0.825rem;
    color: var(--color-text-muted-light);
}

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

/* ==========================================================================
   CHATBOT VIRTUAL ASSISTANT SYSTEM
   ========================================================================== */

.chatbot-wrapper {
    position: fixed;
    bottom: 30px; /* Positioned clean and native in the bottom-right corner */
    right: 30px;
    z-index: 998;
    font-family: var(--font-body);
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-accent);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-toggle:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 24px -6px rgba(126, 157, 101, 0.6);
}

.chat-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: var(--color-error);
    color: #ffffff;
    font-size: 0.725rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-bg-light);
}

.chatbot-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 360px;
    height: 480px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 1000;
    border: 1px solid rgba(31, 36, 26, 0.08);
    box-shadow: 0 15px 40px rgba(31, 36, 26, 0.12);
    background: #ffffff;
}

.chatbot-window.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.chatbot-header {
    padding: 1.25rem;
    background: var(--gradient-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.chatbot-avatar-container {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.chatbot-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chatbot-online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-success);
    border: 2px solid #ffffff;
}

.chatbot-header-text h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.chatbot-header-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Messages panel */
.chatbot-messages {
    flex-grow: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fcfdfb;
}

.chat-message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    line-height: 1.45;
    position: relative;
}

.bot-message {
    background-color: #eef2eb; /* Soft Sage light */
    color: var(--color-text-dark);
    align-self: flex-start;
    border-top-left-radius: 0;
}

.user-message {
    background-color: var(--color-accent);
    color: #ffffff;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.message-time {
    display: block;
    font-size: 0.675rem;
    color: var(--color-text-muted-light);
    margin-top: 0.35rem;
    text-align: right;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.7);
}

/* Suggestion Chips */
.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.suggestion-chip {
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(126, 157, 101, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--color-accent);
    background-color: #ffffff;
    transition: var(--transition-smooth);
    text-align: left;
    font-weight: 500;
}

.suggestion-chip:hover {
    background: var(--gradient-accent);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-1px);
}

/* Input Form Area */
.chatbot-input-area {
    display: flex;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border-top: 1px solid #eef2eb;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-input-area input {
    flex-grow: 1;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    background-color: #f4f6f2;
    border-radius: var(--radius-full);
    border: 1px solid #cbd2c5;
    outline: none;
    transition: var(--transition-smooth);
}

.chatbot-input-area input:focus {
    border-color: var(--color-accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(126, 157, 101, 0.1);
}

.chatbot-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.chatbot-send-btn:hover {
    background-color: var(--color-accent-hover);
    transform: scale(1.05);
}

/* Typing Bubbles animation */
.typing-bubble {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    padding: 0.5rem 0;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-text-muted-light);
    border-radius: 50%;
    animation: typing-dot-bounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ==========================================================================
   MODAL SYSTEMS (Success & Legal)
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 23, 17, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-card {
    max-width: 520px;
    width: 100%;
    padding: 3.5rem 2.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: var(--transition-smooth);
    background-color: #ffffff;
}

.modal-overlay.active .success-card {
    transform: translateY(0);
}

.success-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon-wrapper i {
    width: 40px;
    height: 40px;
}

.success-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.success-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Legal Modals */
.legal-card {
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    background-color: #ffffff;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .legal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--color-text-muted);
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--color-primary);
}

.legal-modal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #cbd2c5;
    padding-bottom: 0.75rem;
}

.legal-modal-content h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-modal-content p, 
.legal-modal-content ul {
    font-size: 0.925rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-modal-content ul {
    padding-left: 1.5rem;
    list-style: disc;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1024px) {
    .header-container {
        height: 110px;
    }
    
    .logo-link {
        margin-left: -15px; /* Cleaned up negative margins on mobile */
        margin-right: -5px;
    }
    
    .logo-img {
        height: 60px; /* Reduced mobile height */
        transform: scale(1.45); /* Proportionate mobile scale */
        transform-origin: left center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-img {
        height: 380px;
    }
    
    .badge-1 {
        left: 20px;
    }
    
    .badge-2 {
        right: 20px;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .img-grid-container {
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .info-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.85rem;
    }
    
    /* Header & Mobile Navigation */
    .hamburger {
        display: flex;
        z-index: 1100;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg-white);
        box-shadow: -10px 0 30px rgba(31, 36, 26, 0.1);
        z-index: 1050;
        transition: var(--transition-smooth);
        padding: 100px 2.5rem 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.125rem;
    }
    
    .nav-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Process timeline adjustments */
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-dot {
        left: 0;
        width: 36px;
        height: 36px;
        font-size: 1rem;
        box-shadow: 0 0 0 4px rgba(126, 157, 101, 0.15);
    }
    
    .timeline-content {
        padding: 1.75rem 1.5rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    .rgpd-container {
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .chatbot-wrapper {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        height: 420px;
        max-width: 340px;
    }
}
