/* ==========================================================================
   EXODUS PHYSIOTHERAPY SPECIALITY CLINIC - STYLESHEET
   Brand Colors:
     - Royal/Bright Blue: #125CC4
     - Light/Vibrant Accent Blue: #2575FC
     - Deep Brand Navy: #071E33 / #0A2540
     - Vibrant Green: #00BA4A
   ========================================================================== */

:root {
    --color-primary: #125CC4;
    --color-primary-dark: #0A3D82;
    --color-primary-light: #2575FC;
    --color-green: #00BA4A;
    --color-green-dark: #008C38;
    --color-green-light: #38E079;
    --color-navy: #0A2338;
    --color-navy-dark: #071E33;
    
    --color-bg-light: #F8FAFC;
    --color-bg-alt: #F0F6FF;
    --color-surface: #FFFFFF;
    
    --color-text-main: #0F172A;
    --color-text-muted: #475569;
    --color-text-light: #94A3B8;
    --color-border: #E2E8F0;
    
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-amharic: 'Noto Sans Ethiopic', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-full: 9999px;
    
    --shadow-subtle: 0 4px 20px -2px rgba(18, 92, 196, 0.08);
    --shadow-md: 0 12px 32px -8px rgba(10, 35, 56, 0.12);
    --shadow-lg: 0 20px 40px -12px rgba(10, 35, 56, 0.2);
    
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-main);
    background-color: var(--color-surface);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.amharic-badge, .amharic-title, .amharic-address {
    font-family: var(--font-amharic);
    font-weight: 600;
}

/* Section Header Typography */
.section-title-wrapper {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    background: rgba(18, 92, 196, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    text-align: center;
}

.btn-primary {
    background: var(--color-green);
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(0, 186, 74, 0.25);
}

.btn-primary:hover {
    background: var(--color-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 186, 74, 0.35);
}

.btn-secondary {
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(18, 92, 196, 0.25);
}

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

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    backdrop-filter: blur(8px);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Custom Branch Call Button: White Background + Black Text */
.btn-branch-call {
    background: #FFFFFF !important;
    color: #0F172A !important;
    font-weight: 800;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-branch-call:hover {
    background: #F8FAFC !important;
    color: var(--color-primary) !important;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.full-width {
    width: 100%;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
    background: var(--color-navy-dark);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 999;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.info-item a {
    color: #FFFFFF;
    font-weight: 600;
}

.top-tagline .amharic-badge {
    background: rgba(0, 186, 74, 0.2);
    color: var(--color-green-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    border: 1px solid rgba(0, 186, 74, 0.3);
    white-space: nowrap;
}

/* ==========================================================================
   FLOATING HEADER WITH CENTERED BIGGER LOGO
   ========================================================================== */
.floating-header-wrapper {
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 1002;
    padding: 0 24px;
    pointer-events: none;
}

.floating-header {
    pointer-events: auto;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 36px -6px rgba(10, 35, 56, 0.15);
    padding: 8px 32px;
    transition: all var(--transition-normal);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Nav Groups */
.nav-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-navy);
    position: relative;
    padding: 6px 0;
}

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

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

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

/* Left Logo */
.left-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img-large {
    height: 52px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-cta {
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.hamburger-bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-navy);
    border-radius: 2px;
}

/* Mobile Menu Drawer */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 35, 56, 0.65);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1002;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right var(--transition-normal);
}

.mobile-menu-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.drawer-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--color-navy);
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.drawer-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
}

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

/* ==========================================================================
   HERO SECTION (Switching Images + Overlay Gradient Fading Left to Right)
   ========================================================================== */
.hero-section {
    background: #071E33;
    color: #FFFFFF;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
}

/* Switching Background Images Container on Right Side */
.hero-bg-images {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 0.9;
}

/* Overlay Gradient Fading Left to Right */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, 
        #071E33 0%, 
        rgba(7, 30, 51, 0.98) 38%, 
        rgba(18, 92, 196, 0.55) 65%, 
        rgba(18, 92, 196, 0.05) 100%);
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.star-icon { color: #FFD166; }

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 620px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
    margin-bottom: 40px;
    max-width: 620px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.check-icon {
    width: 22px;
    height: 22px;
    background: var(--color-green);
    color: #FFFFFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ==========================================================================
   STATS COUNTER BANNER
   ========================================================================== */
.stats-section {
    background: var(--color-bg-light);
    padding: 50px 0;
    border-bottom: 1px solid var(--color-border);
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.stats-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: #FFFFFF;
    padding: 28px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary-light);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-green);
}

