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

/* ===== ROOT VARIABLES ===== */
:root {
    --color-primary: #143f67;
    --color-secondary: #01abe1;
    --color-accent: #f79531;
    --color-white: #ffffff;
    --color-light: #f8fafc;
    --color-bg: #f1f5f9;
    --color-text: #1e293b;
    --color-muted: #64748b;
    --color-border: #e2e8f0;
    --color-dark-card: #0d2f4f;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 40px;
}

/* ===== BASE ===== */
html {
    scroll-behavior: smooth;
}

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

/* ===== FONTS ===== */
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DM_Sans/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 1000;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand/Quicksand-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 700;
}

/* ===== MATERIAL ICONS ===== */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}

/* ===== CONTAINER ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

/* ===== NAV ===== */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img {
    height: 120px;
    width: auto;
    transform: scale(1.2);
    transform-origin: left center;
    margin-top: 7px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-secondary);
    font-weight: 600;
}

.nav-btn {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}

.nav-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-primary);
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 99;
    justify-content: space-between;
    align-items: center;
    padding: 4px;
    box-sizing: border-box;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #64748b;
    font-size: 10px;
    font-weight: 500;
    padding: 6px 2px;
    border-radius: 12px;
    transition: all 0.2s;
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
    text-align: center;
}

.mobile-nav-item span.material-symbols-outlined {
    font-size: 24px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: #60a5fa;
    background: #1e293b;
}

/* ===== SECTION BASE ===== */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--color-light);
}

.section-white {
    background: var(--color-white);
}

.section-primary {
    background: var(--color-primary);
}

.section-bg {
    background: var(--color-bg);
}

/* ===== SECTION HEADING ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.section-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
    animation: pulse 2s infinite;
}

.section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--color-muted);
    max-width: 600px;
    line-height: 1.7;
}

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

.text-center .section-sub {
    margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
    min-height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--color-primary);
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20, 63, 103, 0.95) 0%, rgba(20, 63, 103, 0.85) 30%, rgba(20, 63, 103, 0.4) 65%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 60px 0;
}

.hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

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

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #0095c8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 171, 225, 0.3);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

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

.hero-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-stat-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    overflow: hidden;
}

.hero-stat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-stat-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}

/* ===== MISSION CARDS (BENTO) ===== */
.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.bento-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.bento-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.bento-card.dark {
    background: var(--color-primary);
}

.bento-card-icon {
    width: 64px;
    height: 64px;
    background: var(--color-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: background 0.4s;
}

.bento-card:hover .bento-card-icon {
    background: var(--color-secondary);
    color: var(--color-white);
}

.bento-card-icon .material-symbols-outlined {
    font-size: 30px;
    color: var(--color-primary);
    transition: color 0.4s;
}

.bento-card:hover .bento-card-icon .material-symbols-outlined {
    color: var(--color-white);
}

.bento-card.dark .bento-card-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bento-card.dark .bento-card-icon .material-symbols-outlined {
    color: var(--color-secondary);
}

.bento-card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.bento-card:hover .bento-card-title {
    color: var(--color-secondary);
}

.bento-card.dark .bento-card-title {
    color: var(--color-white);
}

.bento-card-text {
    font-size: 16px;
    color: var(--color-muted);
    line-height: 1.7;
    max-width: 420px;
}

.bento-card.dark .bento-card-text {
    color: rgba(255, 255, 255, 0.75);
}

/* ===== TREATMENTS CARDS ===== */
.treatments-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

.treatments-link {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    white-space: nowrap;
}

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

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

.treatment-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all 0.6s;
}

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

.treatment-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.treatment-card:hover img {
    transform: scale(1.1);
}

.treatment-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-primary) 30%, rgba(20, 63, 103, 0.3) 70%, transparent);
    opacity: 0.85;
    transition: opacity 0.5s;
}

.treatment-card:hover .treatment-overlay {
    opacity: 0.97;
}

.treatment-info {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.treatment-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.treatment-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    margin-bottom: 0;
}

.treatment-card:hover .treatment-desc {
    max-height: 120px;
    margin-bottom: 12px;
}

.treatment-more {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-secondary);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.1s;
}

.treatment-card:hover .treatment-more {
    opacity: 1;
    transform: translateY(0);
}

