/* ===== CSS VARIABLES - BRAND COLORS ===== */
:root {
    /* Primary Identity Colors derived from logo */
    --color-primary-navy: #1a120a;
    --color-primary-royal: #3f2711;
    --color-primary-deep: #2a1a0c;
    
    /* Brand Color - Brown/Gold from Logo */
    --color-brand-brown: #603913;
    --color-brand-light: #7d4d1a;
    --color-brand-dark: #4a2d0f;
    
    /* Action/CTA Colors mapped to logo palette */
    --color-cta-cyan: #8b5a2b;
    --color-cta-turquoise: #a8743a;
    --color-cta-bright: #d4a66a;
    
    /* Updated: All emerald/green colors changed to brand brown */
    --color-accent-brown: #603913;
    --color-accent-brown-light: #7a4a1a;
    --color-accent-brown-lighter: #8b5a25;
    
    /* Supporting Colors */
    --color-bg-white: #ffffff;
    --color-bg-light-gray: #f8fafc;
    --color-bg-soft-gray: #f1f5f9;
    --color-accent-slate: #475569;
    --color-accent-dark-slate: #334155;
    --color-accent-silver: #cbd5e1;
    
    /* WhatsApp Green */
    --color-whatsapp: #25d366;
    --color-whatsapp-dark: #128c7e;
    --color-call: #a8743a;
    --color-call-dark: #7d4d1a;
    --shadow-brand: 0 20px 45px rgba(96, 57, 19, 0.18);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--color-bg-white);
    color: var(--color-primary-navy);
    overflow-x: hidden;
    direction: rtl;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

h1, h2, h3, h4 {
    font-family: 'Changa', sans-serif;
    letter-spacing: 0.01em;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 0%, rgba(212, 166, 106, 0.08), transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(96, 57, 19, 0.07), transparent 45%);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(25px) rotate(-5deg); }
}

@keyframes rotate3d {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1000;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-whatsapp) 0%, var(--color-whatsapp-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.call-float {
    position: fixed;
    bottom: 6.2rem;
    left: 1.5rem;
    z-index: 1000;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-call) 0%, var(--color-call-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(125, 77, 26, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.whatsapp-float.show {
    opacity: 1;
    transform: scale(1);
}

.call-float.show {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.call-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(125, 77, 26, 0.62);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(96, 57, 19, 0.12);
    transition: all 0.35s ease;
}

.header.scrolled {
    background: rgba(255, 250, 244, 0.96);
    box-shadow: 0 12px 28px rgba(96, 57, 19, 0.18);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 80px;
    width: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(96, 57, 19, 0.15));
}

.header-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.header-brand-text strong {
    font-size: 1.08rem;
    color: var(--color-primary-deep);
}

.header-brand-text span {
    font-size: 0.85rem;
    color: var(--color-accent-slate);
}

.header.scrolled .header-brand-text strong,
.header.scrolled .header-brand-text span {
    color: var(--color-primary-deep);
}

.header-actions {
    margin-inline-start: auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-header-call {
    background: linear-gradient(135deg, var(--color-call), var(--color-call-dark));
    color: white;
    box-shadow: 0 10px 25px rgba(168, 116, 58, 0.32);
    white-space: nowrap;
}

.btn-header-call:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(125, 77, 26, 0.45);
}

.btn-header-whatsapp {
    background: linear-gradient(135deg, var(--color-whatsapp), var(--color-whatsapp-dark));
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
}

.btn-header-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 120px; /* Increased from 100px to prevent header overlay */
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: calc(100vh - 120px); /* Adjust for body padding */
    background: radial-gradient(circle at 75% 15%, rgba(212, 166, 106, 0.22), transparent 30%),
                linear-gradient(145deg, #1a120a 0%, #3f2711 42%, #100b06 100%);
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 3rem 0; /* Increased padding */
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    will-change: transform;
    z-index: 1;
}

.shape-book {
    top: 5rem;
    right: 2.5rem;
    animation: float 8s ease-in-out infinite;
}

.shape-shield {
    top: 10rem;
    left: 2.5rem;
    animation: float2 6s ease-in-out infinite;
}

.shape-cap {
    bottom: 8rem;
    right: 25%;
    animation: float 10s ease-in-out infinite;
}

.shape-scale {
    bottom: 5rem;
    left: 25%;
    animation: float2 7s ease-in-out infinite;
}

.shape-3d, .shape-3d-2, .shape-3d-3, .shape-3d-4 {
    width: 8rem;
    height: 8rem;
    transform-style: preserve-3d;
}

.shape-3d { animation: rotate3d 20s linear infinite; }
.shape-3d-2 { animation: rotate3d 25s linear infinite reverse; }
.shape-3d-3 { animation: rotate3d 15s linear infinite; }
.shape-3d-4 { animation: rotate3d 18s linear infinite reverse; }

.shape-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 116, 58, 0.15), rgba(125, 77, 26, 0.15));
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 116, 58, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--color-cta-bright);
    box-shadow: 0 20px 60px rgba(168, 116, 58, 0.2);
}

