/* =========================================================================
   Hukuk Bürosu — Main Stylesheet
   Palette: #0E2A47 navy · #B08D57 gold · #FAF8F5 cream · #1F2937 text
   ========================================================================= */

:root {
    --hb-navy: #0E2A47;
    --hb-navy-2: #163A5F;
    --hb-gold: #B08D57;
    --hb-gold-2: #C9A77E;
    --hb-cream: #FAF8F5;
    --hb-text: #1F2937;
    --hb-muted: #6B7280;
    --hb-line: #E5E7EB;
    --hb-white: #ffffff;
    --hb-radius: 8px;
    --hb-shadow: 0 10px 30px rgba(14, 42, 71, 0.08);
    --hb-shadow-lg: 0 20px 50px rgba(14, 42, 71, 0.15);
    --hb-serif: "Playfair Display", Georgia, serif;
    --hb-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--hb-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--hb-text);
    background: var(--hb-cream);
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--hb-navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--hb-gold); }

h1, h2, h3, h4 {
    font-family: var(--hb-serif);
    color: var(--hb-navy);
    line-height: 1.2;
    margin: 0 0 .6em;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

.hb-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.hb-eyebrow {
    display: inline-block;
    font-family: var(--hb-sans);
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--hb-gold);
    font-weight: 600;
    margin-bottom: .8em;
}

