/*
Theme Name: Prof. Dr. Levent Avtan
Text Domain: leventavtan
Theme URI: https://ripondigital.com
Author: Ahmet Tekeci
Author URI: https://tekeci.co
Description: Prof. Dr. Levent Avtan icin ozel WordPress temasi. El yapimi utility-first CSS mimarisi (utility.css + buttons.css). Temiz baslangic.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Ripon Digital
License URI: https://ripondigital.com
*/


/* ============================================================
   CSS Variables (Renk Sistemi) — NOTR PLACEHOLDER
   Referans tasarim gelince bu tokenlar guncellenecek.
   ============================================================ */

:root {
    /* Primary Colors */
    --primary: #0f172a;
    --primary-50: #f8fafc;
    --primary-100: #f1f5f9;
    --primary-200: #e2e8f0;
    --primary-300: #cbd5e1;
    --primary-400: #94a3b8;
    --primary-500: #64748b;
    --primary-600: #475569;
    --primary-700: #334155;
    --primary-800: #1e293b;
    --primary-900: #0f172a;

    /* Secondary Colors (Accent) */
    --secondary: #3b82f6;
    --secondary-50: #eff6ff;
    --secondary-100: #dbeafe;
    --secondary-200: #bfdbfe;
    --secondary-300: #93c5fd;
    --secondary-400: #60a5fa;
    --secondary-500: #3b82f6;
    --secondary-600: #2563eb;
    --secondary-700: #1d4ed8;
    --secondary-800: #1e40af;
    --secondary-900: #1e3a8a;

    /* Neutral Colors (Grayscale) */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Text Colors — InClinic */
    --text-primary: #4D6581;   /* govde metni (slate) */
    --text-secondary: #90A0B3; /* soluk */
    --text-muted: #90A0B3;
    --text-inverse: #FFFFFF;

    /* Background Colors */
    --bg-primary: #0f172a;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F2F5FA;
    --bg-dark: #060720;
    --bg-overlay: rgba(6, 7, 32, 0.5);

    /* Border Colors */
    --border-primary: #e5e7eb;
    --border-secondary: #D1D5DB;
    --border-dark: #374151;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Font Stacks — InClinic: baslik Lora (serif) · body Inter (sans) */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* ---- InClinic Boston Paleti (Figma'dan BİREBİR) ---- */
    --brand-red: #ec4949;          /* primary — InClinic kırmızı (ana aksan) */
    --brand-red-dark: #d63a3a;     /* hover / koyu kırmızı */
    --brand-red-600: #d63a3a;
    --brand-navy: #191414;         /* başlık — siyaha yakın */
    --brand-text: #4f4f4f;         /* gövde metni */
    --brand-accent: #ec4949;
    --brand-tint: #fdecec;         /* açık kırmızı tint (ikon zemini) */
    --brand-alt: #f7f7f7;          /* açık gri bölüm zemini */
    --brand-border: #dadada;       /* border */
    --brand-muted: #9f9f9f;        /* soluk gri */
    /* alias */
    --brand-ink: #191414;
    --brand-cream: #ffffff;
    --brand-cream-2: #f7f7f7;
}


/* ---------- Renk Utility Classes ---------- */

/* Text Colors */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-black { color: var(--black); }

.text-primary-500 { color: var(--primary-500); }
.text-primary-600 { color: var(--primary-600); }
.text-primary-700 { color: var(--primary-700); }

.text-secondary-400 { color: var(--secondary-400); }
.text-secondary-500 { color: var(--secondary-500); }
.text-secondary-600 { color: var(--secondary-600); }

.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-800 { color: var(--gray-800); }