.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-cta-bright);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
    opacity: 0.2;
}

/* Dark Gradient Overlay for Better Text Readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 43, 0.95) 0%,
        rgba(15, 23, 43, 0.85) 50%,
        rgba(15, 23, 43, 0.95) 100%
    );
    z-index: 2;
}

/* ===== HERO SLIDER ===== */
.hero-slider-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    z-index: 3;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Vertical Flexbox Layout Container */
.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 1rem 1.5rem 8rem;
    gap: 0.85rem;
    height: 100%;
}
/* 1. Expert Tag at Top */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(168, 116, 58, 0.15), rgba(125, 77, 26, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-cta-turquoise);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    box-shadow: 0 10px 30px rgba(168, 116, 58, 0.3);
}

.hero-badge i {
    color: var(--color-cta-turquoise);
    font-size: 0.85rem;
}

.hero-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-cta-turquoise), var(--color-cta-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 2. Main Headline */
.hero-title {
    font-size: clamp(2rem, 2.8vw, 3.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    color: white;
}

/* Enhanced Contrast for Light Blue Text */
.gradient-text {
    background: linear-gradient(135deg, #a9906e 0%, #4a2d0f 50%, #e8bc83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
    filter: brightness(1.3);
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
}

/* 3. Sub-headline: Dr. Fatima Name */
.doctor-name {
    font-size: clamp(1.1rem, 1.4vw, 1.6rem);
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--color-cta-bright), var(--color-cta-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 4. Description Text with line-height 1.6 */
.hero-description {
    font-size: clamp(0.96rem, 1.1vw, 1.12rem);
    line-height: 1.75;
    color: #e2e8f0;
    margin: 0;
    max-width: 700px;
}

/* 5. CTA Buttons */
.hero-cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0.25rem;
}

.section-inline-cta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.section-inline-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
    cursor: pointer;
    border: 1px solid transparent;
    min-height: 44px;
}

.btn-whatsapp,
.hero-whatsapp-btn {
    background: linear-gradient(135deg, var(--color-whatsapp), var(--color-whatsapp-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover,
.hero-whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 166, 106, 0.8);
    color: white;
}

.btn-secondary:hover {
    background: rgba(212, 166, 106, 0.15);
    transform: scale(1.05) translateY(-1px);
}

/* 6. Three Feature Cards at Bottom */
.trust-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    width: 100%;
    max-width: 800px;
    margin-top: 0.5rem;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(168, 116, 58, 0.1), rgba(125, 77, 26, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 116, 58, 0.4);
    border-radius: 0.75rem;
    padding: 0.7rem 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: right;
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(168, 116, 58, 0.3);
    border-color: var(--color-cta-turquoise);
}

.trust-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, var(--color-cta-turquoise), var(--color-cta-cyan));
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(168, 116, 58, 0.3);
}

.trust-icon i {
    font-size: 1rem;
    color: white;
}

.trust-card span {
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
    flex: 1;
}

/* Slider Controls - Positioned at Screen Edges (Absolute within hero) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-cta-turquoise);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev {
    right: 1.5rem;
}

.slider-next {
    left: 1.5rem;
}

.slider-btn:hover {
    background: rgba(168, 116, 58, 0.3);
    border-color: var(--color-cta-bright);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(168, 116, 58, 0.4);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Progress Bars - Absolute within hero section */