/* ----- Buttons ----- */
.hb-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--hb-radius);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .02em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .25s;
    font-family: var(--hb-sans);
}
.hb-btn--primary { background: var(--hb-gold); color: #fff; }
.hb-btn--primary:hover { background: var(--hb-navy); color: #fff; }
.hb-btn--ghost { background: transparent; color: var(--hb-navy); border-color: var(--hb-navy); }
.hb-btn--ghost:hover { background: var(--hb-navy); color: #fff; }
.hb-btn--block { width: 100%; }
.hb-btn--large { padding: 18px 38px; font-size: 1rem; }

/* =========================================================================
   Header (harbiye stili — tek koyu bar)
   ========================================================================= */
.hb-header { background: var(--hb-navy); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 16px rgba(0,0,0,.15); }

.hb-topbar {
    background: #06192e;
    color: #cfd8e4;
    font-size: .85rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.hb-topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.hb-topbar__left, .hb-topbar__right { display: flex; align-items: center; gap: 18px; }
.hb-topbar a, .hb-topbar span { color: #cfd8e4; }
.hb-topbar a:hover { color: var(--hb-gold-2); }
.hb-topbar__phone { font-size: 1rem; }
.hb-topbar__phone strong { font-weight: 600; }
.hb-topbar__wa {
    background: rgba(37, 211, 102, 0.15);
    color: #6ee7a0 !important;
    padding: 5px 12px;
    border-radius: 4px;
    transition: all .2s;
}
.hb-topbar__wa:hover { background: #25D366; color: #fff !important; }

.hb-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}
.hb-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.hb-brand__name { font-family: var(--hb-serif); font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: .02em; }
.hb-brand__tag  { font-size: .72rem; color: var(--hb-gold-2); letter-spacing: .14em; text-transform: uppercase; }
.hb-brand a { color: #fff; }
.hb-brand a:hover { color: var(--hb-gold-2); }

.hb-menu { margin-left: auto; }
.hb-menu__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; gap: 26px;
}
.hb-menu__list a {
    color: #e8edf3;
    font-weight: 500;
    font-size: .95rem;
    padding: 8px 0;
    position: relative;
}
.hb-menu__list a:hover { color: var(--hb-gold-2); }
.hb-menu__list a::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px; background: var(--hb-gold);
    transition: width .25s;
}
.hb-menu__list a:hover::after,
.hb-menu__list .current-menu-item > a::after { width: 100%; }

.hb-nav__cta {
    background: var(--hb-gold);
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .03em;
    transition: all .2s;
    white-space: nowrap;
}
.hb-nav__cta:hover { background: #c9a276; color: #fff !important; transform: translateY(-1px); }

.hb-burger { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.hb-burger span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0; transition: .25s; }
.hb-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hb-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hb-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================================
   Hero
   ========================================================================= */
.hb-hero {
    position: relative;
    background: linear-gradient(135deg, var(--hb-navy) 0%, var(--hb-navy-2) 100%);
    color: #fff;
    padding: 90px 0 100px;
    overflow: hidden;
}
.hb-hero__bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(176, 141, 87, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(176, 141, 87, 0.10) 0%, transparent 40%);
    pointer-events: none;
}
.hb-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}
.hb-hero__copy .hb-eyebrow { color: var(--hb-gold-2); }
.hb-hero__title { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: .4em; }
.hb-hero__title em { color: var(--hb-gold-2); font-style: normal; }
.hb-hero__lead { font-size: 1.1rem; color: #d8dee8; max-width: 520px; margin-bottom: 32px; }
.hb-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hb-hero__cta .hb-btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hb-hero__cta .hb-btn--ghost:hover { background: #fff; color: var(--hb-navy); }

.hb-hero__card {
    background: #fff;
    color: var(--hb-text);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--hb-shadow-lg);
}
.hb-hero__card h3 {
    font-size: 1.3rem; margin-bottom: 20px;
    padding-bottom: 14px; border-bottom: 2px solid var(--hb-gold);
}

/* ----- Koyu form kartı (harbiye stili) ----- */
.hb-form-card {
    background: #1F2C3D !important;
    color: #fff;
    padding: 32px !important;
    border-radius: 8px;
    box-shadow: var(--hb-shadow-lg);
}
.hb-form-card h2,
.hb-form-card h3 {
    color: #fff !important;
    font-size: 1.4rem !important;
    margin-bottom: 8px !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    display: flex; align-items: center; gap: 12px;
}
.hb-form-card__bar {
    display: inline-block; width: 4px; height: 28px;
    background: var(--hb-gold); border-radius: 2px;
}
.hb-form-card__sub {
    color: #9aa6b5;
    font-size: .92rem;
    margin-bottom: 22px;
    margin-top: 0;
}
.hb-form--dark label { color: transparent; margin-bottom: 12px; }
.hb-form--dark input,
.hb-form--dark select,
.hb-form--dark textarea {
    background: #f5f7fa;
    border: 1px solid transparent;
    color: var(--hb-text);
    font-size: .95rem;
    padding: 13px 16px;
    margin-top: 0;
}
.hb-form--dark input::placeholder,
.hb-form--dark textarea::placeholder { color: #8a96a3; }
.hb-form--dark input:focus,
.hb-form--dark select:focus,
.hb-form--dark textarea:focus {
    background: #fff;
    border-color: var(--hb-gold);
    box-shadow: 0 0 0 2px rgba(176, 141, 87, .25);
}
.hb-form-card .hb-btn--primary { background: #c9763b; font-size: 1rem; padding: 16px 24px; }
.hb-form-card .hb-btn--primary:hover { background: #b8612a; }
.hb-form__legal {
    color: #8a96a3;
    font-size: .78rem;
    margin: 14px 0 0;
    text-align: center;
    line-height: 1.5;
}
.hb-form-card .hb-form__msg.is-success { color: #6ee7a0; }
.hb-form-card .hb-form__msg.is-error { color: #fda4a4; }

/* ----- Forms ----- */
.hb-form label { display: block; margin-bottom: 14px; font-size: .85rem; color: var(--hb-muted); font-weight: 500; }
.hb-form input,
.hb-form select,
.hb-form textarea {
    width: 100%;
    padding: 11px 14px;
    margin-top: 6px;
    border: 1px solid var(--hb-line);
    border-radius: 6px;
    font-family: var(--hb-sans);
    font-size: .95rem;
    color: var(--hb-text);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.hb-form input:focus,
.hb-form select:focus,
.hb-form textarea:focus {
    outline: none;
    border-color: var(--hb-gold);
    box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
}
.hb-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hb-form__hidden-mail { display: none; }
.hb-form__msg { margin-top: 14px; font-size: .9rem; }
.hb-form__msg.is-success { color: #047857; }
.hb-form__msg.is-error { color: #B91C1C; }

/* =========================================================================
   Stats
   ========================================================================= */
.hb-stats { background: #fff; padding: 50px 0; border-bottom: 1px solid var(--hb-line); }
.hb-stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; text-align: center; }
.hb-stats__item strong {
    display: block;
    font-family: var(--hb-serif);
    font-size: 2.5rem;
    color: var(--hb-navy);
    font-weight: 700;
}
.hb-stats__item span { color: var(--hb-muted); font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; }

/* =========================================================================
   Sections
   ========================================================================= */
.hb-section { padding: 90px 0; }
.hb-section__head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.hb-section__head p { color: var(--hb-muted); }

/* ----- Practice Areas ----- */
.hb-areas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 270px));
    gap: 24px;
    justify-content: center;
}
.hb-area {
    background: #fff;
    padding: 32px 26px;
    border-radius: var(--hb-radius);
    border: 1px solid var(--hb-line);
    transition: all .3s;
    display: block;
    color: var(--hb-text);
    position: relative;
    overflow: hidden;
}
.hb-area::before {
    content: ""; position: absolute; left: 0; top: 0; width: 0; height: 3px;
    background: var(--hb-gold); transition: width .3s;
}
.hb-area:hover { transform: translateY(-4px); box-shadow: var(--hb-shadow); border-color: transparent; }
.hb-area:hover::before { width: 100%; }
.hb-area__icon { font-size: 2.2rem; margin-bottom: 16px; }
.hb-area__title { font-size: 1.15rem; margin-bottom: 10px; }
.hb-area__excerpt { font-size: .9rem; color: var(--hb-muted); margin-bottom: 14px; }
.hb-area__more { font-size: .85rem; color: var(--hb-gold); font-weight: 600; letter-spacing: .05em; }

/* ----- Hesaplama Araçları ----- */
.hb-tools-sec { background: var(--hb-cream); }
.hb-tools__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 270px));
    gap: 22px;
    justify-content: center;
}
.hb-tool {
    background: #fff;
    padding: 28px 22px;
    border-radius: 8px;
    border: 1px solid var(--hb-line);
    text-align: center;
    color: var(--hb-text);
    transition: all .25s;
    display: block;
}
.hb-tool:hover { transform: translateY(-3px); box-shadow: var(--hb-shadow); border-color: var(--hb-gold); color: var(--hb-text); }
.hb-tool__icon { font-size: 2.2rem; margin-bottom: 14px; color: var(--hb-gold); }
.hb-tool__title { font-size: 1rem; margin-bottom: 12px; line-height: 1.35; min-height: 2.7em; color: var(--hb-navy); }
.hb-tool__excerpt { font-size: .85rem; color: var(--hb-muted); margin-bottom: 12px; min-height: 3em; }
.hb-tool__more { font-size: .85rem; color: var(--hb-gold); font-weight: 600; }
.hb-tools__more { text-align: center; margin-top: 40px; }

/* ----- About ----- */
.hb-about { background: #fff; }
.hb-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.hb-checks { list-style: none; padding: 0; margin: 24px 0 32px; }
.hb-checks li { padding: 8px 0 8px 28px; position: relative; }
.hb-checks li::before {
    content: "✓"; position: absolute; left: 0;
    color: var(--hb-gold); font-weight: 700; font-size: 1.1rem;
}
.hb-about__visual { position: relative; min-height: 380px; }
.hb-about__decor {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--hb-navy) 0%, var(--hb-navy-2) 100%);
    border-radius: 12px;
    transform: rotate(-3deg);
}
.hb-about__quote {
    position: absolute; inset: 30px;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: var(--hb-shadow-lg);
}
.hb-about__quote p {
    font-family: var(--hb-serif); font-size: 1.5rem; font-style: italic;
    color: var(--hb-navy); margin-bottom: 14px;
}
.hb-about__quote cite { color: var(--hb-gold); font-weight: 600; font-style: normal; }

/* ----- Neden Biz ----- */
.hb-why { background: #fff; }
.hb-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 270px));
    gap: 24px;
    justify-content: center;
}
.hb-why__card {
    background: var(--hb-cream);
    padding: 36px 28px;
    border-radius: var(--hb-radius);
    text-align: center;
    border: 1px solid var(--hb-line);
    transition: all .3s;
}
.hb-why__card:hover { transform: translateY(-4px); box-shadow: var(--hb-shadow); border-color: var(--hb-gold); }
.hb-why__icon { font-size: 2.6rem; margin-bottom: 16px; }
.hb-why__card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--hb-navy); }
.hb-why__card p { font-size: .9rem; color: var(--hb-muted); margin: 0; line-height: 1.65; }

/* ----- Team ----- */
.hb-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 270px));
    gap: 24px;
    justify-content: center;
}
.hb-person {
    background: #fff;
    border-radius: var(--hb-radius);
    overflow: hidden;
    border: 1px solid var(--hb-line);
    transition: all .3s;
    display: block;
    color: var(--hb-text);
}
.hb-person:hover { transform: translateY(-4px); box-shadow: var(--hb-shadow); }
.hb-person__photo {
    aspect-ratio: 4/5;
    background: var(--hb-cream);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hb-person__photo img { width: 100%; height: 100%; object-fit: cover; }
.hb-person__placeholder { font-size: 4rem; color: var(--hb-muted); opacity: .3; }
.hb-person__placeholder--lg { font-size: 7rem; }
.hb-person__info { padding: 20px 22px; text-align: center; }
.hb-person__info h3 { margin-bottom: 4px; font-size: 1.1rem; }
.hb-person__info p { color: var(--hb-gold); font-size: .85rem; letter-spacing: .05em; margin: 0; font-weight: 600; }

/* ----- Blog cards ----- */
.hb-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
    gap: 28px;
    justify-content: center;
}
.hb-card {
    background: #fff;
    border-radius: var(--hb-radius);
    overflow: hidden;
    border: 1px solid var(--hb-line);
    transition: all .3s;
}
.hb-card:hover { transform: translateY(-4px); box-shadow: var(--hb-shadow); }
.hb-card__media { display: block; aspect-ratio: 16/10; background: var(--hb-cream); overflow: hidden; }
.hb-card__media img { width: 100%; height: 100%; object-fit: cover; }
.hb-card__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 3rem; color: var(--hb-muted); opacity: .3; }
.hb-card__body { padding: 22px 24px 26px; }
.hb-card__date { font-size: .8rem; color: var(--hb-gold); letter-spacing: .05em; text-transform: uppercase; }
.hb-card__title { margin: 8px 0 10px; font-size: 1.15rem; line-height: 1.3; }
.hb-card__title a { color: var(--hb-navy); }
.hb-card__title a:hover { color: var(--hb-gold); }
.hb-card__more { display: inline-block; margin-top: 10px; font-size: .85rem; color: var(--hb-gold); font-weight: 600; }

