/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS (Premium Wellness & Tech Palette)
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #0dadb9;
    --primary-hover: #0a8e98;
    --primary-glow: rgba(13, 173, 185, 0.15);
    --primary-gradient: linear-gradient(135deg, #0dadb9 0%, #0ea5e9 100%);
    --primary-gradient-hover: linear-gradient(135deg, #0a8e98 0%, #0284c7 100%);
    
    --dark-navy: #0f172a;
    --dark-navy-rgb: 15, 23, 42;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --slate-100: #f1f5f9;
    
    --bg-white: #ffffff;
    --bg-soft: #f8fafc;
    --bg-accent: #f0fdfa;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --header-height-scrolled: 70px;
    
    /* Shadows (Layered Premium Vercel/Linear style) */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.03), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --shadow-glow: 0 0 40px -10px rgba(13, 173, 185, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    --border-light: 1px solid rgba(241, 245, 249, 0.8);
    --border-glass: 1px solid rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   RESET & SYSTEM BASICS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-600);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    position: relative;
    padding: clamp(4rem, 8vw, 8rem) 0;
    z-index: 1;
    overflow: hidden;
}

.bg-soft {
    background-color: var(--bg-soft);
}

.bg-accent {
    background-color: var(--bg-accent);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* ==========================================================================
   TYPOGRAPHY SYSTEM
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-navy);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.section-header {
    max-width: 680px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.section-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--slate-600);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(13, 173, 185, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 173, 185, 0.4), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--slate-100);
    color: var(--dark-navy);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

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

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
    background-color: var(--bg-white);
    color: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-light {
    background-color: var(--bg-white);
    color: var(--dark-navy);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-nav-cta {
    padding: 10px 22px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full-width {
    width: 100%;
    padding: 16px;
}

/* ==========================================================================
   HEADER (Premium Blur Effect)
   ========================================================================== */
.header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: var(--container-width);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
    transition: all var(--transition-medium);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(13, 173, 185, 0.05);
    top: 12px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: height var(--transition-medium);
    padding: 0 24px;
}

.header.scrolled .header-container {
    height: 60px;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: height var(--transition-medium);
}

.header.scrolled .logo-img {
    height: 32px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: clamp(1rem, 2vw, 2.5rem);
}

.nav-item {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--slate-600);
    position: relative;
    padding: 8px 0;
}

.nav-item:hover {
    color: var(--dark-navy);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
}

.nav-item:hover::after,
.nav-item.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1100;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--dark-navy);
    border-radius: 2px;
    transition: all var(--transition-medium);
}

/* ==========================================================================
   HERO SECTION (Advanced Biomechanics Wave Canvas)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    background-color: var(--bg-soft);
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background-color: rgba(255, 255, 255, 0.8);
    border: var(--border-light);
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.badge-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-600);
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.35rem);
    color: var(--slate-600);
    margin-bottom: 40px;
    max-width: 680px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-floating-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.floating-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background-color: rgba(255, 255, 255, 0.6);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.floating-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--primary-glow) 0 8px 24px;
}

.badge-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--dark-navy);
}

.badge-desc {
    font-size: 0.8125rem;
    color: var(--slate-600);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--slate-400);
    border-radius: 13px;
    display: block;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 18px;
        opacity: 0.3;
    }
    100% {
        top: 8px;
        opacity: 1;
    }
}

/* ==========================================================================
   TRUST SECTION / STATS
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    background-color: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    z-index: 2;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--bg-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.stat-number {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--slate-600);
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.stat-description {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--slate-400);
}

/* ==========================================================================
   SERVICIOS MASONRY GALLERY (Clean overlays, Priority focus)
   ========================================================================== */
.services-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.bento-card-horizontal {
    display: flex;
    flex-direction: row;
    background-color: var(--dark-navy);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
    cursor: pointer;
    min-height: 240px;
}

.bento-card-horizontal:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(13, 173, 185, 0.4);
}