/* ===== DOCTOR CARD ===== */
.doctor-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    gap: 48px;
    align-items: center;
    transition: all 0.5s;
}

.doctor-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    transform: translateY(-6px);
}

.doctor-img-wrap {
    width: 33%;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 8px solid var(--color-white);
    box-shadow: var(--shadow-lg);
    transition: transform 0.6s;
}

.doctor-card:hover .doctor-img-wrap {
    transform: scale(1.04) translateY(-6px);
}

.doctor-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.doctor-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.doctor-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
    transition: color 0.3s;
}

.doctor-card:hover .doctor-name {
    color: var(--color-secondary);
}

.doctor-degree {
    font-size: 17px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 16px;
}

.doctor-fellowship {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(1, 171, 225, 0.08);
    border: 1px solid rgba(1, 171, 225, 0.1);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--color-text);
}

.doctor-fellowship .material-symbols-outlined {
    color: var(--color-secondary);
    font-size: 18px;
}

.doctor-bio {
    font-size: 16px;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.doctor-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.stat-box {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.stat-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-num {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
}

/* ===== CONTACT SECTION (HOME) ===== */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
}

.contact-info-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.25;
    white-space: nowrap;
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    transition: background 0.3s;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(1, 171, 225, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-info-item:hover .contact-icon {
    background: var(--color-secondary);
}

.contact-icon .material-symbols-outlined {
    color: var(--color-secondary);
    font-size: 24px;
    transition: color 0.3s;
}

.contact-info-item:hover .contact-icon .material-symbols-outlined {
    color: var(--color-white);
}

.contact-item-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s;
}

.contact-item-value:hover {
    color: var(--color-secondary);
}

.contact-item-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* ===== FORM CARD ===== */
.form-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.form-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    transform: translateY(-4px);
}

.form-card-watermark {
    position: absolute;
    right: -40px;
    top: -40px;
    font-size: 240px;
    color: rgba(0, 0, 0, 0.02);
    z-index: 0;
    pointer-events: none;
    transform: rotate(15deg);
}

.form-title,
.form-sub,
.form-row,
.form-group {
    position: relative;
    z-index: 1;
}

.form-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.form-sub {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 32px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.form-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 20px;
    pointer-events: none;
}

.input-with-icon .select-chevron {
    position: absolute;
    right: 16px;
    color: #94a3b8;
    font-size: 20px;
    pointer-events: none;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 16px;
    color: var(--color-text);
    outline: none;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
}

.input-with-icon .form-input,
.input-with-icon .form-select {
    padding-left: 48px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: rgba(1, 171, 225, 0.4);
    box-shadow: 0 4px 12px rgba(1, 171, 225, 0.08);
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23475569" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpolyline points="6 9 12 15 18 9"%3E%3C/polyline%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

.btn-submit {
    width: 100%;
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
}

.btn-submit:hover {
    background: #0195c4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(1, 171, 225, 0.2);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0a1f33;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-footer-socials {
    display: none;
}

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

.footer-social-btn:hover {
    background: var(--color-secondary);
}

.footer-social-btn .material-symbols-outlined,
.footer-social-btn i {
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    font-size: 12px;
    color: #64748b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== ABOUT PAGE ===== */

/* Hero with BG image */
.hero-image-bg {
    background: var(--color-primary);
    min-height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-image-bg .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% 48%;
    opacity: 1;
}

.hero-image-bg .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20, 63, 103, 0.95) 0%, rgba(20, 63, 103, 0.85) 30%, rgba(20, 63, 103, 0.4) 65%, transparent 100%);
}

.hero-page-badge {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.hero-page-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-page-title .accent {
    color: var(--color-accent);
}

.hero-page-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 520px;
    line-height: 1.7;
}

/* Pain indicator */
.pain-indicator {
    position: absolute;
    left: 68%;
    top: 48%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-ring {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(249, 115, 22, 0.8);
    animation: ping 1.5s infinite;
}

.pain-glow {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(234, 88, 12, 0.25);
    filter: blur(16px);
}

.pain-dot {
    width: 16px;
    height: 16px;
    background: transparent;
    border-radius: 50%;
    border: 3px solid #f97316;
    box-shadow: 0 0 16px rgba(249, 115, 22, 0.8);
}

/* Founder section */
.founder-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    gap: 32px;
    align-items: center;
    transition: all 0.5s;
}

