:root {
    --black: #111111;
    --blue: #0EA5E9;
    --gray: #f5f7fa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background: #fff;
    line-height: 1.6;
}

img {
    vertical-align: middle;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

section {
    scroll-margin-top: 90px;
}

.section-bg {
    background: #f5f7fa !important;
}

/* =========================
   HEADER
========================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    color: var(--black);
    display: inline-flex;
    align-items: center;
}

.logo:hover {
    color: var(--black);
}

.accent {
    color: var(--blue);
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--blue);
}

.call-btn {
    font-family: 'Inter', sans-serif;
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s ease;
    text-decoration: none;
}

.call-btn:hover {
    background: #0284c7;
}

/* =========================
   GLOBAL SECTIONS
========================= */
main > section:not(.hero) {
    padding: 90px 0;
}

h2 {
    font-size: 32px;
    margin-bottom: 28px;
    text-align: center;
}

.section-title {
    margin-top: 28px;
}

.section-subtitle {
    text-align: center;
    color: #5a5a5a;
    max-width: 820px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.7;
}

/* =========================
   HERO
========================= */
.hero {
    padding: 160px 0 120px;
    background: #ffffff;
    text-align: center;
}

.hero-inner {
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #e6f6fe;
    color: var(--blue);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: var(--blue);
    flex: 0 0 auto;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 720px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease;
}

.btn-primary:hover {
    background: #0284c7;
}

.btn-secondary {
    border: 2px solid #ddd;
    color: var(--black);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat strong {
    display: block;
    font-size: 32px;
    color: var(--blue);
    font-weight: 700;
}

.stat span {
    font-size: 14px;
    color: #777;
}

/* =========================
   OWNER
========================= */
.owner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.owner img {
    width: 100%;
    border-radius: 14px;
}

/* =========================
   ABOUT
========================= */
.about {
    background: #f5f7fa;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.feature {
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.10);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: #e6f6fe;
    margin-bottom: 14px;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.feature:hover h3 {
    color: var(--blue);
}

.feature p {
    color: #666;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================
   SERVICES (simple links)
========================= */
.services-simple {
    background: #ffffff;
}

.services-simple .section-subtitle {
    max-width: 720px;
    margin: 0 auto 60px;
}

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

.service-column h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-group-link {
    text-decoration: none;
    color: var(--black);
    transition: color 0.2s ease;
}

.service-group-link:hover {
    color: var(--blue);
}

.service-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-column li {
    margin-bottom: 10px;
}

.service-column li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.2s ease;
}

.service-column li a:hover {
    color: var(--blue);
}

/* =========================
   DOCTORS
========================= */

.team {
    background: #ffffff;
}

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

.team-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.team-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 14px;
}

.team-info strong {
    display: block;
    font-size: 17px;
    margin-bottom: 4px;
}

.team-info span {
    display: block;
    color: var(--blue);
    font-size: 14px;
    margin-bottom: 2px;
}

.team-info small {
    color: #666;
    font-size: 13px;
}

.team-item:hover strong {
    text-decoration: underline;
}

.doctor-page {
    padding: 0 0 50px;
}

.doctor-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 14px;
    align-items: start;
}

.doctor-aside {
    position: sticky;
    top: 90px;
}

.doctor-photo-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
}

.doctor-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.doctor-meta {
    margin-top: 14px;
    border: 1px solid #eee;
    border-radius: 18px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.04);
}

.doctor-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.doctor-meta-row:last-child {
    border-bottom: none;
}

.doctor-meta-label {
    color: #777;
    font-size: 13px;
}

.doctor-meta-value {
    font-weight: 700;
    color: #222;
}

.doctor-cta {
    width: 100%;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 12px;
}

.doctor-content {
    border: 1px solid #eee;
    border-radius: 18px;
    background: #fff;
    padding: 26px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.04);
}

.doctor-content-title {
    margin-bottom: 14px;
    font-size: 22px;
}

.doctor-description {
    color: #555;
    line-height: 1.85;
}

/* Responsive */
@media (max-width: 980px) {
    .doctor-layout {
        grid-template-columns: 1fr;
    }

    .doctor-aside {
        position: static;
    }

    .doctor-photo {
        height: 360px;
    }
}