.slider-progress {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.65rem;
    align-items: center;
}

.progress-bar {
    width: 2.75rem;
    height: 0.28rem;
    background: rgba(148, 163, 184, 0.3);
    border-radius: 9999px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.3);
    opacity: 0.6;
}

.progress-bar:hover {
    background: rgba(168, 116, 58, 0.4);
    transform: scaleX(1.1);
    border-color: var(--color-cta-turquoise);
    opacity: 1;
}

.progress-bar.active {
    width: 3.5rem;
    background: rgba(168, 116, 58, 0.5);
    border-color: var(--color-cta-bright);
    opacity: 1;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-cta-turquoise), var(--color-cta-bright));
    border-radius: 9999px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(168, 116, 58, 0.8);
}

.progress-bar.active .progress-fill {
    animation: progressFill 5s linear;
}

/* Scroll Indicator - Absolute within hero */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-accent-silver);
    font-size: 0.65rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 25;
}

.scroll-indicator i {
    font-size: 1.25rem;
    color: var(--color-cta-turquoise);
}

/* ===== TRUST HIGHLIGHTS SECTION ===== */
.trust-highlights-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(168, 116, 58, 0.03) 0%, 
        rgba(125, 77, 26, 0.05) 50%, 
        rgba(168, 116, 58, 0.03) 100%
    );
    overflow: hidden;
}

.trust-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-cta-turquoise) 50%, 
        transparent 100%
    );
}

.trust-highlights-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(168, 116, 58, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

.trust-highlights-grid,
.trust-highlights-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 1060px;
    margin: 0 auto;
}

.trust-highlight-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(168, 116, 58, 0.15);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.trust-highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-cta-turquoise), var(--color-cta-bright), var(--color-cta-cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-highlight-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.trust-highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(168, 116, 58, 0.25);
}

.trust-highlight-card:hover::before {
    opacity: 1;
}

.trust-highlight-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-cta-turquoise) 0%, var(--color-cta-cyan) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(168, 116, 58, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-highlight-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.trust-highlight-card:hover .trust-highlight-icon {
    transform: rotate(360deg) scale(1.1);
}

.trust-highlight-card:hover .trust-highlight-icon::before {
    transform: translateX(100%);
}

.trust-highlight-icon i {
    font-size: 1.75rem;
    color: white;
    position: relative;
    z-index: 2;
}

.trust-highlight-content {
    flex: 1;
    text-align: right;
}

.trust-highlight-content span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-navy);
    line-height: 1.5;
    display: block;
}

.trust-highlight-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    line-height: 1.6;
    margin: 0;
}

/* Staggered animation delay for cards */
.trust-highlight-card:nth-child(1) {
    transition-delay: 0.1s;
}

.trust-highlight-card:nth-child(2) {
    transition-delay: 0.2s;
}

.trust-highlight-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* ===== STATS SECTION ===== */
.stats-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-brand-brown), var(--color-brand-dark), var(--color-brand-light));
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: rotate3d 20s linear infinite;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

/* ===== SECTIONS ===== */
.why-us-section,
.why-now-section,
.faq-section,
.testimonials-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--color-bg-light-gray), var(--color-bg-white));
}

.services-section,
.results-section,
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: var(--color-primary-navy);
    overflow: hidden;
}

.decorative-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
}

.blob-1 {
    width: 16rem;
    height: 16rem;
    background: rgba(168, 116, 58, 0.05);
    top: 5rem;
    right: 2.5rem;
}

.blob-2 {
    width: 24rem;
    height: 24rem;
    background: rgba(125, 77, 26, 0.05);
    bottom: 5rem;
    left: 2.5rem;
    animation-delay: 2s;
}

.blob-3 {
    width: 18rem;
    height: 18rem;
    background: rgba(168, 116, 58, 0.1);
    top: 5rem;
    left: 5rem;
    animation-delay: 1s;
}

.blob-4 {
    width: 20rem;
    height: 20rem;
    background: rgba(125, 77, 26, 0.1);
    bottom: 5rem;
    right: 5rem;
    animation-delay: 3s;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(168, 116, 58, 0.1), rgba(125, 77, 26, 0.1));
    border: 1px solid var(--color-cta-turquoise);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
}

