/* ================================================
   First Care - Premium Domestic Worker Services
   Brand Colors Design
   ================================================ */

/* ================================================
   CSS Variables - Brand Color Palette
   ================================================ */
:root {
    /* Primary - Dark Blue */
    --primary: #003d77;
    --primary-dark: #002d59;
    --primary-light: #0056a8;
    --primary-glow: rgba(0, 61, 119, 0.3);

    /* Secondary - Dark Red/Maroon */
    --accent: #970101;
    --accent-dark: #750101;
    --accent-light: #b91c1c;
    --accent-glow: rgba(151, 1, 1, 0.3);

    /* Third - Green */
    --green: #185b35;
    --green-dark: #134a2b;
    --green-light: #22c55e;
    --green-glow: rgba(24, 91, 53, 0.3);

    /* Fourth/Neutral - Dark Gray */
    --dark: #3c3c3c;
    --dark-light: #4a4a4a;
    --dark-medium: #5a5a5a;
    --gray-600: #525252;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #003d77 0%, #0056a8 100%);
    --gradient-accent: linear-gradient(135deg, #970101 0%, #b91c1c 100%);
    --gradient-green: linear-gradient(135deg, #185b35 0%, #22c55e 100%);
    --gradient-dark: linear-gradient(180deg, #3c3c3c 0%, #2a2a2a 100%);
    --gradient-hero: linear-gradient(135deg, #003d77 0%, #002d59 50%, #001a33 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Typography */
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Sizing */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px var(--primary-glow);
    --shadow-glow-accent: 0 0 30px var(--accent-glow);

    /* Z-index */
    --z-header: 1000;
    --z-modal: 1100;
}

/* ================================================
   Reset & Base
   ================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
}

/* ================================================
   Global Background Effects
   ================================================ */

/* Animated Gradient Orbs - Global */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(at 40% 20%, rgba(0, 61, 119, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(24, 91, 53, 0.18) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(151, 1, 1, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(0, 61, 119, 0.18) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(24, 91, 53, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(151, 1, 1, 0.08) 0px, transparent 50%);
    /* Removed animation to match the static section effect, but kept it fixed for global coverage */
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-15px, 20px) scale(0.98);
    }

    75% {
        transform: translate(25px, 15px) scale(1.02);
    }
}

/* Floating Particles Layer */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 1.0;
    background-image:
        radial-gradient(2px 2px at 100px 150px, rgba(0, 61, 119, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 200px 300px, rgba(24, 91, 53, 0.7), transparent),
        radial-gradient(2px 2px at 300px 100px, rgba(0, 61, 119, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 400px 400px, rgba(151, 1, 1, 0.6), transparent),
        radial-gradient(2px 2px at 500px 200px, rgba(24, 91, 53, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 600px 350px, rgba(0, 61, 119, 0.7), transparent),
        radial-gradient(2px 2px at 700px 450px, rgba(24, 91, 53, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 800px 150px, rgba(151, 1, 1, 0.6), transparent);
    background-size: 800px 500px;
    animation: floatParticles 30s linear infinite;
}

@keyframes floatParticles {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-500px);
    }
}

/* Subtle Grid Pattern for Light Sections */
.bg-grid {
    position: relative;
}

.bg-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 61, 119, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 61, 119, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Glow Effect for Sections */
.bg-glow {
    position: relative;
    overflow: hidden;
}

.bg-glow::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 61, 119, 0.25) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

/* Mesh Gradient Background */
.bg-mesh {
    position: relative;
}

.bg-mesh::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 40% 20%, rgba(0, 61, 119, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(24, 91, 53, 0.18) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(151, 1, 1, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(0, 61, 119, 0.18) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(24, 91, 53, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(151, 1, 1, 0.08) 0px, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ================================================
   Utilities
   ================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================
   Premium Buttons
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

/* ================================================
   Top Bar
   ================================================ */
.top-bar {
    background: var(--dark);
    padding: var(--space-3) 0;
    font-size: var(--text-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: var(--space-8);
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-400);
}

.top-bar-link:hover {
    color: var(--primary);
}

.top-bar-link .icon {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--gray-400);
    font-size: var(--text-sm);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ================================================
   Header - Light Mode Style
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 44px;
    width: auto;
    transition: all 0.3s;
}

.header.scrolled .logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-close {
    display: none;
}

.nav-link {
    padding: var(--space-3) var(--space-5);
    color: var(--gray-600);
    font-weight: 500;
    font-size: var(--text-sm);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 50%;
}

.header.scrolled .nav-link {
    color: var(--gray-600);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary-dark);
}

.nav-cta {
    background: var(--gradient-accent);
    color: var(--white) !important;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-sm);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.nav-cta-container {
    margin-left: var(--space-3);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.header.scrolled .hamburger span {
    background: var(--dark);
}

/* ================================================
   Hero Slider Section
   ================================================ */
.hero-slider {
    position: relative;
    min-height: 100vh;
    background: transparent;
    padding-top: 100px;
    overflow: hidden;
}

/* Subtle background pattern */
.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 61, 119, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(24, 91, 53, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* Slides Container */
.hero-slides-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    min-height: 500px;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Slide Content Layout */
.hero-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    min-height: calc(100vh - 200px);
}

/* Text Content */
.hero-text {
    animation: slideInText 0.8s ease both;
}

.hero-slide.active .hero-text {
    animation: slideInText 0.8s ease both;
}

@keyframes slideInText {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-6);
    color: var(--dark);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-8);
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    animation: slideInImage 0.8s ease 0.2s both;
}

.hero-slide.active .hero-image {
    animation: slideInImage 0.8s ease 0.2s both;
}

@keyframes slideInImage {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    max-height: 80vh;
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-3);
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(0, 61, 119, 0.3);
}

.hero-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Hero Slider */
@media (max-width: 992px) {
    .hero-slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
        justify-content: center;
    }

    .hero-image img {
        max-height: 50vh;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        padding-top: 80px;
    }

    .hero-slides-container {
        height: auto;
        min-height: calc(100vh - 80px);
    }

    .hero-slide-content {
        min-height: auto;
        padding: var(--space-8) 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image img {
        max-height: 40vh;
    }

    .hero-dots {
        bottom: var(--space-6);
    }
}

/* ================================================
   Affiliations - Premium Glass Cards
   ================================================ */
.affiliations-section {
    background: var(--gradient-dark);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.affiliations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 30% 50%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, var(--accent-glow) 0%, transparent 50%);
    opacity: 0.3;
}

.affiliations-section .container {
    position: relative;
    z-index: 1;
}

.affiliations-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.affiliations-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.affiliations-title {
    font-size: var(--text-2xl);
    color: var(--white);
    font-weight: 700;
}

.affiliations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.affiliation-logo {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-8);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.affiliation-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity 0.3s;
}

.affiliation-logo:hover::before {
    opacity: 1;
}

.affiliation-logo:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.affiliation-logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.affiliation-logo:hover img {
    opacity: 1;
}

/* ================================================
   Trust Badges - Unique Hexagon Style
   ================================================ */
.trust-badges {
    background: transparent;
    padding: var(--space-20) 0;
    position: relative;
}

.trust-badges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-6);
}

