/* Ensure all elements are visible immediately - no animations */
* {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fix for smooth scrolling with fixed header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

section {
    scroll-margin-top: 100px;
}

/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

/* CSS Variables */
:root {
    /* Enhanced Color Palette - Modern Medical Theme */
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #dbeafe;
    --primary-accent: #3b82f6;
    
    /* Medical/Health Colors */
    --medical-green: #10b981;
    --medical-blue: #0369a1;
    --accent-teal: #0891b2;
    --accent-emerald: #059669;
    
    /* Sophisticated Neutrals */
    --white: #ffffff;
    --cream: #fefcf8;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-accent: var(--primary-color);
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: var(--cream);
    --bg-section: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.8);
    --bg-gradient: linear-gradient(135deg, #1e3a8a 0%, #0369a1 100%);
    --bg-gradient-light: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    
    /* Spacing */
    --container-max-width: 1200px;
    --container-padding: 2rem;
    --section-padding: 5rem 0;
    --section-padding-mobile: 3.5rem 0;
    
    /* Typography */
    --font-primary: 'Assistant', 'Segoe UI', -apple-system, system-ui, sans-serif;
    --font-secondary: 'Heebo', 'Inter', -apple-system, system-ui, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Enhanced Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
    --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.15), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
    --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
html {
    font-family: var(--font-primary);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-section) 100%);
    color: var(--text-primary);
    width: 100%;
    min-width: 320px;
    position: relative;
    font-weight: var(--font-weight-normal);
    letter-spacing: -0.01em;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

h1 {
    font-weight: 800;
    line-height: 1.05;
}

h2 {
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
}

h3 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
}

p {
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: var(--font-weight-normal);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
    background: var(--bg-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--bg-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
}

.section-header {
    margin-bottom: 4rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 24px -1px rgba(15, 23, 42, 0.04);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.nav-logo h2 {
    font-size: 1.75rem;
    background: var(--bg-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
    cursor: pointer;
    z-index: 1001;
    display: inline-block;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-fast);
}

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

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.whatsapp-btn:hover {
    background: #1ea952;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(219, 234, 254, 0.3) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('img.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Fallback gradient if image doesn't load */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(219, 234, 254, 0.2) 100%);
    background-image: 
        radial-gradient(circle at 85% 25%, rgba(30, 58, 138, 0.08) 0%, transparent 65%),
        radial-gradient(circle at 15% 75%, rgba(8, 145, 178, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 75% 85%, rgba(4, 120, 87, 0.04) 0%, transparent 55%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        135deg, 
        rgba(254, 252, 248, 0.9) 0%, 
        rgba(248, 250, 252, 0.8) 30%, 
        rgba(255, 255, 255, 0.6) 60%, 
        rgba(255, 255, 255, 0.2) 85%,
        transparent 100%
    );
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    max-width: 650px;
    flex: 1;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* Remove any unwanted underlines from hero title */
.hero-title::after {
    display: none;
}

.title-line {
    display: block;
}

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

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.4) 0%, rgba(8, 145, 178, 0.4) 100%);
    border-radius: 3px;
    z-index: -1;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.8vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: var(--font-weight-normal);
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
    opacity: 1;
    visibility: visible;
    color: var(--text-primary);
}


.feature-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 1);
}

.feature-item i {
    font-size: 1.25rem;
    color: #059669;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25d366 0%, #20b358 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    background: linear-gradient(135deg, #1ea952 0%, #16a34a 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
    z-index: -1;
}

.cta-secondary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.cta-secondary:hover::before {
    transform: scaleX(1);
}

/* Hero decorative elements */
.hero-text {
    position: relative;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(44, 123, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.hero-text::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(6, 214, 160, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(50%) translateY(0);
    }
    40% {
        transform: translateX(50%) translateY(-10px);
    }
    60% {
        transform: translateX(50%) translateY(-5px);
    }
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--bg-section);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(8, 145, 178, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(30, 58, 138, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.main-service {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid var(--primary-color);
    position: relative;
}

.main-service::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--bg-gradient);
    border-radius: var(--border-radius-xl);
    z-index: -1;
    opacity: 0.1;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--bg-gradient);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-xl);
}