/* Background Colors */
.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-tertiary { background-color: var(--bg-tertiary); }
.bg-dark { background-color: var(--bg-dark); }
.bg-white { background-color: var(--white); }
.bg-black { background-color: var(--black); }
.bg-light { background-color: #F5F5F5; }

.bg-primary-50 { background-color: var(--primary-50); }
.bg-primary-500 { background-color: var(--primary-500); }
.bg-primary-600 { background-color: var(--primary-600); }
.bg-primary-700 { background-color: var(--primary-700); }

.bg-secondary-50 { background-color: var(--secondary-50); }
.bg-secondary-400 { background-color: var(--secondary-400); }
.bg-secondary-500 { background-color: var(--secondary-500); }

.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-gray-200 { background-color: var(--gray-200); }
.bg-gray-800 { background-color: var(--gray-800); }
.bg-gray-900 { background-color: var(--gray-900); }

/* Border Colors */
.border-primary { border-color: var(--border-primary); }
.border-secondary { border-color: var(--border-secondary); }
.border-dark { border-color: var(--border-dark); }


/* ---------- Temel (Base Reset) ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #fff;
}

.site {
    color: var(--text-primary);
}

.site body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--brand-text);
}

.site button,
.site select,
.site form,
.site input,
.site textarea {
    font-family: var(--font-body);
}

section {
    margin: 0;
    padding: 0;
    display: flow-root;
}

/* ---- InClinic tipografi ölçeği (canlı getComputedStyle'dan birebir) ---- */
.site h1, .site h2, .site h3, .site h4, .site h5, .site h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    text-wrap: balance;
}
.site h1 { font-size: clamp(2rem, 5vw, 48px);      line-height: 1.2;  letter-spacing: -0.042em; }
.site h2 { font-size: clamp(1.75rem, 4.2vw, 42px); line-height: 1.25; letter-spacing: -0.024em; }
.site h3 { font-size: clamp(1.4rem, 2.6vw, 30px);  line-height: 1.3;  letter-spacing: -0.017em; }
.site h4 { font-size: clamp(1.25rem, 2vw, 22px);   line-height: 1.4;  letter-spacing: normal; }
.site h5 { font-size: 18px; line-height: 1.4; font-weight: 700; }
.site h6 { font-size: 16px; line-height: 1.5; font-weight: 500; letter-spacing: 1px; }
/* varsayılan başlık rengi — :where ile 0 specificity, Tailwind text-white/red ezebilsin */
:where(.site) h1, :where(.site) h2, :where(.site) h3, :where(.site) h4, :where(.site) h5, :where(.site) h6 { color: var(--brand-navy); }

.site p, .site ul, .site ol, .site dl { text-wrap: pretty; }


/* ============================================================
   TIPOGRAFI OLCEGI — moduler skala (methodology, jester'dan)
   Font ailesi notr; referans gelince --font-heading/body degisir.
   ============================================================ */
:root {
    --t-display-size: clamp(2.25rem, 4.5vw, 3.375rem); /* hero ~54px */
    --t-display-lh: 1.15;
    --t-display-ls: 0;

    --t-h1-size: clamp(2rem, 4vw, 3rem);       /* 48px */
    --t-h1-lh: 1.2;
    --t-h1-ls: 0;

    --t-h2-size: clamp(1.75rem, 3.4vw, 2.625rem); /* 42px */
    --t-h2-lh: 1.22;
    --t-h2-ls: 0;

    --t-h3-size: clamp(1.5rem, 2.6vw, 2rem);   /* 32px */
    --t-h3-lh: 1.3;
    --t-h3-ls: 0;

    --t-subtitle-size: clamp(1.1rem, 1.6vw, 1.4rem);
    --t-subtitle-lh: 1.4;

    --t-lead-size: clamp(1rem, 1.1vw, 1.15rem);
    --t-lead-lh: 1.6;

    --t-eyebrow-ls: 0.12em;
}

.t-display { font-size: var(--t-display-size); line-height: var(--t-display-lh); letter-spacing: var(--t-display-ls); }
.t-h1      { font-size: var(--t-h1-size);      line-height: var(--t-h1-lh);      letter-spacing: var(--t-h1-ls); }
.t-h2      { font-size: var(--t-h2-size);      line-height: var(--t-h2-lh);      letter-spacing: var(--t-h2-ls); }
.t-h3      { font-size: var(--t-h3-size);      line-height: var(--t-h3-lh);      letter-spacing: var(--t-h3-ls); }

.t-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--t-subtitle-size);
    line-height: var(--t-subtitle-lh);
    letter-spacing: 0;
}

.t-lead {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--t-lead-size);
    line-height: var(--t-lead-lh);
    letter-spacing: 0;
}

.t-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    line-height: 1.1;
    letter-spacing: var(--t-eyebrow-ls);
    text-transform: uppercase;
}

/* UA varsayilan blok marjlarini sifirla — utility margin class'lari ezebilsin */
:where(.site) h1, :where(.site) h2, :where(.site) h3, :where(.site) h4, :where(.site) h5, :where(.site) h6,
:where(.site) p, :where(.site) ul, :where(.site) ol, :where(.site) dl { margin-block-start: 0; margin-block-end: 0; }

:focus { outline: 0; }


/* ============================================================
   Kurulum placeholder — front-page (referans gelince silinecek)
   ============================================================ */