.section-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-cta-cyan), var(--color-cta-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(1.9rem, 3.6vw, 3.2rem);
    font-weight: 900;
    color: var(--color-primary-navy);
    margin-bottom: 1rem;
}

.section-title.text-white {
    color: white;
}

.section-subtitle {
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    color: var(--color-accent-slate);
}

.text-white + .section-subtitle {
    color: #cbd5e1;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

.feature-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-brand);
    border: 2px solid var(--color-bg-soft-gray);
    transition: all 0.5s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: transparent;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 1.5rem;
    filter: blur(40px);
}

.feature-card[data-color="cyan"]:hover .feature-bg {
    opacity: 0.3;
    background: linear-gradient(135deg, var(--color-cta-turquoise), var(--color-cta-cyan));
}

.feature-card[data-color="teal"]:hover .feature-bg {
    opacity: 0.3;
    background: linear-gradient(135deg, var(--color-cta-cyan), var(--color-brand-brown));
}

.feature-card[data-color="emerald"]:hover .feature-bg {
    opacity: 0.3;
    background: linear-gradient(135deg, var(--color-brand-brown), var(--color-cta-turquoise));
}

.feature-icon {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-cta-turquoise), var(--color-cta-cyan));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(168, 116, 58, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.feature-card p {
    color: var(--color-accent-slate);
    line-height: 1.75;
    position: relative;
    z-index: 10;
}

/* ===== SERVICES ===== */
.services-particles {
    position: absolute;
    inset: 0;
}

.service-particle {
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(168, 116, 58, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-cta-turquoise);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(50px);
}

.service-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.service-card:hover {
    transform: scale(1.02);
}

.service-primary {
    background: linear-gradient(135deg, rgba(168, 116, 58, 0.1), rgba(125, 77, 26, 0.1));
}

.service-secondary {
    background: linear-gradient(135deg, rgba(125, 77, 26, 0.1), rgba(96, 57, 19, 0.1));
}

.service-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 116, 58, 0.2), rgba(125, 77, 26, 0.2));
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .service-glow {
    opacity: 1;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-cta-turquoise), var(--color-cta-cyan));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(168, 116, 58, 0.3);
    transition: all 0.6s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-list i {
    font-size: 1.5rem;
    color: var(--color-cta-turquoise);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-list span {
    color: #e2e8f0;
    font-size: 1.125rem;
}

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

.support-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.support-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.support-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.support-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--color-cta-turquoise), var(--color-cta-cyan));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(168, 116, 58, 0.3);
}

.support-icon i {
    font-size: 1.75rem;
    color: white;
}

.support-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.support-content p {
    color: #cbd5e1;
}

/* ===== PILLARS ===== */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
}

.pillar-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-bg-soft-gray);
    transition: all 0.5s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.pillar-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: transparent;
}

.pillar-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 1.5rem;
    filter: blur(40px);
}