.badge-item {
    background: var(--white);
    padding: var(--space-8) var(--space-6);
    border-radius: var(--radius-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.4s;
}

.badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.badge-item:hover::before {
    transform: scaleX(1);
}

.badge-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.badge-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 61, 119, 0.1) 0%, rgba(0, 61, 119, 0.05) 100%);
    border: 2px solid rgba(0, 61, 119, 0.2);
    border-radius: var(--radius-xl);
    margin: 0 auto var(--space-5);
    color: var(--primary);
    font-size: var(--text-xl);
    transition: all 0.4s;
}

.badge-item:hover .badge-icon {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.badge-item h3 {
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--dark);
}

.badge-item p {
    font-size: var(--text-xs);
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

/* ================================================
   What We Offer - Services Section
   ================================================ */
.services-section-wrapper {
    background: transparent;
    padding: var(--space-24) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-card {
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
}

.service-card-inner {
    padding: var(--space-6);
    position: relative;
    z-index: 1;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
    transition: background-color 0.4s ease;
}

/* Color variations on hover */
.service-card[data-color="primary"]:hover::before,
.service-card[data-color="primary"].active::before {
    background-color: var(--primary);
}

.service-card[data-color="green"]:hover::before,
.service-card[data-color="green"].active::before {
    background-color: var(--green);
}

.service-card[data-color="gold"]:hover::before,
.service-card[data-color="gold"].active::before {
    background-color: #c9a227;
}

.service-card[data-color="accent"]:hover::before,
.service-card[data-color="accent"].active::before {
    background-color: var(--accent);
}

.service-card:hover,
.service-card.active {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 61, 119, 0.1) 0%, rgba(0, 61, 119, 0.05) 100%);
    border: 2px solid rgba(0, 61, 119, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    color: var(--primary);
    font-size: var(--text-xl);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.service-title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-2);
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: var(--white);
}