.setup-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: #fff;
}
.setup-hero .eyebrow {
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.setup-hero h1 {
    color: var(--text-primary);
    max-width: 20ch;
}
.setup-hero p {
    color: var(--text-secondary);
    margin-top: 1.25rem;
    max-width: 40ch;
}


/* ============================================================
   SITE HEADER (InClinic Boston: topbar + beyaz header + mavi buton)
   ============================================================ */

/* Üst bilgi çubuğu */
.topbar {
    background: #fff;
    border-bottom: 1px solid var(--brand-border);
    font-size: 0.82rem;
    color: var(--brand-text);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 46px;
    flex-wrap: wrap;
}
.topbar__info,
.topbar__contact {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--brand-text);
    text-decoration: none;
    white-space: nowrap;
}
.topbar__item svg { width: 16px; height: 16px; color: var(--brand-red); flex-shrink: 0; }
a.topbar__item:hover { color: var(--brand-red); }
.topbar__social { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eef0f2;
    color: var(--brand-navy);
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.topbar__social a svg { width: 15px; height: 15px; }
.topbar__social a:hover { background: var(--brand-red); color: #fff; transform: translateY(-1px); }

/* Header sağ aksiyon grubu: switcher + Randevu Al yan yana */
.header-actions { display: inline-flex; align-items: center; gap: 0; flex-shrink: 0; }
.header-actions .lang-switch { margin-right: 12px; }

/* Switcher hamburger menü kopyası — desktop'ta gizli */
.main-nav__lang { display: none; }

/* Dil değiştirici (sadece bayraklar) */
.lang-switch { display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }
.lang-switch__item {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 3px; border-radius: 3px;
	line-height: 0; opacity: 0.5;
	transition: opacity var(--transition-fast), box-shadow var(--transition-fast);
}
.lang-switch__flag {
	width: 22px; height: 15px; display: block;
	border-radius: 2px; object-fit: cover;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.10);
}
.lang-switch__item:hover { opacity: 0.85; }
.lang-switch__item.is-active { opacity: 1; box-shadow: 0 0 0 2px var(--brand-red); }

/* Ana header */
.site-header {
    background: #fff;
    position: relative;
    z-index: 50;
    box-shadow: none;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.1rem 0;
}
.site-logo { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo__img { display: block; height: 55px; width: auto; }

/* Nav */
.main-nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav__item { position: relative; }
.main-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
    cursor: pointer;
}
.main-nav__link:hover { color: var(--brand-red); }
.main-nav__chevron { width: 11px; height: 11px; transition: transform var(--transition-fast); }
.main-nav__item.has-dropdown:hover .main-nav__chevron { transform: rotate(180deg); }

/* Dropdown */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 5px;
    box-shadow: none;
    padding: 1rem 1.875rem;
    margin: 0.75rem 0 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 100;
}
.has-dropdown:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li { margin: 0; }
.sub-menu a {
    display: block;
    padding: 0.700rem 0;
    border-bottom: 1px solid #dadada;
    border-radius: 0;
    color: var(--brand-navy);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast);
}
.sub-menu li:last-child a { border-bottom: 0; }
.sub-menu a:hover { background: transparent; color: var(--brand-red); }