.bento-horizontal-img-wrapper {
    width: 38%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.bento-horizontal-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(15, 23, 42, 0) 50%,
        rgba(15, 23, 42, 0.9) 100%
    );
    z-index: 2;
    transition: background var(--transition-medium);
}

.bento-card-horizontal:hover .bento-horizontal-img-wrapper::after {
    background: linear-gradient(
        to right,
        rgba(15, 23, 42, 0) 50%,
        rgba(15, 23, 42, 0.7) 80%,
        rgba(13, 173, 185, 0.25) 100%
    );
}

.bento-horizontal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.bento-card-horizontal:hover .bento-horizontal-img-wrapper img {
    transform: scale(1.08);
}

.bento-horizontal-text {
    width: 62%;
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}

.card-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 8px;
}

.bento-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.bento-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

/* ==========================================================================
   WHY CHOOSE US / METHODOLOGY
   ========================================================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-us-info {
    padding-right: 24px;
}

.methodology-card {
    display: flex;
    gap: 24px;
    margin-top: 36px;
}

.m-card-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.m-card-title {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.m-card-desc {
    font-size: 0.9375rem;
    color: var(--slate-600);
}

/* Biomechanical Interactive Composition */
.why-us-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 380px;
    height: 380px;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-medium);
}

.main-circle {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(13, 173, 185, 0.2);
    color: var(--primary);
    z-index: 5;
}

.main-circle span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--dark-navy);
    margin-top: 8px;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: ring-pulse 3s infinite linear;
    pointer-events: none;
}

@keyframes ring-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.visual-node {
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: var(--bg-white);
    border: var(--border-light);
    box-shadow: var(--shadow-md);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--slate-600);
    z-index: 4;
    transition: all var(--transition-medium);
}

.visual-node svg {
    color: var(--primary);
    margin-bottom: 6px;
}

.node-label {
    font-family: var(--font-heading);
    font-weight: 600;
}

.node-1 {
    top: 10%;
    left: 10%;
}

.node-2 {
    top: 25%;
    right: 5%;
}

.node-3 {
    bottom: 10%;
    left: 45%;
}

.visual-node:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--primary-glow) 0 8px 20px;
    border-color: rgba(13, 173, 185, 0.4);
}

.visual-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ==========================================================================
   PROCESO DE ATENCIÓN (Roadmap Timeline)
   ========================================================================== */
.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    z-index: 2;
}

.roadmap-progress-bar {
    position: absolute;
    left: 31px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: rgba(226, 232, 240, 0.8);
    z-index: 1;
}

.roadmap-progress-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--primary-gradient);
    transition: height var(--transition-slow);
}

.roadmap-step {
    position: relative;
    display: flex;
    gap: 36px;
    margin-bottom: 48px;
    z-index: 2;
}

.roadmap-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 2px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-400);
}