.service-tag {
    display: inline-block;
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-bottom: var(--space-4);
    font-weight: 500;
    transition: color 0.3s;
}

.service-card:hover .service-tag {
    color: rgba(255, 255, 255, 0.8);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: var(--text-sm);
    color: var(--gray-600);
    padding: var(--space-2) 0;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: color 0.3s;
    line-height: 1.4;
}

.service-list li i {
    font-size: var(--text-xs);
    color: var(--primary);
    width: 16px;
    text-align: center;
    transition: color 0.3s;
}

.service-card:hover .service-list li,
.service-card:hover .service-list li i {
    color: var(--white);
}

/* First card active by default */
.service-card:first-child {
    background-color: var(--primary);
}

.service-card:first-child::before {
    background-color: var(--primary);
}

.service-card:first-child .service-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.service-card:first-child .service-title,
.service-card:first-child .service-list li,
.service-card:first-child .service-list li i {
    color: var(--white);
}

.service-card:first-child .service-tag {
    color: rgba(255, 255, 255, 0.8);
}

/* ================================================
   Section Styles
   ================================================ */
section {
    padding: var(--space-24) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-16);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 61, 119, 0.15) 0%, rgba(24, 91, 53, 0.15) 100%);
    border: 1px solid rgba(0, 61, 119, 0.3);
    color: var(--primary);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 800;
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-500);
    line-height: 1.7;
}

/* ================================================
   Scroll Animation System
   ================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale3d(0.98, 0.98, 1);
    transform-style: preserve-3d;
    will-change: opacity, transform;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ================================================
   Process Timeline Section
   ================================================ */
.process-timeline-section {
    width: 100%;
    background: transparent;
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* Background Plasma Effects */
.timeline-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.timeline-plasma {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
    mix-blend-mode: screen;
}

.timeline-plasma-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: plasma-pulse 8s ease-in-out infinite;
}

.timeline-plasma-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -150px;
    left: -80px;
    animation: plasma-pulse 10s ease-in-out infinite reverse;
}

@keyframes plasma-pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 10;
}

/* Timeline Header */
.timeline-header {
    text-align: center;
    margin-bottom: var(--space-20);
}

.timeline-header h2 {
    font-size: clamp(var(--text-2xl), 5vw, 3.5rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: var(--space-4);
    letter-spacing: -1px;
}

.timeline-header h2 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-header p {
    font-size: var(--text-base);
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Horizontal Timeline */
.horizontal-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: var(--space-16) 0;
}

/* The main horizontal line */
.horizontal-timeline::before {
    content: '';
    position: absolute;
    top: 112px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: var(--gray-300);
    z-index: -1;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 22%;
    position: relative;
}

.step-number-large {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gray-400);
    line-height: 1;
    margin-bottom: var(--space-6);
    transition: color 0.4s ease;
}

.node-container {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.timeline-node {
    width: 16px;
    height: 16px;
    background: var(--gray-300);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gray-300);
    transition: all 0.4s ease;
}

.step-title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
}

.step-description {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Hover & Active States */
.timeline-item:hover .step-number-large {
    color: var(--primary);
}

.timeline-item:hover .timeline-node {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(0, 61, 119, 0.3);
}

.timeline-item:hover .step-title {
    color: var(--primary);
}

/* ================================================
   Packages Section - Premium Cards
   ================================================ */
.packages-section {
    background: transparent;
    padding: var(--space-24) 0;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-8);
}