/* Randevu butonu (InClinic: outline kırmızı) */
.btn-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    background: transparent;
    color: var(--brand-red);
    padding: 14px 25px;
    border: 2px solid var(--brand-red);
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    flex-shrink: 0;
    transition: background var(--transition-fast), color var(--transition-fast);
}
.btn-appointment:hover { background: var(--brand-red); color: #fff; }
.btn-appointment__icon {
    display: none;
}
.btn-appointment__icon svg { width: 16px; height: 16px; display: block; }

/* Duyuru bandı (koyu kırmızı şerit) */
.notice-bar { background: #c0392b; color: #fff; }
.home .notice-bar { background: #B12828; }
.notice-bar p { margin: 0; padding: 0.8rem 0; text-align: center; font-size: 0.95rem; }
.notice-bar strong { font-weight: 700; }
.notice-bar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }

/* Header randevu drawer'ı */
.appointment-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.38s;
}
.appointment-drawer__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    opacity: 0;
    background: rgba(25, 20, 20, 0.42);
    cursor: pointer;
    transition: opacity 0.32s ease;
}
.appointment-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(50vw, 900px);
    height: 100%;
    overflow-y: auto;
    color: #fff;
    background: #ae332e;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(.22, .75, .25, 1);
}
.appointment-drawer.is-open { visibility: visible; pointer-events: auto; transition-delay: 0s; }
.appointment-drawer.is-open .appointment-drawer__overlay { opacity: 1; }
.appointment-drawer.is-open .appointment-drawer__panel { transform: translateX(0); }
.appointment-drawer__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
}
.appointment-drawer__close i { font-size: 1.45rem; }
.appointment-drawer__content { padding: 5.5rem clamp(2.5rem, 5vw, 7rem); }
.appointment-drawer__content h2 {
    max-width: 13ch;
    margin: 0 0 1.6rem;
    color: #fff;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 600;
    line-height: 1.08;
}
.appointment-drawer__content > p {
    max-width: 38rem;
    margin: 0 0 3rem;
    color: rgba(255,255,255,.76);
    font-size: 1.1rem;
    line-height: 1.7;
}
.appointment-drawer__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}
.appointment-drawer__form input,
.appointment-drawer__form select,
.appointment-drawer__form textarea {
    width: 100%;
    min-width: 0;
    min-height: 4rem;
    padding: 1rem 1.25rem;
    border: 1px solid #dadada;
    border-radius: 4px;
    color: #191414;
    background: #fff;
    font: inherit;
}
.appointment-drawer__form textarea { grid-column: 1 / -1; min-height: 8rem; resize: vertical; }
.appointment-drawer__time { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.appointment-drawer__form > button {
    grid-column: 1 / -1;
    min-height: 3.75rem;
    padding: 0.9rem 1.5rem;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: #e25855;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.appointment-drawer__form > button:hover { background: #ec4949; }
body.appointment-drawer-open { overflow: hidden; }

/* Hamburger (mobil menü butonu) */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: auto;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.nav-toggle__icon {
    display: flex;
    width: 28px;
    height: 22px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.nav-toggle__icon i {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-navy);
    transform-origin: center;
    transition: transform 0.28s ease, opacity 0.18s ease;
}
.nav-toggle__label {
    color: var(--brand-navy);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil */
@media (max-width: 991px) {
    .topbar__inner {
        flex-direction: column;
        justify-content: center;
        gap: 0.65rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .topbar__info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        width: 100%;
    }
    .topbar__contact {
        display: none;
    }
    .site-header__inner {
        flex-wrap: wrap;
        column-gap: 0.75rem;
        row-gap: 1.25rem;
    }
    .site-logo__img { height: 46px; }
    .nav-toggle { display: flex; }
    .header-actions {
        order: 3;
        width: 100%;
    }
    .header-actions .lang-switch { display: none; } /* mobilde header switcher gizli */
    .btn-appointment {
        display: flex;
        width: 100%;
        margin-top: 0;
        padding: 0.9rem 1.25rem;
    }
    /* Switcher hamburger menü içinde */
    .main-nav__lang {
        display: flex;
        justify-content: center;
        gap: 1.25rem;
        padding: 1.1rem 1.25rem;
        border-top: 1px solid var(--brand-alt);
    }
    .main-nav__lang .lang-switch__item { padding: 4px; }
    .main-nav__lang .lang-switch__flag { width: 26px; height: 18px; }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--brand-border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        max-height: calc(100vh - 100%);
        overflow-y: auto;
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }
    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .main-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 0; }
    .main-nav__item { padding: 0 1.25rem; border-bottom: 1px solid var(--brand-alt); }
    .main-nav__link { padding: 0.85rem 0; justify-content: space-between; width: 100%; }
    /* Mobil alt menüler accordion olarak kapalı başlar. */
    .sub-menu {
        position: static; display: none; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0; border-radius: 0; min-width: 0;
        margin: 0 0 0.5rem; padding: 0 0 0 0.75rem;
    }
    .main-nav__item.has-dropdown.is-expanded > .sub-menu { display: block; }
    .main-nav__item.has-dropdown .main-nav__chevron {
        display: block;
        width: 14px;
        height: 14px;
        transform: rotate(-90deg);
    }
    .main-nav__item.has-dropdown.is-expanded > .main-nav__link .main-nav__chevron {
        transform: rotate(0deg);
    }
}

@media (max-width: 767px) {
    .appointment-drawer__panel { width: min(100%, 34rem); }
    .appointment-drawer__content { padding: 5rem 1.25rem 2.5rem; }
    .appointment-drawer__content h2 { font-size: 2.25rem; }
    .appointment-drawer__content > p { margin-bottom: 2rem; font-size: 0.95rem; }
    .appointment-drawer__form { grid-template-columns: 1fr; }
    .appointment-drawer__form textarea,
    .appointment-drawer__form > button { grid-column: auto; }
}


/* ============================================================
   ORTAK BİLEŞENLER (InClinic)
   ============================================================ */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tint { background: var(--brand-alt); }
.section--navy { background: var(--brand-navy); }
.section--navy, .section--navy p { color: rgba(255,255,255,0.82); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 0.85rem;
}
.eyebrow--light { color: #7fb6ff; }

.section__head { margin-bottom: clamp(2rem, 4vw, 3rem); display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.section__head--center .t-h2 { max-width: 22ch; }
.section__head--light .t-h2 { color: #fff; }

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.85rem 1.6rem;
    border-radius: 10px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--brand-red); color: #fff; }
.btn--primary:hover { background: var(--brand-red-dark); }
.btn--outline { background: transparent; color: var(--brand-navy); border-color: var(--brand-border); }
.btn--outline:hover { border-color: var(--brand-red); color: var(--brand-red); }
.btn--block { width: 100%; justify-content: center; }

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-red);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}
.link-more svg { width: 18px; height: 18px; transition: transform var(--transition-fast); }
.link-more:hover svg { transform: translateX(3px); }

/* Form alanları */
.field { display: block; margin-bottom: 0.9rem; }
.field__label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--brand-navy); margin-bottom: 0.35rem; }
.field__control {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1.5px solid var(--brand-border);
    border-radius: 9px;
    background: #fff;
    color: var(--brand-navy);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}
