/* =====================================================
   DR. MUHAMMAD DUMAN - PREMIUM ORTHOPEDIC LANDING PAGE
   Premium Medical Landing Page Stylesheet
   Mobile-First | RTL Arabic | High-Conversion Design
   ===================================================== */

/* =====================================================
   CSS VARIABLES & ROOT CONFIGURATION
   ===================================================== */
:root {
    /* Primary Colors */
    --primary: #00B0D1;
    --primary-dark: #0095B3;
    --primary-light: #33C4E0;
    --primary-pale: #E6F7FA;
    
    /* Supporting Colors */
    --white: #FFFFFF;
    --off-white: #F8FAFB;
    --light-cyan: #F0FAFB;
    --medical-gray: #F5F7F9;
    --navy: #1A2B4A;
    --navy-light: #2D4263;
    --text-dark: #1A2B4A;
    --text-medium: #4A5568;
    --text-light: #718096;
    
    /* Accent Colors */
    --success: #22C55E;
    --whatsapp: #25D366;
    --warning: #F59E0B;
    --star: #FBBF24;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00B0D1 0%, #0095B3 100%);
    --gradient-hero: linear-gradient(180deg, #F0FAFB 0%, #FFFFFF 100%);
    --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #F8FAFB 100%);
    --gradient-cta: linear-gradient(135deg, #00B0D1 0%, #00C9A7 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 4px 20px rgba(0, 176, 209, 0.1);
    --shadow-hover: 0 10px 40px rgba(0, 176, 209, 0.15);
    
    /* Typography */
    --font-family: 'Cairo', 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-8);
    }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

.btn-xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--font-size-xl);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* =====================================================
   SECTION COMMON STYLES
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-3);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-medium);
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--font-size-3xl);
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: var(--space-8) 0 var(--space-16);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 176, 209, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 176, 209, 0.08) 0%, transparent 70%);
    bottom: 10%;
    left: -50px;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 176, 209, 0.06) 0%, transparent 70%);
    top: 40%;
    right: 20%;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

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

.hero-logo {
    margin-bottom: var(--space-6);
}

.hero-logo img {
    height: 90px;
    width: auto;
    margin: 0 auto;
}

.hero-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: var(--space-4);
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-medium);
    margin-bottom: var(--space-3);
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--primary);
}

.hero-description {
    font-size: var(--font-size-base);
    color: var(--text-light);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.hero-trust-chips {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-size: var(--font-size-sm);
    color: var(--text-medium);
}

.trust-chip svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.hero-doctor-frame {
    position: relative;
    width: 250px;
    height: 300px;
    background: var(--gradient-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 3px solid var(--primary-pale);
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-floating-stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-stat {
    position: absolute;
    background: var(--white);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.stat-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 20%;
    left: -10px;
    animation-delay: 0.5s;
}

.stat-3 {
    top: 30%;
    right: 0;
    animation-delay: 1s;
}

.stat-number {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--text-medium);
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    opacity: 0.6;
}

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

/* Hero Desktop Styles */
@media (min-width: 768px) {
    .hero {
        padding: var(--space-12) 0;
    }
    
    .hero-logo img {
        height: 110px;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-trust-chips {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-doctor-frame {
        width: 300px;
        height: 380px;
    }
    
    .floating-stat {
        padding: var(--space-4) var(--space-6);
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .stat-label {
        font-size: var(--font-size-sm);
    }
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: calc(100vh - 200px);
    }
    
    .hero-content {
        text-align: right;
        flex: 1;
        max-width: 600px;
    }
    
    .hero-logo {
        margin-left: auto;
        margin-right: 0;
    }
    
    .hero-logo img {
        margin: 0;
    }
    
    .hero-title {
        font-size: var(--font-size-5xl);
    }
    
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .hero-trust-chips {
        justify-content: flex-start;
    }
    
    .hero-visual {
        flex: 1;
        justify-content: center;
    }
    
    .hero-doctor-frame {
        width: 350px;
        height: 450px;
    }
    
    .stat-1 {
        left: 10%;
    }
    
    .stat-2 {
        left: 5%;
    }
    
    .stat-3 {
        right: 10%;
    }
}

/* =====================================================
   PAIN-BASED ENTRY SECTION
   ===================================================== */
.pain-section {
    padding: var(--space-16) 0;
    background: var(--white);
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.pain-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-6);
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pain-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-4);
}

.pain-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
}

.pain-card span {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--navy);
}

.pain-message {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--primary-pale);
    border-radius: var(--radius-xl);
    border-right: 4px solid var(--primary);
}

