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

:root {
    --primary: #7A2364;
    --primary-mid: #92377E;
    --primary-light: #B45A9A;
    --primary-lighter: #E0B8D4;
    --primary-pale: #F5E8F0;
    --primary-dark: #5C1049;
    --accent: #00AEAA;
    --accent-light: #00CBC6;
    --accent-pale: #E0F7F6;
    --teal: #00A5A0;
    --text-dark: #2E0E26;
    --text-body: #4D2A42;
    --text-muted: #8A6A7E;
    --white: #FFFFFF;
    --off-white: #FDF7FB;
    --card-bg: #FFFFFF;
    --border: #EADAE4;
    --shadow-sm: 0 2px 10px rgba(122, 35, 100, 0.08);
    --shadow-md: 0 8px 32px rgba(122, 35, 100, 0.12);
    --shadow-lg: 0 20px 60px rgba(122, 35, 100, 0.14);
    --shadow-glow: 0 0 40px rgba(122, 35, 100, 0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --gradient: linear-gradient(135deg, #7A2364 0%, #92377E 40%, #B45A9A 100%);
    --gradient-vivid: linear-gradient(135deg, #5C1049 0%, #7A2364 30%, #A8478C 70%, #C76EAC 100%);
    --gradient-soft: linear-gradient(135deg, #F5E8F0 0%, #EEDCE7 50%, #F8F0F5 100%);
    --gradient-hero: linear-gradient(160deg, #FDF7FB 0%, #F5E8F0 25%, #EEDCE7 50%, #F5E8F0 75%, #FDF7FB 100%);
    --gradient-dark: linear-gradient(135deg, #2E0E26 0%, #4A1A3C 50%, #5C1049 100%);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-body);
    background: var(--off-white);
    overflow-x: hidden;
    line-height: 1.7
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    line-height: 1.25
}

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

a {
    text-decoration: none;
    color: inherit
}

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

/* ===================== SECTION HEADERS ===================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-pale);
    padding: 7px 18px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    border: 1px solid var(--primary-lighter)
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 16px;
    letter-spacing: -0.3px
}

.section-title .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

@media (max-width: 768px) {
    .section-tag {
        font-size: 0.68rem;
        padding: 5px 14px;
        letter-spacing: 1px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        width: fit-content;
        text-align: center;
    }

    .section-header.center, .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.92rem;
        margin: 0 auto;
    }
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8
}

.section-header {
    margin-bottom: 60px;
    text-align: center
}

.section-header .section-subtitle {
    margin: 0 auto
}

/* ===================== ANIMATIONS ===================== */
.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease
}

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

.fade-up:nth-child(2) {
    transition-delay: 0.1s
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s
}

.fade-up:nth-child(4) {
    transition-delay: 0.3s
}

.fade-up:nth-child(5) {
    transition-delay: 0.4s
}

.fade-up:nth-child(6) {
    transition-delay: 0.5s
}

/* ===================== DOCTOR PLACEHOLDER ===================== */
.doctor-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 1px solid var(--border);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.doctor-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--primary-light);
    opacity: 0.6;
}

/* ===================== SPACING UTILITIES ===================== */
.py-section { padding: 100px 0; }
.py-section-sm { padding: 60px 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }

@media (max-width: 768px) {
    .py-section { padding: 60px 0; }
    .py-section-sm { padding: 40px 0; }
}