.stat-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-top: 8px;
}

/* ==========================================================================
   SPECIAL DOCTOR SECTION (Single Brand Blue Hue Gradient + Line Graphics)
   ========================================================================== */
.specialist-doctor-section {
    padding: 90px 0;
    background: #FFFFFF;
}

.doctor-blue-card {
    position: relative;
    background: linear-gradient(135deg, #071E33 0%, #0F4DA8 50%, #2575FC 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    color: #FFFFFF;
    padding: 48px 48px 0 48px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Cool Vector Line Graphics */
.doctor-line-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

.doctor-card-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: flex-end;
}

/* Doctor Full Image Standing Tall on Card */
.doctor-full-image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.doctor-full-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
}

.doctor-details-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 48px;
}

.doctor-role-pill {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.doctor-name {
    font-size: 2.6rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 6px;
}

.doctor-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
}

.doctor-bio {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    margin-bottom: 28px;
}

.doctor-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    margin-bottom: 32px;
}

.pillar-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
    backdrop-filter: blur(8px);
}

.pillar-icon { color: var(--color-green-light); }

.pillar-text strong {
    display: block;
    font-size: 0.88rem;
    color: #FFFFFF;
    line-height: 1.2;
}

.pillar-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.doctor-action-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   THERAPY PROCESS SECTION
   ========================================================================== */
.process-section {
    padding: 90px 0;
    background: var(--color-bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.process-card {
    background: #FFFFFF;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all var(--transition-fast);
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.process-number {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-text-light);
}

.process-icon-box {
    width: 60px;
    height: 60px;
    background: var(--color-bg-alt);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(18, 92, 196, 0.15);
}

.process-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   SERVICES SECTION (Wavy Cards with Relevant Online Clinical Images)
   ========================================================================== */
.services-section {
    padding: 90px 0;
    background: #FFFFFF;
}

.wavy-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.wavy-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

/* Service Card Image Wrapper */
.wavy-card-top {
    padding: 0;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
}

.wavy-card-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.wavy-card:hover .service-card-img {
    transform: scale(1.05);
}

.wavy-card-header {
    padding: 20px 24px 12px;
}

.wavy-card-header .amharic-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-green-dark);
    display: block;
    margin-bottom: 4px;
}

.wavy-card-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.3;
}

/* Card SVG Divider */
.wavy-divider {
    line-height: 0;
    margin-top: -1px;
}

.wavy-divider svg {
    display: block;
    width: 100%;
    height: 38px;
}