.founder-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    transform: translateY(-6px);
}

.founder-img {
    width: 36%;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 8px solid var(--color-white);
    box-shadow: var(--shadow-lg);
    transition: transform 0.6s;
}

.founder-card:hover .founder-img {
    transform: scale(1.04) translateY(-6px);
}

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

.founder-content {
    flex: 1;
}

/* Vision/Mission cards */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vm-card {
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    padding: 52px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s;
}

.vm-watermark {
    position: absolute;
    right: -40px;
    bottom: -40px;
    font-size: 280px;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    font-variation-settings: 'FILL' 1;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(20, 63, 103, 0.25);
}

.vm-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.vm-card:hover .vm-icon-wrap {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.12);
}

.vm-icon-wrap .material-symbols-outlined {
    font-size: 36px;
    color: var(--color-secondary);
}

.vm-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.vm-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* Facility images */
.facility-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1.2fr 0.8fr;
    gap: 24px;
    height: 700px;
}

.facility-img-main {
    grid-row: span 2;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.facility-img-main img,
.facility-img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.facility-img-main:hover img,
.facility-img-sm:hover img {
    transform: scale(1.05);
}

.facility-img-sm {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Values cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 40px rgba(30, 41, 59, 0.05);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(30, 41, 59, 0.12);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon .material-symbols-outlined {
    font-size: 32px;
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Card 1: Primary (Dark Blue) */
.value-card:nth-child(1) .value-icon {
    background: rgba(20, 63, 103, 0.08);
}

.value-card:nth-child(1) .value-icon .material-symbols-outlined,
.value-card:nth-child(1) .value-title {
    color: var(--color-primary);
}

/* Card 2: Accent (Orange) */
.value-card:nth-child(2) .value-icon {
    background: rgba(249, 115, 22, 0.1);
}

.value-card:nth-child(2) .value-icon .material-symbols-outlined,
.value-card:nth-child(2) .value-title {
    color: var(--color-accent);
}

/* Card 3: Secondary (Cyan) */
.value-card:nth-child(3) .value-icon {
    background: rgba(1, 171, 225, 0.1);
}

.value-card:nth-child(3) .value-icon .material-symbols-outlined,
.value-card:nth-child(3) .value-title {
    color: var(--color-secondary);
}



/* ===== CTA BANNER ===== */
.cta-box {
    background: var(--color-primary);
    border-radius: 32px;
    padding: 64px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-watermark {
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 280px;
    color: rgba(255, 255, 255, 0.035);
    z-index: 0;
    pointer-events: none;
    font-variation-settings: 'FILL' 1;
}

.cta-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-accent {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-accent:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(247, 149, 49, 0.3);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ===== CONTACT PAGE ===== */
.contact-content {
    padding-bottom: 80px;
}

.form-card {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    padding: 40px;
    border-radius: 24px;
}

.form-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.form-sub {
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 16px;
}

.contact-hero {
    padding: 80px 0;
    text-align: center;
    background: var(--color-white);
}

.contact-hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.contact-hero-desc {
    font-size: 18px;
    color: var(--color-muted);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.contact-card-blue {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.contact-card-blue:hover {
    transform: translateY(-4px);
}

.contact-card-white {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.contact-card-white:hover {
    transform: translateY(-4px);
}

.contact-card-grey {
    background: var(--color-light);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: transform 0.3s;
}

.contact-card-grey:hover {
    transform: translateY(-4px);
}

.contact-card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card-icon-wrap.teal {
    background: #e6fbf9;
}

.contact-card-icon-wrap.white {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.contact-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

.contact-card-link {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: block;
}

.contact-card-link-small {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    transition: gap 0.3s;
}

.contact-card-link-small:hover {
    gap: 10px;
}

/* Map and form layout */
.contact-form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--color-white);
    min-height: 300px;
    flex-grow: 1;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    min-height: 300px;
}

.hours-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

@keyframes spin-clock {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hours-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hours-title .material-symbols-outlined {
    animation: spin-clock 6s linear infinite;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 16px;
}

.hours-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.hours-day {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-text);
    font-size: 15px;
}

.hours-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
    flex-shrink: 0;
}

.hours-dot.closed {
    background: #f87171;
}

.hours-time {
    background: rgba(20, 63, 103, 0.06);
    color: var(--color-primary);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid rgba(20, 63, 103, 0.1);
}

.hours-time.closed {
    background: #fef2f2;
    color: #ef4444;
    border-color: #fecaca;
}

.hours-note {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: var(--color-light);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.hours-note .material-symbols-outlined {
    color: var(--color-secondary);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.hours-note p {
    font-size: 12.5px;
    color: var(--color-muted);
    font-style: italic;
    line-height: 1.5;
    white-space: nowrap;
    letter-spacing: -0.1px;
}

/* Emergency section */
.emergency-box {
    background: var(--color-primary);
    border-radius: 48px;
    padding: 56px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.4s;
}

.emergency-box:hover {
    transform: translateY(-6px);
}

.emergency-content {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
}

.emergency-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 48px;
}

.emergency-icon-wrap .material-symbols-outlined {
    font-size: 44px;
    color: #f87171;
    animation: pulse 2s infinite;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.emergency-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse 1s infinite;
}

.emergency-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    white-space: nowrap;
}

.emergency-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    max-width: 550px;
}

.emergency-call-btn {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-top: 40px;
}

.emergency-call-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}

.emergency-call-number {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ef4444;
    color: var(--color-white);
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 22px;
    font-weight: 700;
    border: 1px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
    transition: all 0.3s;
    white-space: nowrap;
}

.emergency-call-number:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* ===== TREATMENTS PAGE ===== */
.treatments-hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.treatments-hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.treatments-hero-title .accent {
    color: var(--color-accent);
}

.treatments-hero-desc {
    font-size: 17px;
    color: var(--color-muted);
    max-width: 800px;
    line-height: 1.7;
}

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

.service-card {
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
    perspective: 1000px;
    height: 380px;
}

.service-card:hover {
    box-shadow: none;
    transform: none;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: var(--radius-lg);
}

.service-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.flip-card-front {
    background: var(--color-white);
    border: 1px solid var(--color-border);
}

.front-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.front-overlay {
    position: absolute;
    inset: 0;
    padding: 40px 24px 24px;
    background: linear-gradient(to top, var(--color-primary) 15%, rgba(20, 63, 103, 0.5) 60%, rgba(20, 63, 103, 0.1) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.front-title {
    color: var(--color-white);
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    margin: 0;
    max-width: 80%;
}

.front-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    line-height: 0.8;
}

.flip-card-back {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transform: rotateY(180deg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 72px;
    font-weight: 900;
    color: var(--color-border);
    line-height: 1;
    transition: all 0.4s;
    pointer-events: none;
}

.service-card:hover .service-number {
    color: var(--color-light);
    transform: translateY(-6px) scale(1.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.service-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--color-primary);
    transition: color 0.4s;
}

.service-card:hover .service-icon .material-symbols-outlined {
    color: var(--color-white);
}

.service-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.7;
}

/* Philosophy section */
.philosophy-grid {
    display: flex;
    gap: 64px;
    align-items: center;
}

.philosophy-img-side {
    width: 50%;
    flex-shrink: 0;
    position: relative;
}

.philosophy-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 8px solid var(--color-white);
    box-shadow: var(--shadow-xl);
    transition: all 0.6s;
}

.philosophy-img-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(11, 28, 62, 0.15);
}

.philosophy-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s;
}

.philosophy-img-wrap:hover img {
    transform: scale(1.04);
}

.philosophy-badge-float {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.philosophy-badge-float .material-symbols-outlined {
    font-size: 28px;
    color: var(--color-secondary);
}

.philosophy-badge-num {
    font-family: 'Quicksand', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.philosophy-badge-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
}

.philosophy-content {
    flex: 1;
}

.philosophy-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.philosophy-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.philosophy-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    cursor: default;
}

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

.philosophy-item-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
}

.philosophy-item-icon .material-symbols-outlined {
    font-size: 26px;
    color: var(--color-primary);
    transition: color 0.4s;
}

.philosophy-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
    transition: color 0.4s;
}