.step-content {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 28px 36px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: var(--border-glass);
    flex-grow: 1;
    transition: all var(--transition-medium);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.step-desc {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* Active Step Styling */
.roadmap-step.active .step-marker {
    border-color: var(--primary);
    background: var(--primary-gradient);
    box-shadow: var(--primary-glow) 0 0 16px 4px;
}

.roadmap-step.active .step-num {
    color: var(--bg-white);
}

.roadmap-step.active .step-content {
    border-color: rgba(13, 173, 185, 0.2);
    box-shadow: var(--shadow-md), rgba(13, 173, 185, 0.02) 0 8px 30px;
    background-color: var(--bg-white);
}

.roadmap-step.active .step-title {
    color: var(--primary);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #f59e0b; /* Amber 500 */
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.testimonial-quote {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-600);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-accent);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.author-name {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--dark-navy);
    display: block;
    margin-bottom: 4px;
}

.author-meta {
    font-size: 0.8125rem;
    color: var(--slate-400);
    display: block;
}

/* ==========================================================================
   INTERMEDIATE CTA BANNER
   ========================================================================== */
.cta-banner-section {
    position: relative;
    background-color: var(--dark-navy);
    color: var(--bg-white);
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    margin: 0 24px;
    padding: clamp(3rem, 6vw, 6rem) 0;
    z-index: 2;
}

.cta-backdrop-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 173, 185, 0.18) 0%, rgba(239, 68, 68, 0.08) 45%, rgba(15, 23, 42, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.cta-title {
    color: var(--bg-white);
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 20px;
}

.cta-desc {
    color: var(--slate-400);
    font-size: clamp(1rem, 2.2vw, 1.1875rem);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.whatsapp-btn-icon {
    margin-right: 8px;
}

/* ==========================================================================
   FAQ SECTION (Modern Accordion)
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-details {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    border: var(--border-glass);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-medium);
    overflow: hidden;
}

.faq-details[open] {
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
}

.faq-summary {
    list-style: none;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--dark-navy);
    user-select: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-icon-toggle {
    color: var(--slate-400);
    transition: transform var(--transition-medium);
}

.faq-details[open] .faq-icon-toggle {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-content {
    padding: 0 32px 28px;
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.faq-content p {
    margin-top: 0;
}

/* ==========================================================================
   CONTACT SECTION (Premium Floating Input Labels)
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.contact-method-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.c-method-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: var(--border-light);
}

.c-method-label {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
    font-weight: 600;
    margin-bottom: 4px;
}

.c-method-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--dark-navy);
}

.c-method-value:hover {
    color: var(--primary);
}

.c-method-value-static {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--slate-600);
}

.address-link {
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Form Styles */
.contact-form-panel {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: var(--border-glass);
    padding: 48px;
}

.form-panel-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.form-panel-desc {
    font-size: 0.9375rem;
    color: var(--slate-400);
    margin-bottom: 36px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--bg-soft);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-sm);
    font-size: 0.9375rem;
    color: var(--dark-navy);
    transition: all var(--transition-fast);
}

.form-control:focus {
    background-color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9375rem;
    color: var(--slate-400);
    pointer-events: none;
    transition: all var(--transition-fast);
    transform-origin: left top;
}

.text-area {
    resize: none;
}

.form-group .text-area ~ .form-label {
    top: 24px;
}

/* Label floating behavior using sibling selector */
.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    background-color: var(--bg-white);
    padding: 0 8px;
    left: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* Error States */
.form-group.invalid .form-control {
    border-color: #ef4444;
}

.form-group.invalid .form-control:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.form-error-msg {
    position: absolute;
    bottom: -18px;
    left: 12px;
    font-size: 0.75rem;
    color: #ef4444;
    font-weight: 500;
    display: none;
}

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

/* Button Loading State */
#btn-submit-form {
    position: relative;
    overflow: hidden;
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--bg-white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
    animation: spinner 0.8s linear infinite;
}

#btn-submit-form.loading .btn-text {
    opacity: 0;
}

#btn-submit-form.loading .btn-loader {
    opacity: 1;
}