/* Card Color Variants */
.wavy-card-blue .wavy-divider { color: var(--color-primary); }
.wavy-card-blue .wavy-card-bottom { background: var(--color-primary); color: #FFFFFF; }

.wavy-card-green .wavy-divider { color: var(--color-green); }
.wavy-card-green .wavy-card-bottom { background: var(--color-green); color: #FFFFFF; }

.wavy-card-teal .wavy-divider { color: #00A896; }
.wavy-card-teal .wavy-card-bottom { background: #00A896; color: #FFFFFF; }

.wavy-card-dark .wavy-divider { color: var(--color-navy); }
.wavy-card-dark .wavy-card-bottom { background: var(--color-navy); color: #FFFFFF; }

.wavy-card-bottom {
    padding: 0 24px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wavy-card-bottom p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    margin-bottom: 20px;
}

.wavy-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
}

.wavy-card-meta span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
}

.wavy-card-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.wavy-card-btn:hover {
    background: #FFFFFF;
    color: var(--color-navy);
    transform: translateX(4px);
}

/* ==========================================================================
   BRANCH LOCATIONS SECTION
   ========================================================================== */
.branches-section {
    padding: 90px 0;
    background: var(--color-bg-light);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.branch-card .wavy-card-top {
    padding: 32px 32px 16px;
}

.branch-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    background: var(--color-bg-alt);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    display: inline-block;
}

.branch-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--color-navy);
}

.amharic-address {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.branch-details {
    margin-bottom: 24px;
}

.branch-details p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 8px;
}

.branch-details a {
    color: #FFFFFF;
    text-decoration: underline;
}

/* ==========================================================================
   APPOINTMENT / CONTACT SECTION
   ========================================================================== */
.appointment-section {
    padding: 90px 0;
    background: #FFFFFF;
}

.appointment-card {
    background: linear-gradient(135deg, #071E33 0%, #125CC4 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 60px;
    color: #FFFFFF;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.appointment-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.appointment-info p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
}

.contact-quick-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.c-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.c-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-green-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.c-item span {
    font-size: 1.02rem;
    font-weight: 600;
}

/* Booking Form */
.appointment-form-wrapper {
    background: #FFFFFF;
    padding: 36px;
    border-radius: var(--radius-md);
    color: var(--color-navy);
    box-shadow: var(--shadow-md);
}

.appointment-form h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-navy);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-navy);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-feedback {
    margin-top: 14px;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.form-feedback.success {
    display: block;
    background: #DCFCE7;
    color: #15803D;
}

/* ==========================================================================
   FOOTER DESIGN
   ========================================================================== */
.site-footer {
    background: var(--color-navy-dark);
    color: #FFFFFF;
    position: relative;
    padding-bottom: 30px;
}

.footer-wave-top { line-height: 0; }

.footer-wave-top svg {
    width: 100%;
    height: 80px;
}

.footer-container { padding-top: 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    border-radius: 6px;
}

.footer-brand-title .f-brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    display: block;
    line-height: 1;
}

.footer-brand-title .f-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-green-light);
    letter-spacing: 1px;
}

.footer-tagline-amharic {
    font-family: var(--font-amharic);
    font-size: 0.95rem;
    color: var(--color-green-light);
    margin-bottom: 12px;
}

.footer-about-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.contact-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-chat-block p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

.btn-pill-chat {
    background: #0077B6;
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
}

.footer-phone-num a {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-green-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social-wave {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-wave-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-wave-btn:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 22, 36, 0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--color-navy);
    cursor: pointer;
}

.modal-header { margin-bottom: 24px; }
.modal-header h3 { font-size: 1.5rem; font-weight: 800; color: var(--color-navy); }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .top-bar-content {
        justify-content: center;
    }

    .top-info {
        gap: 12px;
    }

    .top-tagline {
        display: none;
    }

    .floating-header-wrapper {
        top: 0;
        padding: 0;
    }
    
    .floating-header {
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--color-border);
        max-width: 100%;
    }
    
    .nav-main { display: none; }
    .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    
    .hero-container { grid-template-columns: 1fr; }
    .hero-bg-images { width: 100%; opacity: 0.6; }
    
    .doctor-card-grid { grid-template-columns: 1fr; }
    .doctor-blue-card { padding: 32px 24px 0 24px; }
    .doctor-details-wrapper { padding-bottom: 32px; }
    
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .wavy-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .appointment-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 4px;
    }

    .top-info {
        gap: 8px;
        justify-content: center;
    }

    .info-item {
        font-size: 0.75rem;
        gap: 4px;
    }

    .info-item.desktop-only {
        display: none;
    }

    .hero-title { font-size: 2.2rem; }
    .hero-highlights { grid-template-columns: 1fr; }
    
    .stats-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .wavy-cards-grid, .branches-grid { grid-template-columns: 1fr; }
    .doctor-pillars { grid-template-columns: 1fr; }
    
    .form-row, .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }

    .appointment-card {
        padding: 32px 20px;
        gap: 32px;
    }

    .appointment-info h2 {
        font-size: 1.6rem;
    }

    .appointment-info p {
        font-size: 0.95rem;
    }

    .appointment-form-wrapper {
        padding: 24px 20px;
    }

    .appointment-form h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .top-info {
        flex-direction: column;
        gap: 2px;
    }

    .info-item {
        font-size: 0.7rem;
    }

    .stats-grid, .process-grid { grid-template-columns: 1fr; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .hero-cta-group .btn { width: 100%; }

    .appointment-card {
        padding: 24px 16px;
        gap: 24px;
    }

    .appointment-info h2 {
        font-size: 1.35rem;
    }

    .c-item span {
        font-size: 0.9rem;
    }
}