/* Promo Card - Yellow/Gold */
.promo-card {
    background: linear-gradient(135deg, #f2c700 0%, #e6b800 100%);
    color: var(--primary);
    border-radius: var(--radius-2xl);
    max-width: 330px;
    width: 100%;
    padding: var(--space-8) var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    text-align: left;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 10px 40px rgba(242, 199, 0, 0.3);
    transition: transform 0.4s, box-shadow 0.4s;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(242, 199, 0, 0.4);
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-card h3 {
    font-size: var(--text-xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    color: var(--primary);
}

.promo-card p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-5);
    line-height: 1.7;
    color: var(--primary);
}

.promo-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: var(--text-2xl);
    transition: transform 0.3s;
    margin-top: var(--space-2);
}

.promo-card:hover .promo-arrow {
    transform: translateX(5px);
}

.promo-maid-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-height: 280px;
    width: auto;
    z-index: 1;
}

/* Package Cards */
.package-card {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    max-width: 330px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s, box-shadow 0.4s;
    color: var(--white);
    min-height: 500px;
}

.package-card:hover {
    transform: translateY(-8px);
}

.package-green {
    background: var(--green);
    box-shadow: 0 10px 40px rgba(24, 91, 53, 0.3);
}

.package-green:hover {
    box-shadow: 0 20px 50px rgba(24, 91, 53, 0.4);
}

.package-red {
    background: var(--accent);
    box-shadow: 0 10px 40px rgba(151, 1, 1, 0.3);
}

.package-red:hover {
    box-shadow: 0 20px 50px rgba(151, 1, 1, 0.4);
}

.package-header {
    padding: var(--space-6) var(--space-6) var(--space-4);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.package-header h3 {
    margin: 0;
    font-size: var(--text-lg);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.05em;
}

.package-header p {
    font-size: var(--text-xs);
    letter-spacing: 0.03em;
    margin-top: var(--space-2);
    color: rgba(255, 255, 255, 0.8);
}

.package-body {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.package-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: var(--space-2);
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
    font-weight: 500;
    color: var(--white);
}

.package-price .currency {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.package-price .amount {
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1;
}

.package-price .period {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
    text-align: left;
    font-size: var(--text-sm);
}

.package-features li {
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--white);
}

.package-features li i {
    color: rgba(255, 255, 255, 0.85);
    min-width: 20px;
    text-align: center;
}

.package-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.pkg-btn {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    transition: all 0.3s;
}

.pkg-btn i {
    font-size: var(--text-base);
}

.pkg-btn-email:hover {
    background: var(--dark);
    color: var(--white);
}

.pkg-btn-whatsapp:hover {
    background: #25d366;
    color: var(--white);
}

/* ================================================
   Values Section
   ================================================ */
.values-section {
    background: transparent;
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, var(--accent-glow) 0%, transparent 50%);
    opacity: 0.4;
}

.values-section .container {
    position: relative;
    z-index: 1;
}

.values-section .section-badge {
    background: linear-gradient(135deg, rgba(0, 61, 119, 0.15) 0%, rgba(24, 91, 53, 0.15) 100%);
    border-color: rgba(0, 61, 119, 0.3);
    color: var(--primary);
}

.values-section .section-title {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-section .section-subtitle {
    color: var(--gray-500);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8) var(--space-5);
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    margin: 0 auto var(--space-5);
    color: var(--white);
    font-size: var(--text-xl);
    transition: all 0.4s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: var(--text-base);
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.value-card p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ================================================
   Reviews Wall Section
   ================================================ */
.reviews-section {
    background-color: transparent;
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.reviews-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.4;
    background-image: radial-gradient(var(--gray-300) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
}

.reviews-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 61, 119, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

.reviews-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-5);
    position: relative;
    z-index: 5;
}

/* Reviews Header */
.reviews-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16) auto;
}

.rating-summary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
    background: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.review-stars {
    color: #F1C40F;
    letter-spacing: 2px;
}

.rating-text {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--dark);
}