.field__control:focus { outline: none; border-color: var(--brand-red); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

/* Randevu kartı */
.appt-card {
    background: #fff;
    border-radius: 16px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    box-shadow: 0 24px 60px rgba(0, 35, 75, 0.18);
    width: 100%;
    max-width: 420px;
}
.appt-card__title { font-size: 1.5rem; margin-bottom: 0.25rem; }
.appt-card__sub { color: var(--brand-text); font-size: 0.9rem; margin-bottom: 1.25rem; }
.appt-card--flat { box-shadow: none; max-width: none; }


/* ============================================================
   HERO (InClinic Boston — Figma birebir: bölünmüş, sol metin / sağ foto)
   ============================================================ */
.hero { background: #fff; border-bottom: 1px solid var(--brand-border); }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.hero__left {
    display: flex;
    align-items: center;
    padding-block: clamp(3rem, 6vw, 5rem);
    padding-left: max(1.25rem, calc((100vw - 1320px) / 2 + 1.5rem));
    padding-right: clamp(1.5rem, 3vw, 3.5rem);
}
.hero__inner { width: 100%; max-width: 560px; }
.hero__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--brand-navy);
    margin-bottom: 1.75rem;
}
.hero__title .is-accent { color: var(--brand-red); }
.hero__divider { border-top: 1px solid var(--brand-border); padding-top: 1.75rem; }
.hero__lead { color: var(--brand-text); font-size: 1.1rem; line-height: 1.65; margin-bottom: 1.75rem; max-width: 46ch; }
.hero__btn { border-radius: 6px; padding: 0.95rem 2.1rem; }
.hero__right { position: relative; min-height: 420px; }
.hero__right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }


/* ============================================================
   BÖLÜM 2 — Hizmet kartları
   ============================================================ */