/* Hover Effect 1: Green */
.philosophy-item:nth-child(1):hover .philosophy-item-icon {
    background: rgba(16, 185, 129, 0.1);
    transform: scale(1.1);
}

.philosophy-item:nth-child(1):hover .philosophy-item-icon .material-symbols-outlined,
.philosophy-item:nth-child(1):hover .philosophy-item-title {
    color: #10b981;
}

/* Hover Effect 2: Cyan */
.philosophy-item:nth-child(2):hover .philosophy-item-icon {
    background: rgba(1, 171, 225, 0.1);
    transform: scale(1.1);
}

.philosophy-item:nth-child(2):hover .philosophy-item-icon .material-symbols-outlined,
.philosophy-item:nth-child(2):hover .philosophy-item-title {
    color: var(--color-secondary);
}

/* Hover Effect 3: Orange */
.philosophy-item:nth-child(3):hover .philosophy-item-icon {
    background: rgba(249, 115, 22, 0.1);
    transform: scale(1.1);
}

.philosophy-item:nth-child(3):hover .philosophy-item-icon .material-symbols-outlined,
.philosophy-item:nth-child(3):hover .philosophy-item-title {
    color: var(--color-accent);
}

.philosophy-item-desc {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.65;
}

/* ===== DOCTORS PAGE ===== */
/* ===== NEW CURVED HERO ===== */
.doctors-hero-curved {
    position: relative;
    padding: 125px 0 240px;
    /* Space for the stats bar inside the section */
    background: #ffffff;
    overflow: hidden;
}