.pillar-card[data-gradient="cyan"]:hover .pillar-glow {
    opacity: 0.5;
    background: linear-gradient(135deg, var(--color-cta-turquoise), #4a2d0f);
}

.pillar-card[data-gradient="teal"]:hover .pillar-glow {
    opacity: 0.5;
    background: linear-gradient(135deg, var(--color-cta-cyan), var(--color-brand-brown));
}

.pillar-card[data-gradient="emerald"]:hover .pillar-glow {
    opacity: 0.5;
    background: linear-gradient(135deg, var(--color-brand-brown), var(--color-brand-light));
}

.pillar-card[data-gradient="blue"]:hover .pillar-glow {
    opacity: 0.5;
    background: linear-gradient(135deg, #4a2d0f, var(--color-cta-turquoise));
}

.pillar-icon {
    position: relative;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    z-index: 10;
}

.pillar-card[data-gradient="cyan"] .pillar-icon {
    background: linear-gradient(135deg, var(--color-cta-turquoise), #4a2d0f);
}

.pillar-card[data-gradient="teal"] .pillar-icon {
    background: linear-gradient(135deg, var(--color-cta-cyan), var(--color-brand-brown));
}

.pillar-card[data-gradient="emerald"] .pillar-icon {
    background: linear-gradient(135deg, var(--color-brand-brown), var(--color-brand-light));
}

.pillar-card[data-gradient="blue"] .pillar-icon {
    background: linear-gradient(135deg, #4a2d0f, var(--color-cta-turquoise));
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.2) rotate(360deg);
}

.pillar-icon i {
    font-size: 2rem;
    color: white;
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
}

.pillar-card p {
    color: var(--color-accent-slate);
    position: relative;
    z-index: 10;
}

/* ===== RESULTS ===== */
.results-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(168, 116, 58, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(168, 116, 58, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-cta-turquoise);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.result-item.visible {
    opacity: 1;
    transform: scale(1);
}

.result-item:hover {
    transform: scale(1.05) translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.result-item i {
    font-size: 2rem;
    color: var(--color-cta-turquoise);
    flex-shrink: 0;
}

.result-item span {
    color: white;
    font-weight: 500;
    font-size: 1.125rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 2px solid var(--color-bg-soft-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
}

.testimonial-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 1.5rem;
    filter: blur(40px);
}

.testimonial-card[data-gradient="cyan"]:hover .testimonial-glow {
    opacity: 0.3;
    background: linear-gradient(135deg, var(--color-cta-turquoise), #4a2d0f);
}

.testimonial-card[data-gradient="teal"]:hover .testimonial-glow {
    opacity: 0.3;
    background: linear-gradient(135deg, var(--color-cta-cyan), var(--color-brand-brown));
}

.testimonial-card[data-gradient="emerald"]:hover .testimonial-glow {
    opacity: 0.3;
    background: linear-gradient(135deg, var(--color-brand-brown), var(--color-brand-light));
}

.testimonial-icon {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card[data-gradient="cyan"] .testimonial-icon {
    background: linear-gradient(135deg, var(--color-cta-turquoise), #4a2d0f);
}

.testimonial-card[data-gradient="teal"] .testimonial-icon {
    background: linear-gradient(135deg, var(--color-cta-cyan), var(--color-brand-brown));
}

.testimonial-card[data-gradient="emerald"] .testimonial-icon {
    background: linear-gradient(135deg, var(--color-brand-brown), var(--color-brand-light));
}

.testimonial-icon i {
    font-size: 1.75rem;
    color: white;
}

.testimonial-card p {
    padding-top: 1.5rem;
    color: var(--color-accent-dark-slate);
    font-size: 1.125rem;
    line-height: 1.75;
    position: relative;
    z-index: 10;
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 56rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-brand);
    border: 2px solid var(--color-bg-soft-gray);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    border-color: var(--color-cta-turquoise);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--color-bg-light-gray);
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    transition: color 0.3s ease;
}

.faq-question:hover span {
    color: var(--color-cta-turquoise);
}

.faq-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--color-cta-turquoise), var(--color-cta-cyan));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-accent-slate);
    font-size: 1.125rem;
    line-height: 1.75;
}

/* ===== CTA SECTION ===== */
.cta-particles {
    position: absolute;
    inset: 0;
}

.cta-particle {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(168, 116, 58, 0.2);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(96, 57, 19, 0.1);
    border: 1px solid rgba(96, 57, 19, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2rem;
}

.cta-badge i {
    color: var(--color-brand-brown);
}

.cta-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-brand-brown);
}

.cta-title {
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: #cbd5e1;
    line-height: 1.75;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.btn-cta-whatsapp {
    position: relative;
    background: linear-gradient(135deg, var(--color-whatsapp), var(--color-whatsapp-dark));
    color: white;
    padding: 1.5rem 2.5rem;
    font-size: 1.25rem;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
    overflow: hidden;
}

.btn-cta-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.6);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-whatsapp), var(--color-whatsapp-dark));
    border-radius: 9999px;
    filter: blur(20px);
    animation: pulse 2s ease-in-out infinite;
}

.cta-features {
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-features i {
    color: var(--color-brand-brown);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #0f172b 0%, #111f43 60%, #0a1226 100%);
    color: white;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--color-cta-turquoise), var(--color-cta-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 1.125rem;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--color-cta-turquoise);
}

.footer-link-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-link:hover .footer-link-icon {
    background: rgba(168, 116, 58, 0.2);
}

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