/* ----- CTA ----- */
.hb-cta { background: linear-gradient(135deg, var(--hb-navy) 0%, var(--hb-navy-2) 100%); color: #fff; padding: 80px 0; text-align: center; }
.hb-cta--inline { background: var(--hb-cream); color: var(--hb-text); padding: 60px 0 20px; }
.hb-cta--inline .hb-cta__inner { background: #fff; padding: 50px; border-radius: 12px; border: 1px solid var(--hb-line); }
.hb-cta h2 { color: #fff; font-size: 2.2rem; }
.hb-cta--inline h2 { color: var(--hb-navy); }
.hb-cta p { color: #d8dee8; font-size: 1.1rem; margin-bottom: 28px; }
.hb-cta--inline p { color: var(--hb-muted); }

/* =========================================================================
   Page heads
   ========================================================================= */
.hb-page-head {
    background: var(--hb-navy);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
    background-image: linear-gradient(135deg, var(--hb-navy), var(--hb-navy-2));
}
.hb-page-head h1 { color: #fff; }
.hb-page-head p { color: #cbd5e1; max-width: 600px; margin: 14px auto 0; }
.hb-page-head .hb-eyebrow { color: var(--hb-gold-2); }
.hb-meta { color: #cbd5e1; font-size: .9rem; }

/* =========================================================================
   Profile / Single
   ========================================================================= */
.hb-profile { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.hb-profile__photo {
    aspect-ratio: 4/5;
    background: var(--hb-cream);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--hb-shadow);
    display: flex; align-items: center; justify-content: center;
}
.hb-profile__photo img { width: 100%; height: 100%; object-fit: cover; }
.hb-profile__contact { list-style: none; padding: 0; margin: 24px 0; }
.hb-profile__contact li { padding: 8px 0; border-bottom: 1px solid var(--hb-line); }

.hb-single__media { margin-bottom: 40px; }
.hb-single__media img { border-radius: 8px; }

.hb-single__nav {
    display: flex; justify-content: space-between;
    padding: 40px 0 0; margin-top: 40px;
    border-top: 1px solid var(--hb-line);
    gap: 20px;
}

/* =========================================================================
   Prose / typography for content
   ========================================================================= */
.hb-prose { max-width: 760px; margin: 0 auto; text-align: justify; hyphens: auto; }
.hb-prose h1, .hb-prose h2, .hb-prose h3, .hb-prose h4 { text-align: left; }
.hb-prose h2 { margin-top: 1.8em; }
.hb-prose h3 { margin-top: 1.5em; }
.hb-prose blockquote {
    border-left: 4px solid var(--hb-gold);
    padding: 6px 22px;
    margin: 1.5em 0;
    color: var(--hb-muted);
    font-style: italic;
}
.hb-prose ul, .hb-prose ol { padding-left: 22px; }
.hb-prose img { border-radius: 8px; margin: 1.2em 0; }

/* =========================================================================
   Contact
   ========================================================================= */
.hb-contact { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.hb-contact__list { list-style: none; padding: 0; margin: 16px 0 0; }
.hb-contact__list li { padding: 14px 0; border-bottom: 1px solid var(--hb-line); }
.hb-contact__list strong { color: var(--hb-navy); display: block; margin-bottom: 4px; }
.hb-map { margin-top: 60px; border-radius: 12px; overflow: hidden; box-shadow: var(--hb-shadow); }
.hb-map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* =========================================================================
   Footer — harbiye stili 5 sütun + buton bandı
   ========================================================================= */
.hb-footer { background: #0a1f35; color: #b0bdcc; padding-top: 60px; }
.hb-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 45px;
}
.hb-footer__col p { margin: 0 0 10px; font-size: .9rem; }
.hb-footer__col--brand p { color: #cfd8e4; }
.hb-footer__col--brand a { color: #cfd8e4; }
.hb-footer__col--brand a:hover { color: var(--hb-gold-2); }
.hb-footer__addr { color: #cfd8e4; font-size: .92rem; line-height: 1.7; margin-bottom: 14px !important; }
.hb-footer__brand { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.hb-footer__brand-line { font-size: .65rem; color: var(--hb-gold-2); letter-spacing: .15em; font-weight: 400; }
.hb-footer__menu { list-style: none; padding: 0; margin: 0; }
.hb-footer__menu li { padding: 4px 0; font-size: .9rem; line-height: 1.4; }
.hb-footer__menu a { color: #b0bdcc; }
.hb-footer__menu a:hover { color: var(--hb-gold-2); }
.hb-footer__all { color: var(--hb-gold-2) !important; font-weight: 600; font-size: .85rem !important; }
.hb-footer__empty { color: #6b7889; font-size: .82rem; font-style: italic; }

/* Renkli buton bandı */
.hb-footer__actions {
    background: #06192e;
    padding: 26px 0;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.hb-footer__actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}
.hb-fbtn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    padding: 16px 22px;
    border-radius: 6px;
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .03em;
    transition: all .2s;
}
.hb-fbtn:hover { transform: translateY(-2px); color: #fff !important; }
.hb-fbtn__icon { font-size: 1.4rem; }
.hb-fbtn--wa   { background: #25D366; }
.hb-fbtn--wa:hover { background: #1faa56; }
.hb-fbtn--book { background: var(--hb-gold); }
.hb-fbtn--book:hover { background: #c9a276; }
.hb-fbtn--call { background: #2563EB; }
.hb-fbtn--call:hover { background: #1d4dd0; }
.hb-footer h4 {
    color: #fff;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(176, 141, 87, .3);
    font-family: var(--hb-sans);
    font-weight: 600;
}
.hb-footer__contact { list-style: none; padding: 0; margin: 0; }
.hb-footer__contact li { padding: 5px 0; }
.hb-footer a { color: #b0bdcc; }
.hb-footer a:hover { color: var(--hb-gold-2); }
.hb-social { display: flex; gap: 10px; margin-top: 16px; }
.hb-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .8rem;
}
.hb-social a:hover { background: var(--hb-gold); color: #fff; border-color: var(--hb-gold); }

.hb-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    text-align: center;
    font-size: .85rem;
}
.hb-footer__bottom p { margin: 4px 0; }
.hb-footer__legal { color: #6b7889; font-size: .78rem; }

.hb-wa-fab {
    position: fixed; bottom: 24px; right: 24px;
    background: #25D366; color: #fff;
    padding: 14px 22px; border-radius: 40px;
    font-weight: 600; font-size: .9rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
    z-index: 50;
}
.hb-wa-fab:hover { transform: translateY(-2px); color: #fff; }

/* =========================================================================
   Helpers
   ========================================================================= */
.hb-pagination { padding: 40px 0; display: flex; justify-content: center; }
.hb-pagination .nav-links { display: flex; gap: 8px; }
.hb-pagination .page-numbers {
    padding: 10px 16px;
    border: 1px solid var(--hb-line);
    border-radius: 6px;
    color: var(--hb-text);
}
.hb-pagination .page-numbers.current,
.hb-pagination .page-numbers:hover { background: var(--hb-navy); color: #fff; border-color: var(--hb-navy); }

.hb-empty { color: var(--hb-muted); text-align: center; grid-column: 1 / -1; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
    /* auto-fit grid'ler responsive davranıyor; ek override gerekmiyor */
    .hb-hero__inner { grid-template-columns: 1fr; }
    .hb-about__grid { grid-template-columns: 1fr; }
    .hb-profile { grid-template-columns: 1fr; }
    .hb-profile__photo { max-width: 380px; margin: 0 auto; }
    .hb-contact { grid-template-columns: 1fr; }
    .hb-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .hb-burger { display: block; }
    .hb-menu {
        position: absolute; left: 0; right: 0; top: 100%;
        background: var(--hb-navy); border-bottom: 1px solid rgba(255,255,255,.1);
        display: none;
        padding: 12px 0;
        margin-left: 0;
    }
    .hb-menu.is-open { display: block; }
    .hb-menu__list { flex-direction: column; gap: 0; }
    .hb-menu__list li { padding: 0 5%; }
    .hb-menu__list a { display: block; padding: 12px 0; color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }
    .hb-menu__list a::after { display: none; }
    .hb-nav__inner { position: relative; }
    .hb-nav__cta { padding: 8px 14px; font-size: .82rem; }

    .hb-section { padding: 60px 0; }
    .hb-hero { padding: 60px 0 70px; }
    .hb-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .hb-areas__grid, .hb-team__grid, .hb-blog__grid, .hb-why__grid, .hb-tools__grid { grid-template-columns: minmax(0, 1fr); }
    .hb-form__row { grid-template-columns: 1fr; }
    .hb-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .hb-fbtn { padding: 14px 18px; font-size: .95rem; }
    .hb-topbar { font-size: .78rem; }
    .hb-topbar__inner { justify-content: center; gap: 8px; }
    .hb-topbar__left { display: none; }
    .hb-topbar__right { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .hb-topbar__cta { display: none; }
    .hb-action { padding: 20px; }
    .hb-action__icon { width: 50px; height: 50px; font-size: 1.6rem; }
}