.service-icon i {
    font-size: 2.25rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-benefits {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.service-benefits i {
    color: var(--medical-green);
    font-size: 1.1rem;
}

/* Process Section */
.process {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 90% 10%, rgba(8, 145, 178, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 10% 90%, rgba(30, 58, 138, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--bg-gradient);
    transform: translateX(50%);
    border-radius: 2px;
    box-shadow: 0 0 0 8px rgba(30, 58, 138, 0.05);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 2rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 2rem;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: var(--bg-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255, 255, 255, 0.9);
    transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
}

.timeline-content {
    flex: 1;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(30, 58, 138, 0.15);
}

.timeline-item:hover .timeline-content::before {
    opacity: 1;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-duration {
    display: inline-block;
    background: var(--bg-gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    box-shadow: var(--shadow);
    letter-spacing: 0.01em;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 70% 30%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(8, 145, 178, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-description p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(30, 58, 138, 0.2);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--bg-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    line-height: 1.3;
}


.certification-badges {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    backdrop-filter: blur(5px);
}

.badge i {
    color: var(--medical-green);
}

/* Advantages Section */
.advantages {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(30, 58, 138, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(8, 145, 178, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: center;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(30, 58, 138, 0.2);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: var(--shadow-xl);
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.01em;
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Insurance Partners Section */
.insurance-partners {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.insurance-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.insurance-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
    width: 100%;
    max-width: 220px;
    height: 140px;
}

.insurance-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.insurance-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all var(--transition-normal);
}

.insurance-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    background: var(--bg-section);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 60% 40%, rgba(30, 58, 138, 0.015) 0%, transparent 60%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
    height: 250px;
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
}

.before-after {
    display: flex;
    width: 100%;
    height: 100%;
}

.before, .after {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
}

.before {
    background: #ffe6e6;
    color: #d63384;
}

.after {
    background: #e6f7e6;
    color: var(--medical-green);
}

.gallery-caption {
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Before/After Image Styles */
.before-after-container {
    height: 250px;
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
}

.before-after-images {
    display: flex;
    height: 100%;
    position: relative;
}

.before-image,
.after-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.before-image video,
.after-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover .before-image img,
.gallery-item:hover .after-image img {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: none;
}

.before-image .image-label {
    background: rgba(220, 38, 38, 0.9);
}

.after-image .image-label {
    background: rgba(34, 197, 94, 0.9);
}

/* Video Container Styles */
.video-container {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: var(--gray-900);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-mute-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
}

.video-mute-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-mute-toggle:active {
    transform: scale(0.95);
}

.video-mute-toggle i {
    pointer-events: none;
}

/* Divider line between before/after */
.before-after-images::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: white;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
    z-index: 1;
}

.testimonials h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-right: 4px solid var(--primary-color);
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-right-color: var(--primary-accent);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text::before {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.testimonial-text::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--bg-section);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.025) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(30, 58, 138, 0.15);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--bg-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
}

.contact-item:hover .contact-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--primary-dark);
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1.05rem;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    font-weight: var(--font-weight-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background: var(--bg-gradient);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.05);
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
    line-height: 1.5;
}

.final-cta {
    text-align: center;
    padding: 4rem;
    background: var(--bg-gradient);
    border-radius: var(--border-radius-xl);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.cta-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #25d366 0%, #20b358 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all var(--transition-normal);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.cta-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.cta-primary-large:hover::before {
    left: 100%;
}

.cta-primary-large:hover {
    background: linear-gradient(135deg, #1ea952 0%, #16a34a 100%);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.footer-contact h4,
.footer-social h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-400);
}

.footer-contact i {
    color: var(--primary-color);
    width: 16px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #1ea952;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        max-width: 100vw !important;
    }
    
    :root {
        --container-padding: 1rem;
        --section-padding: var(--section-padding-mobile);
    }

    /* Mobile container fix */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    /* Navigation Mobile */
    .navbar {
        height: 60px;
    }
    
    .nav-container {
        padding: 0 1rem;
        max-width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-logo h2 {
        font-size: 1.25rem;
    }

    .nav-tagline {
        font-size: 0.75rem;
    }
    
    .logo-image {
        height: 40px;
        max-width: 150px;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        width: 100%;
        max-height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem;
        transition: right var(--transition-normal);
        gap: 2rem;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu.active .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* Hero Mobile */
    .hero {
        padding-top: 60px;
        min-height: 100vh;
        padding-bottom: 4rem;
        background: linear-gradient(
            135deg,
            #f0f9ff 0%,
            #e0f2fe 25%,
            #dbeafe 50%,
            #bfdbfe 75%,
            #93c5fd 100%
        );
        overflow-x: hidden;
        overflow-y: visible;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 30% 20%, rgba(30, 58, 138, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 50% 80%, rgba(8, 145, 178, 0.06) 0%, transparent 40%);
        pointer-events: none;
        z-index: 1;
    }

    .hero-background {
        background-position: 70% center;
        background-attachment: scroll;
        background-size: cover;
        transform: none;
        filter: brightness(1.1) contrast(0.9);
        opacity: 0.4;
    }
    
    .hero-background::before {
        display: none;
    }

    .hero-overlay {
        background: 
            linear-gradient(
                170deg, 
                rgba(255, 255, 255, 0.97) 0%, 
                rgba(248, 250, 252, 0.92) 30%, 
                rgba(241, 245, 249, 0.85) 60%, 
                rgba(226, 232, 240, 0.7) 100%
            ),
            linear-gradient(
                to right,
                rgba(30, 58, 138, 0.03) 0%,
                transparent 50%,
                rgba(59, 130, 246, 0.02) 100%
            );
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        z-index: 2;
        position: relative;
    }
    
    .hero-content::before {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        width: 120px;
        height: 120px;
        background: radial-gradient(
            circle,
            rgba(30, 58, 138, 0.08) 0%,
            rgba(59, 130, 246, 0.04) 40%,
            transparent 70%
        );
        border-radius: 50%;
        filter: blur(20px);
        z-index: -1;
    }
    
    .hero-content::after {
        content: '';
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 100px;
        height: 100px;
        background: radial-gradient(
            circle,
            rgba(8, 145, 178, 0.06) 0%,
            transparent 60%
        );
        border-radius: 50%;
        filter: blur(15px);
        z-index: -1;
    }

    .hero-text {
        max-width: 100%;
        padding: 0;
        margin: 0;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .hero-text::before,
    .hero-text::after {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
        line-height: 1.15;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 8px rgba(30, 58, 138, 0.08);
    }
    
    .hero-title .highlight {
        position: relative;
        display: inline-block;
    }
    
    .hero-title .highlight::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0;
        right: 0;
        height: 8px;
        background: linear-gradient(90deg, rgba(59, 130, 246, 0.3) 0%, rgba(8, 145, 178, 0.3) 100%);
        z-index: -1;
        border-radius: 2px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        line-height: 1.65;
        color: var(--text-secondary);
        font-weight: var(--font-weight-medium);
        padding: 0 0.5rem;
        position: relative;
    }

    .hero-features {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        width: 100%;
    }

    .feature-item {
        width: auto;
        max-width: 280px;
        margin: 0 auto;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 30px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
        font-size: 0.95rem;
        justify-content: center;
        gap: 0.75rem;
        transition: all 0.2s ease;
    }
    
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 0.95rem;
        font-weight: var(--font-weight-medium);
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: stretch;
        margin-bottom: 3rem;
        padding-bottom: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .hero-scroll {
        bottom: 1rem;
    }

    /* Timeline Mobile */
    .process-timeline::before {
        right: 20px;
        transform: none;
        left: auto;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-right: 0;
        padding-left: 0;
        position: relative;
    }

    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 0;
        margin-left: 0;
        flex: 1;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        position: absolute;
        right: 15px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
    }

    /* About Mobile */
    .about-content {
        text-align: center;
        max-width: 100%;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Insurance Partners Mobile */
    .insurance-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
        max-width: 100%;
    }

    .insurance-logo {
        max-width: 100%;
        width: 100%;
        height: 90px;
        padding: 0.75rem;
        box-sizing: border-box;
    }

    .insurance-logo img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }

    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Section spacing mobile */
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .main-service {
        grid-column: 1;
    }

    .service-card {
        padding: 1.5rem;
        margin: 0;
        border-radius: var(--border-radius-lg);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    /* Advantages Grid Mobile */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .advantage-card {
        padding: 1.5rem;
        margin: 0;
        border-radius: var(--border-radius-lg);
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .advantage-icon i {
        font-size: 1.5rem;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .gallery-placeholder {
        height: 200px;
    }
    
    .before-after-container {
        height: 200px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial {
        padding: 1.5rem;
        margin: 0;
    }
    
    .testimonials-grid {
        padding: 0 0.5rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 1rem;
        left: 1rem;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
        max-width: 100%;
        width: 100%;
    }

    /* Hero fixes */
    .hero {
        padding-top: 60px;
        min-height: 100vh;
        max-width: 100vw;
        overflow-x: hidden;
        overflow-y: visible;
        padding-bottom: 4rem;
        background: linear-gradient(
            160deg,
            #e0f2fe 0%,
            #dbeafe 30%,
            #bfdbfe 60%,
            #93c5fd 100%
        );
    }
    
    .hero-content {
        padding: 1rem 0.75rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-text {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    /* Hide desktop decorative elements on mobile */
    .hero-text::before,
    .hero-text::after {
        display: none !important;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.6;
        font-weight: var(--font-weight-normal);
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0;
        width: 100%;
        margin: 0 auto 1.5rem;
        background: transparent;
    }

    .feature-item {
        width: auto;
        max-width: 260px;
        padding: 0.875rem 1.25rem;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 25px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        font-size: 0.9rem;
        justify-content: center;
    }
    
    
    .feature-item i {
        font-size: 1.1rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
        font-weight: var(--font-weight-medium);
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 3rem;
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem 2rem 0.5rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1rem;
        margin: 0 0 1rem 0;
        font-size: 0.95rem;
        display: flex;
        font-weight: var(--font-weight-semibold);
        box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
        text-align: center;
        white-space: normal;
        line-height: 1.3;
        min-height: 48px;
        align-items: center;
    }
    
    .cta-primary {
        background: linear-gradient(135deg, #25d366 0%, #20b358 100%);
        animation: subtle-pulse 3s ease-in-out infinite;
    }
    
    .cta-secondary {
        margin-bottom: 2rem !important;
        border: 2px solid var(--primary-color);
    }
    
    @keyframes subtle-pulse {
        0%, 100% {
            box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.2);
        }
        50% {
            box-shadow: 0 4px 20px 0 rgba(37, 211, 102, 0.4);
        }
    }

    /* Sections */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    /* Cards */
    .service-card,
    .advantage-card,
    .testimonial {
        padding: 1.25rem;
        margin: 0;
    }

    .service-card h3,
    .advantage-card h3 {
        font-size: 1.1rem;
    }

    .service-card p,
    .advantage-card p {
        font-size: 0.9rem;
    }

    /* Timeline */
    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        right: 10px;
        left: auto;
    }

    /* Contact */
    .contact-form-container {
        padding: 1.25rem;
        margin: 0;
        border-radius: var(--border-radius);
    }

    .contact-form h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .contact-item {
        padding: 1.25rem;
        margin: 0 0 0.75rem 0;
    }

    /* Insurance Partners Extra Small Mobile */
    .insurance-logos {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.5rem;
    }

    .insurance-logo {
        max-width: 280px;
        width: 100%;
        height: 80px;
        padding: 0.5rem;
        margin: 0 auto;
    }

    /* Final CTA */
    .final-cta {
        padding: 2rem 1rem;
        margin: 0;
        border-radius: var(--border-radius);
    }

    .final-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-primary-large {
        width: 100%;
        justify-content: center;
        padding: 1.125rem 1.5rem;
        font-size: 1.1rem;
    }

    /* About stats */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .stat-item {
        padding: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        text-align: left;
    }
    
    .stat-icon {
        margin: 0;
        flex-shrink: 0;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }


    /* Process timeline mobile adjustments */
    .process-timeline::before {
        right: 15px;
    }

    .timeline-item {
        padding-right: 2.5rem;
    }

    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 1.5rem;
        margin-left: 0;
    }

    /* Additional mobile optimizations */
    * {
        box-sizing: border-box;
    }

    img, picture, video, canvas, svg {
        max-width: 100%;
        height: auto;
    }

    /* Prevent horizontal scrolling - removed overflow-x: hidden */

    /* Ensure buttons don't cause overflow */
    button, .cta-primary, .cta-secondary, .form-submit {
        max-width: 100%;
        word-wrap: break-word;
    }

    /* Fix margins for mobile - cards should not have side margins */
    .gallery-item,
    .service-card,
    .advantage-card,
    .testimonial,
    .contact-item,
    .contact-form-container,
    .final-cta {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    /* Grids padding */
    .services-grid,
    .advantages-grid,
    .gallery-grid,
    .testimonials-grid {
        padding: 0;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .hero-scroll,
    .whatsapp-btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}