/* Social Media Section */
.footer-social {
    margin: 2rem 0;
}

.social-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 3.5rem;
    height: 3.5rem;
    /* background: linear-gradient(135deg, rgba(168, 116, 58, 0.2), rgba(125, 77, 26, 0.2)); */
    backdrop-filter: blur(10px);
    border: 2px solid rgba(70, 56, 3, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cta-turquoise);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--color-cta-turquoise), var(--color-cta-cyan));
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(168, 116, 58, 0.4);
    border-color: var(--color-cta-bright);
}

.social-link:active {
    transform: translateY(-3px) scale(1.05);
}

.footer-copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-copyright p + p {
    margin-top: 0.35rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-brand-text {
        display: none;
    }

    .header-actions {
        gap: 0.4rem;
    }

    .header-actions .btn {
        width: auto;
        max-width: none;
        padding: 0.55rem 0.8rem;
        font-size: 0.78rem;
    }

    /* Hide decorative shapes on mobile */
    .shape-cap, .shape-scale {
        display: none;
    }

    .shape-3d, .shape-3d-2 {
        width: 6rem;
        height: 6rem;
    }

    .shape-inner {
        font-size: 3rem;
    }

    /* Reduce headline by 30% on mobile */
    .hero-title {
        font-size: 2.1rem;
    }

    .doctor-name {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Stack three feature cards vertically */
    .trust-points {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        display: none;
    }

    .slider-progress {
        bottom: 5rem;
    }

    .progress-bar {
        width: 2.5rem;
        height: 0.25rem;
    }

    .progress-bar.active {
        width: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .whatsapp-float,
    .call-float {
        width: 3.5rem;
        height: 3.5rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        left: 1rem;
        font-size: 1.8rem;
    }

    .call-float {
        bottom: 5.2rem;
        left: 1rem;
        font-size: 1.3rem;
    }

    .hero-content-wrapper {
        padding: 1.5rem 1rem 7rem;
        gap: 1.25rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-inline-cta .btn {
        max-width: 340px;
    }
    
    /* Trust highlights responsive */
    .trust-highlights-section {
        padding: 3rem 0;
    }
    
    .trust-highlights-grid,
    .trust-highlights-container {
        gap: 1rem;
    }
    
    .trust-highlight-card {
        padding: 1.25rem;
    }
    
    .trust-highlight-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .trust-highlight-icon i {
        font-size: 1.5rem;
    }
    
    .trust-highlight-content span,
    .trust-highlight-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header-actions .btn span {
        display: none;
    }

    .header-actions .btn {
        min-width: 42px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        padding: 0;
    }

    .header-logo img {
        height: 68px;
    }

    body {
        padding-top: 108px;
    }

    .hero-section {
        min-height: calc(100vh - 108px);
        padding: 1.6rem 0;
    }

    .slider-progress {
        bottom: 4.7rem;
    }

    .hero-content-wrapper {
        padding-bottom: 6.5rem;
    }
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }

    /* Three feature cards in one row on tablets and up */
    .trust-points {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-cta {
        flex-direction: row;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Trust highlights on larger screens: 2 cards per row */
    .trust-highlights-grid,
    .trust-highlights-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .supporting-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: 3.75rem;
    }
}

/* ===== Brand Refresh (Logo Palette) ===== */
:root {
    --logo-deep: #4a2d0f;
    --logo-mid: #603913;
    --logo-light: #7d4d1a;
    --logo-gold: #d4a66a;
    --logo-cream: #f7efe4;
}

body {
    background: linear-gradient(180deg, #f8f2e9 0%, #fbf8f3 38%, #f7efe4 100%);
}

.header {
    background: rgba(255, 250, 244, 0.9);
    border-bottom: 1px solid rgba(96, 57, 19, 0.18);
    backdrop-filter: blur(14px);
}

.header.scrolled {
    background: rgba(255, 250, 244, 0.96);
    box-shadow: 0 12px 28px rgba(96, 57, 19, 0.18);
}

.hero-section {
    background:
        radial-gradient(circle at 18% 16%, rgba(212, 166, 106, 0.28), transparent 32%),
        radial-gradient(circle at 84% 18%, rgba(125, 77, 26, 0.25), transparent 34%),
        linear-gradient(125deg, #1f1208 0%, #4a2d0f 48%, #2a1a0c 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('images/face2.jpg.jpeg') center 22% / cover no-repeat;
    opacity: 0.33;
    z-index: 0;
    filter: saturate(0.9) contrast(1.04);
    pointer-events: none;
}

.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(26, 18, 10, 0.83) 0%,
        rgba(26, 18, 10, 0.62) 45%,
        rgba(26, 18, 10, 0.88) 100%
    );
}

.hero-content-wrapper {
    padding: 2rem 1.5rem 7.5rem;
}

.hero-title {
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.gradient-text {
    background: linear-gradient(135deg, #f6d3a0 0%, #d4a66a 45%, #8b5a2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
    text-shadow: none;
}

.doctor-name {
    background: linear-gradient(135deg, #f6d3a0, #d4a66a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    border-radius: 14px;
    font-weight: 800;
}

.btn-whatsapp,
.hero-whatsapp-btn,
.btn-cta-whatsapp {
    border-radius: 14px;
}

.btn-secondary {
    color: #fff;
    border: 1px solid rgba(247, 239, 228, 0.55);
}

.btn-secondary:hover {
    background: rgba(247, 239, 228, 0.18);
}

.why-us-section,
.why-now-section,
.faq-section,
.testimonials-section {
    background: linear-gradient(180deg, #fbf8f3 0%, #f4ebdf 100%);
}

.services-section,
.results-section,
.cta-section,
.footer {
    background: linear-gradient(180deg, #2a1a0c 0%, #4a2d0f 58%, #1f1208 100%);
}

.section-title {
    color: var(--logo-deep);
}

.section-title.text-white {
    color: #fdf3e4;
}

.section-subtitle {
    color: #5a4633;
}

.text-white + .section-subtitle {
    color: #ead9c2;
}

.feature-card,
.pillar-card,
.testimonial-card,
.faq-item,
.trust-highlight-card {
    background: linear-gradient(180deg, #fffdfa 0%, #f8efe2 100%);
    border: 1px solid rgba(125, 77, 26, 0.2);
    box-shadow: 0 18px 36px rgba(74, 45, 15, 0.14);
}

.feature-card:hover,
.pillar-card:hover,
.testimonial-card:hover,
.faq-item:hover,
.trust-highlight-card:hover {
    box-shadow: 0 26px 48px rgba(74, 45, 15, 0.22);
    transform: translateY(-9px);
}

.feature-icon,
.pillar-icon,
.service-icon,
.trust-highlight-icon,
.faq-icon {
    background: linear-gradient(145deg, #8b5a2b 0%, #603913 55%, #4a2d0f 100%) !important;
}

.feature-card h3,
.pillar-card h3,
.faq-question span,
.trust-highlight-title {
    color: #2a1a0c;
}

.feature-card p,
.pillar-card p,
.faq-answer p {
    color: #5b4a3a;
}

.trust-highlights-grid,
.trust-highlights-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
    border: 1px solid rgba(212, 166, 106, 0.35);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.service-primary {
    background: linear-gradient(145deg, rgba(212, 166, 106, 0.14), rgba(96, 57, 19, 0.16));
}

.service-secondary {
    background: linear-gradient(145deg, rgba(125, 77, 26, 0.15), rgba(74, 45, 15, 0.18));
}

.support-card,
.result-item {
    border: 1px solid rgba(212, 166, 106, 0.34);
}

.slider-btn {
    border: 1px solid rgba(247, 239, 228, 0.55);
    background: rgba(96, 57, 19, 0.4);
}

.progress-fill {
    background: linear-gradient(90deg, #d4a66a, #8b5a2b);
}

.social-link {
    border-color: rgba(212, 166, 106, 0.5);
    color: #f2c994;
}

.social-link:hover {
    background: linear-gradient(135deg, #8b5a2b, #603913);
    border-color: #f2c994;
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 1.5rem 1rem 7rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.98rem;
    }
}

@media (max-width: 580px) {
    .trust-highlights-grid,
    .trust-highlights-container {
        grid-template-columns: 1fr;
    }
}