.pain-message-icon {
    flex-shrink: 0;
}

.pain-message-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary);
}

.pain-message p {
    font-size: var(--font-size-base);
    color: var(--navy);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .pain-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }
    
    .pain-card {
        padding: var(--space-8);
    }
    
    .pain-card span {
        font-size: var(--font-size-base);
    }
    
    .pain-icon {
        width: 70px;
        height: 70px;
    }
}

@media (min-width: 1024px) {
    .pain-cards {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    padding: var(--space-16) 0;
    background: var(--light-cyan);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.about-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--primary);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.about-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: var(--space-2);
}

.about-subtitle {
    font-size: var(--font-size-lg);
    color: var(--primary);
    margin-bottom: var(--space-6);
}

.about-description {
    margin-bottom: var(--space-6);
}

.about-description p {
    color: var(--text-medium);
    margin-bottom: var(--space-4);
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.about-highlights svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-highlights span {
    color: var(--text-dark);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.about-card {
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-4);
    background: var(--primary-pale);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.about-card h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-2);
}

.about-card p {
    font-size: var(--font-size-sm);
    color: var(--text-medium);
}

@media (min-width: 1024px) {
    .about-grid {
        flex-direction: row;
        align-items: center;
    }
    
    .about-content {
        flex: 1.2;
    }
    
    .about-cards {
        flex: 0.8;
    }
    
    .about-title {
        font-size: var(--font-size-4xl);
    }
}

/* =====================================================
   TREATMENTS SECTION
   ===================================================== */
.treatments-section {
    padding: var(--space-16) 0;
    background: var(--white);
}

.treatments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

.treatment-card {
    padding: var(--space-8);
    background: var(--gradient-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pale);
}

.treatment-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--space-5);
}

.treatment-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
}

.treatment-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-3);
}

.treatment-card p {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.treatment-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition-base);
}

.treatment-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-base);
}

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

.treatment-link:hover svg {
    transform: translateX(-5px);
}

@media (min-width: 768px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .treatments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =====================================================
   PHILOSOPHY SECTION
   ===================================================== */
.philosophy-section {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.philosophy-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.philosophy-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.philosophy-subtitle {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.philosophy-pillars {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.pillar {
    position: relative;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pillar-number {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: 700;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-5);
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
}

.pillar h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.pillar p {
    font-size: var(--font-size-base);
    opacity: 0.8;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .philosophy-title {
        font-size: var(--font-size-3xl);
    }
    
    .philosophy-pillars {
        flex-direction: row;
    }
    
    .pillar {
        flex: 1;
    }
}

/* =====================================================
   EXPERIENCE SECTION
   ===================================================== */
.experience-section {
    padding: var(--space-16) 0;
    background: var(--white);
}

.timeline {
    position: relative;
    padding-right: var(--space-8);
}

.timeline::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-pale);
    border-radius: var(--radius-full);
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-8);
}

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

.timeline-marker {
    position: absolute;
    right: calc(-1 * var(--space-8) - 6px);
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: var(--radius-full);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    background: var(--gradient-card);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.timeline-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--primary);
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-2);
}

.timeline-content h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-1);
}

.timeline-content p {
    font-size: var(--font-size-sm);
    color: var(--text-medium);
}

.thesis-block {
    display: flex;
    gap: var(--space-5);
    margin-top: var(--space-10);
    padding: var(--space-6);
    background: var(--primary-pale);
    border-radius: var(--radius-xl);
    align-items: flex-start;
}

.thesis-icon {
    flex-shrink: 0;
}

.thesis-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary);
}

.thesis-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.thesis-content h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-2);
    font-style: italic;
}

.thesis-content p {
    font-size: var(--font-size-sm);
    color: var(--text-medium);
}

@media (min-width: 768px) {
    .timeline {
        padding-right: var(--space-12);
    }
    
    .timeline-marker {
        right: calc(-1 * var(--space-12) - 6px);
    }
    
    .timeline-content {
        padding: var(--space-6);
    }
    
    .timeline-content h4 {
        font-size: var(--font-size-lg);
    }
}

/* =====================================================
   AWARDS SECTION
   ===================================================== */
.awards-section {
    padding: var(--space-16) 0;
    background: var(--light-cyan);
}

.awards-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    overflow-x: auto;
    padding-bottom: var(--space-2);
}

.tab-btn {
    padding: var(--space-3) var(--space-6);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-medium);
    white-space: nowrap;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.award-card {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    align-items: flex-start;
}