.doctors-hero-curved-bg {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 85%;
    background: #042446;
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.doctors-hero-image {
    position: absolute;
    top: 57px;
    left: 16%;
    height: 90%;
    max-height: 700px;
    z-index: 15;
    pointer-events: none;
}

.doctors-hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin-left: auto;
    padding-right: 0;
}

.doctors-hero-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #01abe1;
    line-height: 1.1;
    margin-bottom: 24px;
}

.doctors-hero-creds {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.doctors-hero-creds strong {
    font-weight: 700;
}

.doctors-hero-bio {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.doctors-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #01abe1;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    margin-bottom: 60px;
}

.doctors-hero-btn:hover {
    background: #0095c8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1, 171, 225, 0.35);
}

.doctors-hero-stats {
    position: absolute;
    bottom: 20px;
    /* Keeps it inside the section, sitting on the white space */
    left: 50%;
    /* Center horizontally */
    transform: translateX(-50%);
    /* Adjust to true center */
    width: 90%;
    /* Much wider */
    max-width: 1100px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Move items to the right side */
    background: linear-gradient(135deg, #4dd4f0 0%, #01abe1 100%);
    border-radius: 20px;
    padding: 40px 12%;
    /* Added padding so it's aligned nicely on the right */
    box-shadow: 0 16px 40px rgba(1, 171, 225, 0.2);
}

.doctors-hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-width: 140px;
}

.doctors-hero-stats .stat-num {
    font-family: 'Quicksand', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.doctors-hero-stats .stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctors-hero-stats .stat-divider {
    width: 2px;
    height: 80px;
    background: var(--color-white);
    margin: 0 40px;
}

/* Doctor detail section */
.doctor-detail-grid {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 60px;
    align-items: start;
}

.doctor-philosophy-card {
    background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary));
    border-radius: 40px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(20, 63, 103, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    aspect-ratio: 2.2 / 4;
}

.philosophy-quote-watermark {
    position: absolute;
    right: 10px;
    top: -16px;
    opacity: 0.05;
    transition: transform 0.7s;
    pointer-events: none;
}

.doctor-philosophy-card:hover .philosophy-quote-watermark {
    transform: scale(1.1) rotate(12deg);
}

.philosophy-quote-watermark span {
    font-size: 120px;
    color: #fff;
    line-height: 1;
}

.philosophy-glow {
    position: absolute;
    left: -48px;
    bottom: -48px;
    width: 192px;
    height: 192px;
    background: rgba(1, 171, 225, 0.3);
    filter: blur(50px);
    border-radius: 50%;
    pointer-events: none;
}

.philosophy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-badge .badge-text {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
}

.philosophy-main-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 34px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
}

.philosophy-quote-box {
    margin-bottom: 28px;
    position: relative;
}