.services__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 4vw, 3.5rem); }
.services__title { font-size: clamp(1.9rem, 3.2vw, 2.625rem); font-weight: 600; letter-spacing: -0.03em; color: var(--brand-navy); line-height: 1.25; margin-bottom: 1rem; }
.services__sub { color: var(--brand-text); font-size: 1.1rem; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.svc-card { border-radius: 5px; padding: 2.5rem 2rem; text-align: center; }
.svc-card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 84px; height: 84px; border-radius: 50%; margin-bottom: 1.5rem;
}
.svc-card__icon svg { width: 38px; height: 38px; }
.svc-card__title { font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 0.75rem; }
.svc-card__text { font-size: 1.05rem; margin-bottom: 1.1rem; }
.svc-card__link { display: inline-block; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
/* varyantlar (Figma: açık-pembe / kırmızı / koyu-kırmızı) */
.svc-card--light { background: #fff0f0; }
.svc-card--light .svc-card__icon { background: var(--brand-red); color: #fff; }
.svc-card--light .svc-card__title { color: var(--brand-navy); }
.svc-card--light .svc-card__text { color: var(--brand-text); }
.svc-card--light .svc-card__link { color: var(--brand-red); }
.svc-card--red { background: var(--brand-red); }
.svc-card--red .svc-card__icon { background: #fff; color: var(--brand-red); }
.svc-card--red .svc-card__title, .svc-card--red .svc-card__text, .svc-card--red .svc-card__link { color: #fff; }
.svc-card--dark { background: #b12828; }
.svc-card--dark .svc-card__icon { background: var(--brand-red); color: #fff; }
.svc-card--dark .svc-card__title, .svc-card--dark .svc-card__text, .svc-card--dark .svc-card__link { color: #fff; }


/* ============================================================
   BÖLÜM 3 — Neden Biz / accordion
   ============================================================ */
.why-care {
	padding: 4.5rem 0;
	background: #f6f6f6;
}

.why-care__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.14fr) minmax(24rem, 0.86fr);
	gap: clamp(4rem, 7vw, 8rem);
	align-items: center;
}

.why-care__media img {
	display: block;
	width: 100%;
	min-height: 35rem;
	border-radius: 4px;
	object-fit: cover;
}

.why-care__content {
	padding-block: 1rem;
}

.why-care__eyebrow {
	display: inline-block;
	margin-bottom: 1.75rem;
	color: var(--brand-red, #ec4949);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.why-care__content h2 {
	max-width: 14ch;
	margin: 0 0 clamp(3rem, 4.5vw, 4.75rem);
	color: var(--brand-navy, #191414);
	font-size: 42px;
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 53px;
}

.why-care__accordion {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.why-care__item {
	overflow: hidden;
	border-radius: 2px;
	background: #fff;
}

.why-care__trigger {
	display: grid;
	width: 100%;
	grid-template-columns: 1.75rem 1fr;
	gap: 1.25rem;
	align-items: center;
	padding: 1.5rem 1.75rem;
	border: 0;
	background: transparent;
	color: var(--brand-navy, #191414);
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.why-care__trigger i {
	color: var(--brand-red, #ec4949);
	font-size: 1.35rem;
}

.why-care__trigger span {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.4;
}

.why-care__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 280ms ease;
}

.why-care__item.is-open .why-care__panel {
	grid-template-rows: 1fr;
}

.why-care__panel-inner {
	overflow: hidden;
}

.why-care__panel p {
	margin: 0;
	padding: 0 1.75rem 1.75rem 4.75rem;
	color: var(--brand-text, #4f4f4f);
	font-size: 1rem;
	line-height: 1.65;
}

.why-care__item.is-open .why-care__trigger i {
	color: #9b9b9b;
}

@media (max-width: 991px) {
	.why-care__grid {
		grid-template-columns: 1fr;
		gap: 3.5rem;
	}

	.why-care__media img {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 680px) {
	.why-care {
		padding-block: 3.5rem;
	}

	.why-care__media {
		display: none;
	}

	.why-care__eyebrow {
		margin-bottom: 1.25rem;
	}

	.why-care__content h2 {
		margin-bottom: 3rem;
		font-size: 2.5rem;
		line-height: 1.2;
	}

	.why-care__trigger {
		padding: 1.35rem 1.25rem;
	}

	.why-care__panel p {
		padding: 0 1.25rem 1.5rem 4.25rem;
	}
}


/* ============================================================
   BÖLÜM 4 — Uzmanlık alanları listesi
   ============================================================ */
.conditions__head { text-align: center; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.conditions__title { font-size: clamp(1.9rem, 3.2vw, 2.625rem); font-weight: 600; letter-spacing: -0.03em; color: var(--brand-navy); line-height: 1.25; }
.conditions__list { column-count: 4; column-gap: 3rem; list-style: none; margin: 0; padding: 0; }
.cond-item { display: flex; align-items: center; gap: 0.7rem; padding: 1.05rem 0; border-bottom: 1px solid var(--brand-border); break-inside: avoid; }
.cond-item__plus { color: var(--brand-red); font-weight: 700; font-size: 1.15rem; line-height: 1; }
.cond-item__text { color: var(--brand-navy); font-weight: 500; font-size: 1.05rem; }
.conditions__foot { display: flex; justify-content: flex-end; margin-top: 1.5rem; }
.link-underline { color: var(--brand-red); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 991px) { .conditions__list { column-count: 2; } }
@media (max-width: 600px) { .conditions__list { column-count: 1; } }


/* ============================================================
   BÖLÜM 5 — Öne çıkan hizmet
   ============================================================ */
.featured-service {
	padding: 4.5rem 0;
	background: #fff;
}

.featured-service__grid {
	display: grid;
	grid-template-columns: 45% 55%;
	align-items: center;
}

.featured-service__card {
	position: relative;
	z-index: 2;
	grid-column: 1;
	grid-row: 1;
	margin-right: -18%;
	padding: clamp(2rem, 3.5vw, 3.5rem);
	border-radius: 5px;
	background: #ec4949;
	color: #fff;
}

.featured-service__badge {
	position: absolute;
	top: -32px;
	left: clamp(2rem, 3.5vw, 3.5rem);
	display: grid;
	width: 64px;
	height: 64px;
	place-items: center;
	border-radius: 50%;
	background: #b12828;
	color: #fff;
}

.featured-service__badge i {
	font-size: 2rem;
}

.featured-service__card h2 {
	margin: 0 0 1.25rem;
	color: #fff;
	font-size: clamp(1.8rem, 3vw, 2.625rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.featured-service__card p {
	margin: 0 0 1.5rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.125rem;
	line-height: 1.65;
}

.featured-service__card a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.featured-service__media {
	grid-column: 2;
	grid-row: 1;
}

.featured-service__media img {
	display: block;
	width: 100%;
	border-radius: 4px;
}

@media (max-width: 991px) {
	.featured-service {
		padding: 3.5rem 0;
	}

	.featured-service .featured-service__container {
		width: 100vw;
		max-width: none;
		margin-right: calc(50% - 50vw);
		margin-left: calc(50% - 50vw);
		padding-inline: 0;
	}

	.featured-service__grid {
		display: flex;
		flex-direction: column;
	}

	.featured-service__media {
		order: 1;
		width: 100%;
	}

	.featured-service__media img {
		width: 100%;
		height: clamp(24rem, 72vw, 34rem);
		border-radius: 0;
		object-fit: cover;
	}

	.featured-service__card {
		order: 2;
		width: calc(100% - 3rem);
		margin: clamp(-9rem, -18vw, -6rem) auto 0;
		padding: 4.5rem 2.5rem 3rem;
	}

	.featured-service__badge {
		top: -38px;
		left: 3rem;
		width: 76px;
		height: 76px;
	}
}

@media (max-width: 600px) {
	.featured-service {
		padding-top: 2rem;
	}

	.featured-service__media img {
		height: 25rem;
	}

	.featured-service__card {
		width: calc(100% - 2.5rem);
		margin-top: -8.5rem;
		padding: 4.25rem 2rem 2.75rem;
	}

	.featured-service__badge {
		left: 2.5rem;
	}

	.featured-service__card h2 {
		font-size: 2.25rem;
	}

	.featured-service__card p {
		font-size: 1.05rem;
	}
}


/* ============================================================
   BÖLÜM 6 — Doktor tanıtımı
   ============================================================ */
.doctor__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.doctor__photo-ph {
    aspect-ratio: 4 / 5; border-radius: 18px; background: var(--brand-tint);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.75rem; color: var(--brand-red);
}
.doctor__photo-ph svg { width: 90px; height: 90px; }
.doctor__photo-ph span { font-size: 0.9rem; color: var(--brand-muted); }
.doctor__role { color: var(--brand-red); font-weight: 600; margin: 0.25rem 0 1rem; }
.doctor__body p { margin-bottom: 1.25rem; }
.doctor__creds { list-style: none; margin: 0 0 1.75rem; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.doctor__creds li { display: flex; align-items: center; gap: 0.7rem; color: var(--brand-navy); font-weight: 500; }
.doctor__creds svg { width: 20px; height: 20px; color: var(--brand-red); flex-shrink: 0; }


/* ============================================================
   BÖLÜM 7 — 4'lü özellik (navy)
   ============================================================ */
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 1.75rem; }
.feat-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 12px; background: var(--brand-red); color: #fff; margin-bottom: 1rem; }
.feat-card__icon svg { width: 26px; height: 26px; }
.feat-card__title { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 1.15rem; margin-bottom: 0.5rem; }
.feat-card__text { color: rgba(255,255,255,0.75); font-size: 0.95rem; }


/* ============================================================
   BÖLÜM 8 — Blog
   ============================================================ */
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.post-card { background: #fff; border: 1px solid var(--brand-border); border-radius: 16px; overflow: hidden; transition: transform var(--transition-fast), box-shadow var(--transition-fast); }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 24px 55px rgba(0,35,75,0.12); }
.post-card__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__ph { position: absolute; inset: 0; background: linear-gradient(135deg, var(--brand-tint), #cfe4fb); }
.post-card__cat { position: absolute; left: 1rem; bottom: 1rem; background: var(--brand-red); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 20px; }
.post-card__body { padding: 1.4rem; }
.post-card__date { font-size: 0.82rem; color: var(--brand-muted); }
.post-card__title { font-family: var(--font-heading); font-size: 1.25rem; margin-top: 0.4rem; line-height: 1.35; }
.post-card__title a { color: var(--brand-navy); text-decoration: none; }
.post-card__title a:hover { color: var(--brand-red); }


/* ============================================================
   ANASAYFA — Cerrahi hizmet kartları
   ============================================================ */
.home-services {
	padding: clamp(5.75rem, 7.5vw, 8.5rem) 0 clamp(6.5rem, 8vw, 9rem);
	background: #fff;
}

.home-services__header {
	max-width: 58rem;
	margin: 0 auto clamp(2.75rem, 4vw, 4rem);
	text-align: center;
}

.home-services__header h2 {
	max-width: 19ch;
	margin: 0 auto 2rem;
	color: var(--brand-navy, #191414);
	font-size: 42px;
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 53px;
}

.home-services__header p {
	margin: 0;
	color: var(--brand-text, #4f4f4f);
	font-size: 1.125rem;
	line-height: 1.6;
}

.home-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(2rem, 3vw, 3.35rem);
}

.home-service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: clamp(2.75rem, 3.5vw, 3.25rem) clamp(2rem, 3vw, 3.25rem) clamp(2.75rem, 3.5vw, 3.25rem);
	border-radius: 5px;
	text-align: center;
}

.home-service-card--light {
	background: #fff0ef;
	color: var(--brand-navy, #191414);
}

.home-service-card--red {
	background: #ec4949;
	color: #fff;
}

.home-service-card--dark {
	background: #b12828;
	color: #fff;
}

.home-service-card__icon {
	display: grid;
	width: 84px;
	height: 84px;
	margin-bottom: 2rem;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	background: #e25855;
	color: #fff;
}

.home-service-card--red .home-service-card__icon {
	background: #fff;
	color: #e25855;
}

.home-service-card__icon i {
	font-size: 2.25rem;
}

.home-service-card h3 {
	max-width: 13ch;
	margin: 0 auto 1.25rem;
	color: inherit;
	font-size: clamp(1.5rem, 2vw, 1.75rem);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.18;
}

.home-service-card p {
	max-width: 26rem;
	margin: 0 auto 1.5rem;
	color: inherit;
	font-size: 1.05rem;
	line-height: 1.65;
}

.home-service-card--red p,
.home-service-card--dark p {
	color: rgba(255, 255, 255, 0.92);
}

.home-service-card a {
	margin-top: 0;
	color: inherit;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.home-service-card--light a {
	color: #e25855;
}

@media (max-width: 991px) {
	.home-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.home-services {
		padding-block: 4.5rem 5rem;
	}

	.home-services__header {
		margin-bottom: 3.25rem;
	}

	.home-services__header h2 {
		font-size: 2rem;
		line-height: 1.2;
	}

	.home-services__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.home-service-card {
		min-height: 27rem;
	}
}


/* ============================================================
   BÖLÜM 9 — Anlaşmalı kurumlar
   ============================================================ */
.partners__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }
.partner-logo { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; background: #fff; border: 1px solid var(--brand-border); border-radius: 12px; padding: 1.5rem 1rem; color: var(--brand-muted); }
.partner-logo svg { width: 30px; height: 30px; color: var(--brand-red); }
.partner-logo span { font-size: 0.85rem; font-weight: 600; }


/* ============================================================
   BÖLÜM 10 — Alt CTA (navy + form)
   ============================================================ */
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.cta__text p { margin: 1rem 0 1.5rem; }
.cta__phone { display: inline-flex; align-items: center; gap: 0.6rem; color: #fff; font-size: 1.3rem; font-weight: 600; text-decoration: none; }
.cta__phone svg { width: 24px; height: 24px; color: var(--brand-red); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__right { min-height: 300px; order: -1; }
    .hero__left { padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
    .hero__inner { max-width: none; }
    .services__grid { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: 1fr; }
    .why__media { order: -1; }
    .doctor__grid, .cta__inner { grid-template-columns: 1fr; }
    .features__grid, .blog__grid { grid-template-columns: 1fr 1fr; }
    .partners__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .features__grid, .blog__grid { grid-template-columns: 1fr; }
    .partners__grid { grid-template-columns: repeat(2, 1fr); }
    .field-row { grid-template-columns: 1fr; }
    .section__head { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   FOOTER (InClinic Boston: navy 4 sütun)
   ============================================================ */
.site-footer { background: var(--brand-navy); color: rgba(255,255,255,0.72); padding: clamp(3rem, 6vw, 5rem) 0 0; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__logo { height: 42px; width: auto; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer__desc { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 34ch; }
.footer__contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.footer__contact li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--brand-red); flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer__contact a:hover { color: #fff; }
.footer__title { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.95rem; transition: color var(--transition-fast); }
.footer__links a:hover { color: var(--brand-red); }
.footer__hours { list-style: none; margin: 0 0 1.25rem; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; }
.footer__hours span:last-child { color: #fff; font-weight: 500; }
.footer__social { display: flex; gap: 0.5rem; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; transition: background var(--transition-fast); }
.footer__social a svg { width: 16px; height: 16px; }
.footer__social a:hover { background: var(--brand-red); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; }
.footer__bottom p { margin: 0; }
@media (max-width: 991px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer__top { grid-template-columns: 1fr; } }