.award-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-pale);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--star);
}

.award-card p {
    font-size: var(--font-size-base);
    color: var(--text-dark);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   TRUST SECTION
   ===================================================== */
.trust-section {
    padding: var(--space-16) 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

.trust-card {
    padding: var(--space-6);
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.trust-card.full-width {
    grid-column: 1 / -1;
}

.trust-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-4);
    background: var(--primary-pale);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--primary);
}

.trust-card h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-2);
}

.trust-card p {
    font-size: var(--font-size-sm);
    color: var(--text-medium);
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =====================================================
   REVIEWS SECTION
   ===================================================== */
.reviews-section {
    padding: var(--space-16) 0;
    background: var(--light-cyan);
}

.reviews-slider {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

.review-card {
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
}

.review-stars {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.review-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--star);
}

.review-text {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.review-author {
    display: flex;
    gap: var(--space-3);
    align-items: center;
}

.author-name {
    font-weight: 700;
    color: var(--navy);
}

.author-location {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.review-platforms {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-base);
}

.platform-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.platform-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

@media (min-width: 768px) {
    .reviews-slider {
        flex-direction: row;
    }
    
    .review-card {
        flex: 1;
    }
}

/* =====================================================
   JOURNEY SECTION
   ===================================================== */
.journey-section {
    padding: var(--space-16) 0;
    background: var(--white);
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    position: relative;
}

.journey-step {
    position: relative;
    padding: var(--space-6);
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.step-number {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: 700;
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-4);
    background: var(--primary-pale);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--primary);
}

.journey-step h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-2);
}

.journey-step p {
    font-size: var(--font-size-sm);
    color: var(--text-medium);
}

.journey-connector {
    display: none;
}

@media (min-width: 768px) {
    .journey-steps {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
    
    .journey-step {
        flex: 1;
    }
    
    .journey-connector {
        display: block;
        width: 40px;
        height: 2px;
        background: var(--primary-pale);
        align-self: center;
        margin-top: -30px;
    }
}

/* =====================================================
   CTA BAND SECTION
   ===================================================== */
.cta-band {
    padding: var(--space-16) 0;
    background: var(--gradient-primary);
    color: var(--white);
}

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

.cta-content h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: var(--font-size-3xl);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
    padding: var(--space-16) 0;
    background: var(--light-cyan);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-5) var(--space-6);
    text-align: right;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    transition: var(--transition-base);
    flex-shrink: 0;
}

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

.faq-answer {
    display: none;
    padding: 0 var(--space-6) var(--space-6);
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* =====================================================
   SOCIAL SECTION
   ===================================================== */
.social-section {
    padding: var(--space-12) 0;
    background: var(--white);
}

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

.social-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-2);
}

.social-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    margin-bottom: var(--space-8);
}

.social-links {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--medical-gray);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link.facebook:hover {
    background: #1877F2;
    color: var(--white);
}

.social-link.facebook:hover svg {
    fill: var(--white);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}

.social-link.instagram:hover svg {
    fill: var(--white);
}

.social-link.youtube:hover {
    background: #FF0000;
    color: var(--white);
}

.social-link.youtube:hover svg {
    fill: var(--white);
}

.social-link.tiktok:hover {
    background: #000000;
    color: var(--white);
}

.social-link.tiktok:hover svg {
    fill: var(--white);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
/* =====================================================
   CONTACT SECTION - PROFESSIONAL LAYOUT
   ===================================================== */
.contact-section {
    padding: var(--space-16) 0;
    background: linear-gradient(180deg, var(--light-cyan) 0%, var(--off-white) 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.contact-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    background: var(--primary);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.contact-heading {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: var(--space-4);
}

.contact-intro {
    font-size: var(--font-size-lg);
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

/* Identity Card */
.contact-identity {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.identity-card {
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.identity-logo img {
    height: 70px;
    margin: 0 auto var(--space-5);
}

.identity-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: var(--space-2);
}

.identity-card p {
    font-size: var(--font-size-base);
    color: var(--primary);
}

.identity-message {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--primary-pale);
    border-radius: var(--radius-xl);
    border-right: 4px solid var(--primary);
}

.identity-message svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
    flex-shrink: 0;
}

.identity-message p {
    font-size: var(--font-size-base);
    color: var(--navy);
    font-weight: 500;
    margin: 0;
}

/* Contact Method Cards */
.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.contact-method-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    text-align: center;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-method-card.method-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, var(--white) 100%);
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.contact-method-card.method-whatsapp:hover {
    border-color: var(--whatsapp);
}

.method-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto var(--space-4);
    background: var(--primary-pale);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-card .method-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--primary);
}