.philosophy-quote-box .quote-mark {
    position: absolute;
    left: -20px;
    top: -4px;
    color: var(--color-secondary);
    font-size: 24px;
    opacity: 1;
    line-height: 1;
}

.philosophy-quote-box .quote-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 10;
}

.philosophy-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0f2b48;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon span {
    color: var(--color-secondary);
    font-size: 22px;
}

.feature-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 700;
}

.feature-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* QUALIFICATIONS */
.qualifications-wrapper {
    padding: 24px 0;
}

.qualifications-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.qualifications-header .cred-line {
    width: 32px;
    height: 1px;
    background: var(--color-secondary);
}

.qualifications-header .cred-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.qualifications-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 32px;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
}

.qual-card {
    position: relative;
    overflow: hidden;
    padding: 36px 32px;
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

.qual-card:hover {
    border-color: rgba(1, 171, 225, 0.3);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.qual-card-bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(to bottom left, rgba(1, 171, 225, 0.05), transparent);
    border-top-right-radius: 16px;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.qual-card:hover .qual-card-bg-gradient {
    opacity: 1;
}

.qual-card-left-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-secondary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s;
}

.qual-card:hover .qual-card-left-border {
    transform: scaleY(1);
}

.qual-card-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.qual-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: all 0.3s;
}

.qual-card:hover .qual-icon {
    color: var(--color-secondary);
}

.qual-text {
    flex: 1;
}

.qual-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 4px;
    font-weight: 700;
    transition: color 0.3s;
}

.qual-card:hover .qual-title {
    color: var(--color-secondary);
}

.qual-subtitle {
    font-size: 13px;
    color: var(--color-text);
    font-weight: 600;
    line-height: 1.5;
}

/* CLINICAL SPECIALIZATIONS */
.clinical-main-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.clinical-main-desc {
    font-size: 16px;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.spec-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.spec-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.spec-watermark {
    position: absolute;
    right: -24px;
    bottom: -24px;
    font-size: 160px;
    color: var(--color-bg);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.5s;
}

.spec-card:hover .spec-watermark {
    transform: scale(1.1) rotate(-5deg);
}

.spec-icon {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.spec-icon span {
    color: var(--color-primary);
    font-size: 36px;
}

.spec-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.spec-desc {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.spec-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-check span {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.spec-list li span:last-child {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 400;
}

/* IMPACT STATS */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px 0;
}

.impact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-card:hover,
.impact-card.active-hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.impact-watermark {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.impact-card:hover .impact-watermark,
.impact-card.active-hover .impact-watermark {
    transform: scale(1.1) rotate(-10deg);
    color: rgba(255, 255, 255, 0.06);
}

.impact-icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.impact-card:hover .impact-icon-wrap,
.impact-card.active-hover .impact-icon-wrap {
    background: var(--color-secondary);
}

.impact-icon-wrap span {
    color: #fff;
    font-size: 64px;
    opacity: 0.9;
}

.impact-num {
    font-family: 'Quicksand', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.1;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.impact-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 1;
    font-family: serif;
}

/* GOOGLE REVIEWS */
.google-reviews-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.google-reviews-desc {
    font-size: 16px;
    color: var(--color-text);
}

.google-reviews-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.reviews-nav {
    display: flex;
    gap: 16px;
}

.review-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--color-primary);
}

.review-nav-btn:hover {
    background: var(--color-bg);
    border-color: rgba(0, 0, 0, 0.1);
}

.reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 32px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(50% - 16px);
    scroll-snap-align: start;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s;
}

.review-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: rgba(1, 171, 225, 0.2);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.review-author {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-primary);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars span {
    color: #fbbc05;
    font-size: 20px;
}

.review-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
}

/* QUICK INQUIRY CTA */
.inquiry-cta-box {
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(20, 63, 103, 0.15);
    align-items: center;
}

.inquiry-cta-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 400px;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 0;
}

.inquiry-cta-content {
    position: relative;
    z-index: 1;
    margin-left: 40px;
}

.inquiry-cta-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 999px;
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: serif;
    margin-bottom: 24px;
}

.inquiry-cta-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.inquiry-cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 32px;
}

.inquiry-cta-buttons {
    display: flex;
    gap: 16px;
}