.reviews-title {
    font-size: clamp(var(--text-2xl), 4vw, 2.75rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 var(--space-4) 0;
    line-height: 1.2;
}

.highlight-text {
    color: var(--primary);
}

.reviews-desc {
    font-size: var(--text-lg);
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Wall Wrapper */
.wall-wrapper {
    display: flex;
    gap: var(--space-6);
    height: 600px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

/* Column Setup */
.wall-col {
    flex: 1;
    position: relative;
}

.col-track {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    animation: scroll-up 60s linear infinite;
    padding-bottom: var(--space-6);
}

/* Offset Animation Speeds */
.col-1 .col-track {
    animation-duration: 55s;
}

.col-2 .col-track {
    animation-duration: 65s;
    animation-direction: reverse;
}

.col-3 .col-track {
    animation-duration: 50s;
}

/* Hover Pause */
.wall-wrapper:hover .col-track {
    animation-play-state: paused;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 1s linear infinite;
}

/* Review Card */
.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.review-card:hover {
    transform: scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 61, 119, 0.1);
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Category Badges */
.cat-badge {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
}

.cat-maid {
    background: rgba(0, 61, 119, 0.1);
    color: var(--primary);
}

.cat-visa {
    background: rgba(24, 91, 53, 0.1);
    color: var(--green);
}

.cat-hourly {
    background: rgba(151, 1, 1, 0.1);
    color: var(--accent);
}

.cat-nanny {
    background: rgba(139, 69, 179, 0.1);
    color: #7B1FA2;
}

.cat-service {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.cat-cook {
    background: rgba(230, 81, 0, 0.1);
    color: #E65100;
}

.cat-elderly {
    background: rgba(0, 105, 92, 0.1);
    color: #00695C;
}

/* Card Content */
.review-card p {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--gray-500);
    margin: 0;
}

.review-card p strong {
    color: var(--dark);
    font-weight: 600;
}

.review-author {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-1);
}

.verified {
    color: var(--primary);
    font-size: var(--text-base);
}

/* Responsive */
@media (max-width: 900px) {
    .wall-wrapper {
        gap: var(--space-4);
    }

    .col-3 {
        display: none;
    }
}

@media (max-width: 576px) {
    .reviews-section {
        padding: var(--space-16) 0;
    }

    .reviews-title {
        font-size: var(--text-2xl);
    }

    .wall-wrapper {
        flex-direction: row;
        height: auto;
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
        padding-bottom: var(--space-5);
        scroll-snap-type: x mandatory;
    }

    .col-track {
        flex-direction: row;
        animation: none;
        width: max-content;
        gap: var(--space-4);
    }

    .review-card {
        width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .wall-col {
        display: flex;
    }

    .col-2,
    .col-3 {
        display: none;
    }

    .col-1 {
        width: 100%;
        overflow-x: scroll;
    }
}

/* ================================================
   FAQ Section
   ================================================ */
.faq-section {
    background: transparent;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    background: transparent;
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-question .icon {
    color: var(--primary);
    font-size: var(--text-lg);
    transition: transform 0.3s;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

/* ================================================
   Contact Section
   ================================================ */
.contact-section {
    background: transparent;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.contact-item {
    display: flex;
    gap: var(--space-5);
    margin-bottom: var(--space-8);
}

.contact-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: var(--white);
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.contact-text p,
.contact-text a {
    color: var(--gray-500);
    font-size: var(--text-base);
}

.contact-text a:hover {
    color: var(--primary-dark);
}

.contact-social {
    margin-top: var(--space-8);
}

.contact-social h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    color: var(--gray-600);
    font-size: var(--text-lg);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-3xl);
    padding: var(--space-10);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* ================================================
   Footer
   ================================================ */
.footer {
    background: var(--gradient-dark);
    color: var(--gray-400);
    padding: var(--space-16) 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-10);
    padding-bottom: var(--space-10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: block;
    margin-bottom: var(--space-5);
}

.footer-logo-img {
    height: 100px;
    width: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.footer-links ul li {
    margin-bottom: var(--space-3);
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-links ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-links ul li a:hover::before {
    width: 15px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
}

.footer-contact ul li .icon {
    color: var(--primary);
    margin-top: 3px;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: var(--space-6) 0;
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ================================================
   Floating Elements
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: var(--z-header);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .icon {
    font-size: var(--text-xl);
}

.back-to-top {
    position: fixed;
    bottom: var(--space-6);
    left: var(--space-6);
    z-index: var(--z-header);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ================================================
   Responsive
   ================================================ */
@media (max-width: 1200px) {
    .badges-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-10) var(--space-6);
        gap: var(--space-6);
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 2000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-close {
        display: flex;
        position: absolute;
        top: 30px;
        right: 30px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s;
    }

    .nav-close:hover {
        background: var(--primary);
        border-color: var(--primary);
        transform: rotate(90deg);
    }

    .nav-link {
        padding: var(--space-2) 0;
        border-bottom: none;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.5rem;
        font-weight: 600;
        width: auto;
        display: inline-block;
        text-align: center;
        transition: all 0.3s;
        transform: translateY(20px);
        opacity: 0;
    }

    .nav-menu.active .nav-link {
        transform: translateY(0);
        opacity: 1;
    }

    /* Staggered animation for links */
    .nav-menu.active li:nth-child(2) .nav-link {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(3) .nav-link {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(4) .nav-link {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(5) .nav-link {
        transition-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(6) .nav-link {
        transition-delay: 0.5s;
    }

    .nav-link.active,
    .nav-link:hover {
        color: var(--white);
        transform: scale(1.1) !important;
    }

    .nav-cta-container {
        margin: var(--space-6) 0 0;
        width: 100%;
        display: flex;
        justify-content: center;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.5s 0.6s;
    }

    .nav-menu.active .nav-cta-container {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-cta {
        width: auto;
        min-width: 200px;
        padding: var(--space-4) var(--space-8);
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin: 0 auto var(--space-10);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-images {
        display: none;
    }

    /* Timeline responsive - tablet */
    .horizontal-timeline {
        padding: var(--space-10) 0;
    }

    .step-number-large {
        font-size: 3rem;
    }

    .step-title {
        font-size: var(--text-sm);
    }

    .step-description {
        font-size: var(--text-xs);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        margin: 0 auto;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Timeline responsive - mobile vertical */
    .timeline-header {
        margin-bottom: var(--space-10);
    }

    .timeline-header h2 {
        font-size: var(--text-2xl);
    }

    .horizontal-timeline {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }

    .horizontal-timeline::before {
        left: 24px;
        top: 5%;
        width: 2px;
        height: 90%;
    }

    .timeline-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        margin-bottom: var(--space-8);
    }

    .step-number-large {
        order: 2;
        font-size: var(--text-xl);
        margin: 0;
        width: 50px;
    }

    .node-container {
        order: 1;
        width: 50px;
        height: auto;
        margin: 0;
    }

    .timeline-content {
        order: 3;
        flex: 1;
    }

    .step-title {
        margin-bottom: var(--space-1);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .affiliations-logos {
        gap: var(--space-4);
    }

    .affiliation-logo {
        padding: var(--space-4);
    }

    .affiliation-logo img {
        height: 35px;
    }

    .whatsapp-float span {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

@media (max-width: 576px) {
    section {
        padding: var(--space-12) 0;
    }

    .badges-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-6);
    }

    /* Fixed Timeline on Mobile */
    .horizontal-timeline::before {
        left: 20px;
    }

    .timeline-item {
        margin-bottom: var(--space-8);
        padding-left: 0;
    }

    .node-container {
        width: 40px;
    }

    .step-number-large {
        width: 40px;
        font-size: 2.5rem;
    }

    .packages-grid {
        flex-direction: column;
        align-items: center;
    }

    .promo-card,
    .package-card {
        max-width: 100%;
        min-height: auto;
    }

    .promo-card {
        text-align: center;
        min-height: 400px;
    }

    .promo-content {
        text-align: center;
    }

    .package-buttons {
        flex-direction: column;
        gap: var(--space-2);
    }

    .pkg-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-logo-img {
        height: 60px;
        /* Reduced specific for mobile */
    }

    .footer-content {
        text-align: left;
        /* Better readability on mobile than center */
    }

    .footer-social {
        justify-content: flex-start;
    }
}