.method-whatsapp .method-icon {
    background: rgba(37, 211, 102, 0.15);
}

.method-whatsapp .method-icon svg {
    fill: var(--whatsapp);
}

.contact-method-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-2);
}

.contact-method-card p {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    margin-bottom: var(--space-3);
}

.method-link-text {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-base);
}

.method-whatsapp .method-link-text {
    color: var(--whatsapp);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
    padding: var(--space-3) var(--space-5);
    background: var(--medical-gray);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: var(--text-medium);
    transition: var(--transition-base);
}

.trust-badge:hover {
    background: var(--primary-pale);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

@media (min-width: 768px) {
    .contact-heading {
        font-size: var(--font-size-4xl);
    }
    
    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-identity {
        flex-direction: row;
    }
    
    .identity-card {
        flex: 1;
    }
    
    .identity-message {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .contact-main {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-10);
        align-items: start;
    }
    
    .contact-identity {
        grid-column: 1;
        flex-direction: column;
    }
    
    .contact-methods {
        grid-column: 2;
        grid-row: 1;
    }
}

/* =====================================================
   CONTACT CTA + MAP MERGED BLOCK
   ===================================================== */
.contact-cta-map {
    margin-top: var(--space-12);
}

.cta-map-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cta-map-cta {
    padding: var(--space-10);
    text-align: center;
}

.cta-map-cta h3 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: var(--space-3);
}

.cta-map-cta p {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    margin: 0 auto var(--space-6);
    max-width: 420px;
}

.cta-map-cta .btn {
    width: 100%;
    max-width: 320px;
}

.cta-map-map {
    position: relative;
}

.map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    background: var(--medical-gray);
}

.map-header h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--navy);
}

.map-open-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-base);
}

.map-open-link:hover {
    color: var(--primary-dark);
}

.map-open-link svg {
    width: 18px;
    height: 18px;
}

.cta-map-map .map-wrapper {
    max-width: none;
    border-radius: 0;
}

.cta-map-map .map-wrapper::before {
    padding-bottom: 56.25%;
}

@media (min-width: 768px) {
    .cta-map-card {
        flex-direction: row;
    }
    
    .cta-map-cta {
        flex: 0 0 380px;
        padding: var(--space-10) var(--space-12);
        text-align: right;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        border-inline-start: 1px solid rgba(0, 176, 209, 0.15);
    }
    
    .cta-map-cta p {
        margin: 0 0 var(--space-6);
    }
    
    .cta-map-map {
        flex: 1;
        min-width: 0;
    }
    
    .cta-map-map .map-wrapper::before {
        padding-bottom: 100%;
    }
}

@media (min-width: 1024px) {
    .cta-map-cta {
        flex: 0 0 420px;
    }
    
    .cta-map-map .map-wrapper::before {
        padding-bottom: 56.25%;
    }
}

/* Map wrapper - shared */
.map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--medical-gray);
}

.map-wrapper::before {
    content: '';
    display: block;
    padding-bottom: 56.25%;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    padding: var(--space-8) 0;
    background: var(--navy);
    color: var(--white);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
    text-align: center;
}

.footer-logo img {
    height: 55px;
    filter: brightness(0) invert(1);
}

.footer-contact {
    display: flex;
    gap: var(--space-4);
    align-items: center;
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-copyright {
    font-size: var(--font-size-sm);
    opacity: 0.6;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* =====================================================
   FLOATING WHATSAPP BUTTON
   ===================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: var(--space-6);
    left: var(--space-6);
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background: var(--whatsapp);
    animation: pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* =====================================================
   MOBILE STICKY CTA
   ===================================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-3) var(--space-4);
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    gap: var(--space-3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 700;
    transition: var(--transition-base);
}

.sticky-btn:active {
    transform: scale(0.98);
}

.sticky-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.sticky-btn-call {
    background: var(--primary);
    color: var(--white);
}

.sticky-btn-call:hover {
    background: var(--primary-dark);
}

.sticky-btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.sticky-btn-whatsapp:hover {
    background: #20BD5A;
}

@media (max-width: 767px) {
    .mobile-sticky-cta {
        display: flex;
    }
    
    .floating-whatsapp {
        display: none !important;
    }
    
    body {
        padding-bottom: 70px;
    }
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   ACCESSIBILITY
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .floating-whatsapp,
    .mobile-sticky-cta,
    .hero-scroll-indicator {
        display: none !important;
    }
}