.btn-cyan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-cyan:hover {
    background: #0195c4;
    transform: translateY(-2px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.inquiry-cta-form-box {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.inquiry-form-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.inquiry-form-header span {
    color: var(--color-secondary);
    font-size: 24px;
}

.inquiry-form-header h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}

.inquiry-cta-form-box .form-group {
    margin-bottom: 20px;
}

.inquiry-cta-form-box label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-muted);
    font-family: serif;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.inquiry-cta-form-box input,
.inquiry-cta-form-box select {
    width: 100%;
    background: var(--color-bg);
    border: none;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-text);
    outline: none;
    appearance: none;
}

.inquiry-cta-form-box input::placeholder {
    color: #94a3b8;
}

.inquiry-cta-form-box .custom-select-wrapper {
    position: relative;
}

.inquiry-cta-form-box .select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    font-size: 20px;
}

.btn-submit-dark {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit-dark:hover {
    background: #0d2d4a;
    text-decoration: none !important;
}

/* EXPERT LAYOUT */
.expert-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.expert-img-col {
    position: relative;
    padding: 10px;
}

.expert-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.expert-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    padding: 6px 16px;
    border-radius: 999px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: serif;
    margin-bottom: 24px;
}

.expert-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.expert-degree {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

.expert-fellowship {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background: var(--color-white);
    color: var(--color-accent);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 32px;
}

.expert-fellowship span.material-symbols-outlined {
    font-size: 18px;
    color: var(--color-secondary);
}

.expert-bio {
    font-size: clamp(13px, 3.8vw, 16px);
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .desktop-br {
        display: none;
    }
}

.expert-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.expert-stat-box {
    flex: 1;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.expert-stat-box:hover {
    background: var(--color-white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.expert-stat-watermark {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 80px;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    pointer-events: none;
}

.expert-stat-box .stat-content {
    position: relative;
    z-index: 1;
}

.expert-stat-num {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.expert-stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* MISSION BENTO GRID */
.mission-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.m-card {
    position: relative;
    border-radius: 32px;
    padding: 48px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m-span-2 {
    grid-column: span 2;
}

.m-span-1 {
    grid-column: span 1;
}

.m-white {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.m-white:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.m-dark {
    background: var(--color-primary);
    box-shadow: 0 10px 40px rgba(20, 63, 103, 0.15);
}

.m-dark:hover {
    box-shadow: 0 20px 60px rgba(20, 63, 103, 0.25);
    transform: translateY(-4px);
}

.m-watermark {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 200px;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.6s ease;
    font-variation-settings: 'FILL' 1;
}

.m-card:hover .m-watermark {
    transform: scale(1.05) rotate(-5deg);
}

.m-white .m-watermark {
    color: var(--color-bg);
}

.m-dark .m-watermark {
    color: rgba(255, 255, 255, 0.04);
}

.m-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.m-card-header .m-icon-box,
.m-card-header .m-title {
    margin-bottom: 0 !important;
}

.m-card-header .m-icon-box {
    flex-shrink: 0;
}

.m-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.m-white .m-icon-box {
    background: var(--color-bg);
}

.m-white .m-icon-box span {
    color: var(--color-primary);
    font-size: 32px;
}

.m-dark .m-icon-box {
    background: rgba(255, 255, 255, 0.1);
}

.m-dark .m-icon-box span {
    color: var(--color-secondary);
    font-size: 32px;
}

.m-white:hover .m-icon-box {
    background: rgba(1, 171, 225, 0.1);
}

.m-white:hover .m-icon-box span {
    color: var(--color-secondary);
}

.m-dark:hover .m-icon-box {
    background: var(--color-secondary);
}

.m-dark:hover .m-icon-box span {
    color: var(--color-primary);
}

.m-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.m-white .m-title {
    color: var(--color-primary);
}

.m-dark .m-title {
    color: var(--color-white);
}

.m-text {
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.m-white .m-text {
    color: var(--color-text);
}

.m-dark .m-text {
    color: rgba(255, 255, 255, 0.8);
}

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

.gallery-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 260px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-img-wrap:hover .gallery-img {
    transform: scale(1.05);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

#preloader-video {
    width: 250px;
    max-width: 80%;
    height: auto;
    object-fit: contain;
}