@keyframes spinner {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-alert {
    padding: 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-alert.success {
    background-color: #f0fdf4;
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #166534;
}

.form-alert.error {
    background-color: #fef2f2;
    border: 1px solid rgba(248, 113, 113, 0.4);
    color: #991b1b;
}

/* ==========================================================================
   FOOTER PREMIUM
   ========================================================================== */
.footer {
    background-color: var(--bg-soft);
    border-top: var(--border-light);
    padding-top: clamp(3rem, 6vw, 5rem);
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.footer-brand-desc {
    font-size: 0.875rem;
    color: var(--slate-600);
    margin-top: 20px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: var(--border-light);
    color: var(--slate-600);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark-navy);
    margin-bottom: 24px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--slate-600);
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Map Style */
.footer-map-container {
    width: 100%;
    height: 160px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: var(--border-light);
    box-shadow: var(--shadow-sm);
}

.footer-map-link {
    display: block;
    width: 100%;
    height: 100%;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(13, 173, 185, 0.05) 0%, rgba(226, 232, 240, 0.4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--slate-600);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color var(--transition-fast);
}

.footer-map-link:hover .map-placeholder {
    background-color: rgba(13, 173, 185, 0.1);
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    font-size: 0.8125rem;
    color: var(--slate-400);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Premium design)
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.wa-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.wa-icon-container img {
    display: block;
    width: 28px;
    height: 28px;
}


.whatsapp-floating:hover .wa-icon-container {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
    background-color: var(--dark-navy);
    color: var(--bg-white);
    padding: 10px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-right: 16px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    pointer-events: none;
}

.whatsapp-floating:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ==========================================================================
   SCROLL REVEAL & ENTRANCE ANIMATIONS
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Entry delays for hero items */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-up-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.fade-in-up-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.fade-in-up-delay-3 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   ANIMATED SVG BACKGROUNDS (Relaxing Atmosphere)
   ========================================================================== */
.svg-bg {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.65;
    mix-blend-mode: multiply;
    filter: blur(60px);
    transition: opacity var(--transition-slow);
}
.svg-bg svg {
    width: 100%;
    height: 100%;
}

/* Aurora Background Effects */
.hero-aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
    mix-blend-mode: multiply;
    transition: all var(--transition-slow);
}

.aurora-1 {
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle, rgba(13, 173, 185, 0.25) 0%, rgba(13, 173, 185, 0) 70%);
    top: -20%;
    right: -10%;
    animation: aurora-float-1 32s ease-in-out infinite alternate;
}

.aurora-2 {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, rgba(14, 165, 233, 0) 70%);
    bottom: -15%;
    left: -10%;
    animation: aurora-float-2 26s ease-in-out infinite alternate-reverse;
}

.aurora-3 {
    width: 48vw;
    height: 48vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0) 70%);
    top: 15%;
    left: 10%;
    animation: aurora-float-3 30s ease-in-out infinite alternate;
}

.aurora-4 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.18) 0%, rgba(20, 184, 166, 0) 70%);
    bottom: 5%;
    right: 15%;
    animation: aurora-float-4 38s ease-in-out infinite alternate-reverse;
}

/* Animations for organic morphing aurora */
@keyframes aurora-float-1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(-8%, 12%) scale(1.1) rotate(120deg);
    }
    100% {
        transform: translate(6%, -8%) scale(0.92) rotate(240deg);
    }
}

@keyframes aurora-float-2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(12%, -8%) scale(0.88) rotate(-180deg);
    }
    100% {
        transform: translate(-4%, 10%) scale(1.08) rotate(-360deg);
    }
}

@keyframes aurora-float-3 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-6%, -10%) scale(1.15);
    }
    100% {
        transform: translate(10%, 6%) scale(0.9);
    }
}

@keyframes aurora-float-4 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(-12%, -4%) scale(1.05) rotate(90deg);
    }
    100% {
        transform: translate(8%, 12%) scale(0.98) rotate(180deg);
    }
}
.svg-bg-services-left {
    top: 15%;
    left: -15%;
    width: 45vw;
    height: 45vw;
    max-width: 600px;
    animation: morph-slow 30s ease-in-out infinite alternate;
}
.svg-bg-services-right {
    bottom: 10%;
    right: -15%;
    width: 50vw;
    height: 50vw;
    max-width: 700px;
    animation: float-slow 28s ease-in-out infinite alternate-reverse;
}
.svg-bg-whyus {
    top: 25%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    animation: morph-slow 24s ease-in-out infinite alternate;
}
.svg-bg-process {
    bottom: 5%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    max-width: 600px;
    animation: float-slow 32s ease-in-out infinite alternate;
}
.svg-bg-contact {
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    max-width: 700px;
    animation: morph-slow 26s ease-in-out infinite alternate-reverse;
}

/* Animations for relaxing morph/float */
@keyframes float-slow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(4%, -6%) rotate(90deg) scale(1.08);
    }
    100% {
        transform: translate(-2%, 4%) rotate(180deg) scale(0.95);
    }
}