/* =========================
   CONTACTS
========================= */
/* Contact section */
.contact-section {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
}

.contact-card {
    background: #fff;
}

.contact-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-lead {
    color: #666;
    line-height: 1.7;
    margin-bottom: 22px;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 14px;
    border: 1px solid #eee;
    border-radius: 14px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #e6f6fe;
    color: var(--blue);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-label {
    font-size: 12px;
    color: #777;
}

.contact-value {
    font-weight: 600;
}

.contact-link {
    font-weight: 700;
    color: #222;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--blue);
}

.contact-social {
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.social-title {
    font-weight: 700;
    margin-bottom: 12px;
}

.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #e9eef5;
    border-radius: 12px;
    text-decoration: none;
    color: #222;
    background: #f9fbff;
}

.social-btn svg {
    width: 18px;
    height: 18px;
    color: var(--blue);
}

.social-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}

.map-card {
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    min-height: 500px;
    border: 0;
}

/* =========================
   FOOTER
========================= */
.footer-top {
    text-align: center;
    padding: 40px 0;
}

.footer-bottom {
    background: #0b0b0b;
    color: #aaa;
    padding: 30px 20px;
    text-align: center;
}

.footer-bottom nav a {
    color: #aaa;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom nav a:hover {
    color: var(--blue);
}

/* =========================
   ANIMATIONS
========================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
    will-change: opacity, transform;
}

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

/* =========================
   PRICES PAGE
========================= */
.prices-page {
    padding: 140px 0 110px;
    background: #fff;
}

.prices-head {
    text-align: center;
    margin: 20px 0 50px;
}

.prices-head h1 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.title-underline {
    width: 190px;
    height: 3px;
    background: var(--blue);
    margin: 0 auto 18px;
    border-radius: 999px;
}

.prices-subtitle {
    max-width: 860px;
    margin: 0 auto;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Price blocks */
.price-block {
    margin-top: 34px;
}

.price-tag {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 10px;
    margin-bottom: 18px;
}

/* List */
.price-list {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.price-name {
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

.price-value {
    color: #0b2a66;
    font-weight: 700;
    white-space: nowrap;
    font-size: 15px;
}

/* Note + CTA */
.prices-note {
    margin-top: 40px;
    padding: 18px 20px;
    border-radius: 14px;
    background: #f5f7fa;
    color: #555;
    line-height: 1.7;
}

.prices-cta {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active nav link on prices page */
.nav a[aria-current="page"] {
    color: var(--blue);
}

.page-header {
    padding: 50px 0 50px;
}

.page-header-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e6f6fe;
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 14px;
}

.page-header-title {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.page-header-subtitle {
    color: #666;
    font-size: 16px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .services-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-stats {
        gap: 30px;
    }

    .owner-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    .doctor-photo img {
        height: 220px;
    }

    .prices-page {
        padding-top: 120px;
    }

    .prices-head h1 {
        font-size: 30px;
    }

    .price-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .price-value {
        color: var(--blue);
    }
}

@media (max-width: 560px) {
    .features {
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 20px 18px;
    }

    .services-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== service group: clean two cards ===== */
.service-group-page {
    padding: 0 0 50px;
}

.service-group-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 14px;
    align-items: start;
}

.service-panel {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 34px rgba(0,0,0,0.06);
}

.service-panel-title {
    font-size: 18px;
    margin: 0 0 18px 0;
}

/* LEFT list */
.service-procedure-list {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
}

.service-procedure-link {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    padding: 0 0 5px;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.service-procedure-link:hover {
    color: var(--blue);
}

/* RIGHT content */
.service-group-text {
    color: #555;
    line-height: 1.85;
}

.service-group-text p + p {
    margin-top: 12px;
}

/* responsive */
@media (max-width: 980px) {
    .service-group-layout {
        grid-template-columns: 1fr;
    }
}

/* ===== breadcrumb ===== */
.breadcrumb {
    padding: 92px 0 0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: #777;
    font-size: 13px;
}

.breadcrumb-link {
    text-decoration: none;
    color: #666;
    transition: color .2s ease;
}

.breadcrumb-link:hover {
    color: var(--blue);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #bbb;
}

.breadcrumb-current {
    color: var(--black);
    font-weight: 700;
}