@keyframes morph-slow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-3%, 5%) rotate(-120deg) scale(1.05);
    }
    100% {
        transform: translate(5%, -3%) rotate(-240deg) scale(0.92);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (Breakpoints & Layout Adaptations)
   ========================================================================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .bento-card-horizontal {
        min-height: 220px;
    }
    
    .bento-horizontal-img-wrapper {
        width: 32%;
    }
    
    .bento-horizontal-text {
        width: 68%;
        padding: 28px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-us-info {
        padding-right: 0;
    }
    
    .why-us-visual {
        order: -1;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .header {
        top: 12px;
        width: calc(100% - 24px);
    }
    
    .header.scrolled {
        top: 8px;
    }
    
    .header-container {
        height: 60px;
        padding: 0 16px;
    }
    
    .header.scrolled .header-container {
        height: 54px;
    }
    
    /* Navigation drawer for mobile */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 1050;
        padding: 100px 40px 40px;
        flex-direction: column;
        justify-content: flex-start;
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.08);
        border-left: 1px solid rgba(255, 255, 255, 0.4);
        transform: translate3d(100%, 0, 0);
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transition: transform var(--transition-medium);
    }
    
    .nav-menu.open {
        transform: translate3d(0, 0, 0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-item {
        font-size: 1.125rem;
    }
    
    /* Hamburger bar state when menu is open */
    .mobile-nav-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Overlay background */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(15, 23, 42, 0.15);
        backdrop-filter: blur(4px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .btn-nav-cta {
        display: none;
    }
    
    /* Hero changes */
    .hero {
        padding-top: calc(var(--header-height) + 20px);
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-floating-badges {
        justify-content: center;
    }
    
    .bento-card-horizontal {
        flex-direction: column;
        min-height: auto;
    }
    
    .bento-horizontal-img-wrapper {
        width: 100%;
        height: 220px;
    }
    
    .bento-horizontal-img-wrapper::after {
        background: linear-gradient(
            to top,
            rgba(15, 23, 42, 0.9) 0%,
            rgba(15, 23, 42, 0) 50%
        );
    }
    
    .bento-card-horizontal:hover .bento-horizontal-img-wrapper::after {
        background: linear-gradient(
            to top,
            rgba(15, 23, 42, 0.9) 0%,
            rgba(13, 173, 185, 0.25) 50%
        );
    }
    
    .bento-horizontal-text {
        width: 100%;
        padding: 24px;
    }
    
    .bento-horizontal-text .bento-title {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-panel {
        padding: 32px 24px;
    }
    
    .roadmap-timeline {
        padding-left: 20px;
    }
    
    .roadmap-progress-bar {
        left: 21px;
    }
    
    .roadmap-step {
        gap: 20px;
    }
    
    .step-marker {
        width: 44px;
        height: 44px;
    }
    
    .step-num {
        font-size: 1rem;
    }
    
    .step-content {
        padding: 20px;
    }
}

@media (max-width: 580px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bento-card-horizontal {
        /* Mobile specific card overrides */
    }
    
    .bento-horizontal-img-wrapper {
        height: 180px;
    }
    
    .bento-horizontal-text {
        padding: 20px;
    }
    
    .visual-container {
        transform: scale(0.78);
        transform-origin: center center;
        margin: -35px auto;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cta-banner-section {
        margin: 0 16px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .whatsapp-floating {
        bottom: 24px;
        right: 24px;
    }
    
    .wa-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .wa-icon-container img {
        width: 22px;
        height: 22px;
    }
}

/* ==========================================================================
   SVG BACKGROUND TEXTURES (High visibility & Premium)
   ========================================================================== */
.svg-texture-dots {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='3' cy='3' r='1.2' fill='%230dadb9' fill-opacity='0.09'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.svg-texture-waves {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M0 40 Q 20 35, 40 40 T 80 40' fill='none' stroke='%230dadb9' stroke-opacity='0.055' stroke-width='1.5'/%3E%3Cpath d='M0 20 Q 20 25, 40 20 T 80 20' fill='none' stroke='%230ea5e9' stroke-opacity='0.045' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    background-repeat: repeat;
}
