:root {
    /*
    --primary: #18a7a7;
    --primary-dark: #0e7f87;
    --primary-dark-hover: #0c7077;
    --primary-hover: #149898;
    --primary-soft: #e8f7f7;
    --accent: #89d7c7;
    --accent-strong: #56c8b2;
    --white-90: rgba(24, 167, 167, .90);
    --primary-deep-95: rgba(13, 127, 135, .95);
    */

    --primary: #da0110;
    --primary-dark: #000;
    --primary-dark-hover: #da0110;
    --primary-hover: #da0110;
    --primary-soft: #e8f7f7;
    --accent: #da0110;
    --accent-strong: #da0110;
    --white-90: rgba(218, 1, 16, .90);
    --primary-deep-95: rgba(0, 0, 0, .95);


    --ink: #203246;
    --muted: #718096;
    --surface: #ffffff;
    --surface-soft: #fbfcfd;
    --surface-soft-alt: #f4f7f9;
    --footer: #1d2234;
    --white-92: rgba(255, 255, 255, .92);
    --white-80: rgba(255, 255, 255, .8);
    --white-70: rgba(255, 255, 255, .7);
    --white-74: rgba(255, 255, 255, .74);
    --white-50: rgba(255, 255, 255, .5);
    --white-42: rgba(255, 255, 255, .42);
    --white-26: rgba(255, 255, 255, .26);
    --white-18: rgba(255, 255, 255, .18);
    --white-06: rgba(255, 255, 255, .06);
    --white-04: rgba(255, 255, 255, .04);
    --white-14: rgba(255, 255, 255, .14);
    --white-12: rgba(255, 255, 255, .12);
    --primary-glow-08: rgba(24, 167, 167, 0.08);
    --primary-glow-10: rgba(24, 167, 167, .10);
    --primary-glow-22: rgba(24, 167, 167, .22);
    --primary-deep-28: rgba(14, 127, 135, .28);
    --border-dark-soft: rgba(23, 66, 77, .06);
    --border-panel-soft: rgba(16, 86, 96, .05);
    --overlay-dark-94: rgba(18, 22, 35, .94);
    --overlay-dark-78: rgba(22, 33, 49, .78);
    --overlay-dark-24: rgba(18, 22, 35, .24);
    --overlay-dark-66: rgba(18, 22, 35, .66);
    --overlay-dark-12: rgba(18, 22, 35, .12);
    --text-shadow-dark: 0 2px 14px rgba(0, 0, 0, .22);
    --shadow-color: rgba(28, 44, 63, 0.10);
    --shadow: 0 18px 45px var(--shadow-color);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --hero-overlay-72: rgba(18, 22, 35, .72);
    --hero-overlay-56: rgba(18, 22, 35, .56);
    --text-soft-dark: #4f5b6b;
    --text-body: #556273;
    --text-soft-light: #8d98a8;
    --border-light-soft: #dde6ef;
    --border-light-hover: #c9d8e5;
    --surface-muted: #f6f8fb;
    --surface-input: #f7f8fa;
    --shadow-soft: 0 18px 35px rgba(32, 50, 70, .08);
    --shadow-card-soft: 0 16px 34px rgba(32, 50, 70, .07);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, var(--primary-glow-08), transparent 28%),
        linear-gradient(180deg, var(--surface-soft) 0%, var(--surface-soft-alt) 100%);
}

a {
    text-decoration: none;
}

.section-space {
    padding: 90px 0;
}

.topbar {
    height: 8px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--accent-strong));
}

.navbar-shell {
    background: var(--white-92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark-soft);
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: .02em;
}

.navbar-brand img {
    width: 100%;
    max-width: 250px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--surface);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: var(--shadow);
}

.nav-link {
    color: var(--ink);
    font-weight: 500;
}

.btn-brand {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border: 0;
    color: var(--surface);
    padding: 14px 26px;
    border-radius: 999px;
    box-shadow: 0 14px 30px var(--primary-glow-22);
}

.btn-brand:hover,
.btn-brand:focus {
    color: var(--surface);
    background: linear-gradient(135deg, var(--primary-dark-hover), var(--primary-hover));
}

.btn-outline-brand {
    border: 1.5px solid var(--primary);
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    background: var(--surface);
}

.hero {
    padding: 0px 0px 30px;
}

.hero-slider {
    margin-bottom: 42px;
}

.hero-slider__inner {
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-slide {
    position: relative;
    min-height: 560px;
    padding: 72px 70px;
    color: var(--surface);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--overlay-dark-94) 0%, var(--overlay-dark-78) 38%, var(--overlay-dark-66) 62%, var(--overlay-dark-24) 100%);
}

.hero-slide>.row {
    position: relative;
    z-index: 1;
    min-height: 416px;
}

.hero-slide--first {
    background-image: url('../doneler/anasayfa.jpg');
}

.hero-slide--second {
    background-image: url('https://images.unsplash.com/photo-1519340241574-2cec6aef0c01?auto=format&fit=crop&w=1600&q=80');
}

.hero-slide--third {
    background-image: url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1600&q=80');
}

.hero-slide__content {
    max-width: 620px;
    /*padding: 28px 30px;*/
    /*border-radius: var(--radius-lg);*/
    /*background: linear-gradient(135deg, var(--overlay-dark-66), var(--overlay-dark-12));*/
    backdrop-filter: blur(0px);
}

.hero-slide__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--surface);
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-shadow: var(--text-shadow-dark);
}

.hero-slide__content h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.06;
    font-weight: 800;
    color: var(--surface);
    margin-bottom: 18px;
    text-shadow: var(--text-shadow-dark);
}

.hero-slide__content p {
    max-width: 560px;
    color: var(--surface);
    font-size: 1.06rem;
    line-height: 1.85;
    margin-bottom: 26px;
    text-shadow: var(--text-shadow-dark);
}

.hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-slide__actions .btn-outline-brand {
    color: var(--surface);
    border-color: var(--white-50);
    background: transparent;
}

.hero-slide__actions .btn-outline-brand:hover,
.hero-slide__actions .btn-outline-brand:focus {
    color: var(--ink);
    background: var(--surface);
    border-color: var(--surface);
}

.hero-slide__stats,
.hero-slide__quote,
.hero-slide__badge-panel {
    position: relative;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--white-12);
    border: 1px solid var(--white-18);
    backdrop-filter: blur(10px);
}

.hero-slide__stats {
    display: grid;
    gap: 16px;
}

.hero-slide__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-slide__stat strong {
    color: var(--surface);
    font-size: 1.5rem;
    font-weight: 800;
}

.hero-slide__stat span,
.hero-slide__quote p {
    color: var(--white-80);
    line-height: 1.7;
}

.hero-slide__quote {
    max-width: 360px;
}

.hero-slide__quote p {
    margin: 0;
    font-size: 1.05rem;
}

.hero-slide__badge-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: flex-start;
    max-width: 330px;
}

.hero-slide__badge-panel span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--white-14);
    color: var(--surface);
    font-weight: 700;
}

.hero-slider__indicators {
    margin-bottom: 22px;
}

.hero-slider__indicators [data-bs-target] {
    width: 38px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background-color: var(--white-50);
}

.hero-slider__indicators .active {
    background-color: var(--surface);
}

.hero-slider__control {
    width: 64px;
    opacity: 1;
}

.hero-slider__control .carousel-control-prev-icon,
.hero-slider__control .carousel-control-next-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white-14);
    background-size: 48% 48%;
    border: 1px solid var(--white-18);
}

.section-title {
    max-width: 560px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-title p,
.soft-text {
    color: var(--muted);
}

.hero-intro {
    text-align: center;
    margin-bottom: 34px;
}

.hero-intro .eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-intro h1 {
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.04;
    margin-bottom: 14px;
}

.hero-intro p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.05rem;
}

.feature-card,
.service-card,
.blog-card,
.step-card {
    background: var(--surface);
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.feature-card {
    position: relative;
    padding: 28px 22px;
    height: 100%;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent));
}

.feature-icon,
.step-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-soft), var(--surface));
    color: var(--primary);
    font-size: 1.8rem;
    box-shadow: inset 0 0 0 1px var(--primary-glow-10);
}

.feature-card h3,
.service-card h3,
.blog-card h3,
.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.feature-card p,
.service-card p,
.blog-card p,
.step-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.about-copy h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.about-copy .lead-tag {
    color: var(--ink);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .82rem;
}

.ethics-panel {
    position: relative;
    padding: 42px;
    min-height: 100%;
    color: var(--surface);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, var(--primary-deep-95), var(--white-90)),
        url('../images/bg.jpg') center/cover;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ethics-panel::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid var(--white-18);
    border-radius: 20px;
}

.ethics-panel>* {
    position: relative;
    z-index: 1;
}

.services-wrap {
    background: var(--white-70);
    border-radius: var(--radius-xl);
    padding: 34px;
    box-shadow: inset 0 0 0 1px var(--border-panel-soft);
}

.service-card,
.blog-card {
    overflow: hidden;
}

.service-card img,
.blog-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.card-body-custom {
    padding: 22px 22px 24px;
}

.blog-card .card-body-custom p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-height: 1.75;
    max-height: calc(1.75em * 5);
    overflow: hidden;
}

.card-kicker {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.step-card {
    padding: 28px;
    height: 100%;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}

.step-card .step-number {
    font-size: .9rem;
    font-weight: 800;
    color: var(--primary-deep-28);
    letter-spacing: .2em;
    margin-bottom: 12px;
}

.testimonial {
    overflow: hidden;
    color: var(--surface);
    background:
        linear-gradient(90deg, var(--overlay-dark-94), var(--overlay-dark-78)),
        url('https://images.unsplash.com/photo-1516534775068-ba3e7458af70?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.testimonial .quote-mark {
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: 1;
    opacity: .18;
}

.testimonial-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.testimonial-item {
    min-height: 260px;
}

.testimonial-nav .btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--white-26);
    color: var(--surface);
}

.testimonial-label {
    letter-spacing: .16em;
}

.testimonial-line {
    display: inline-block;
    width: 48px;
    height: 1px;
    background: var(--white-50);
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--surface);
}

.social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white-06);
    color: var(--surface);
}

.footer h5 {
    color: var(--surface);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer a {
    color: var(--white-74);
}

.footer .newsletter {
    background: var(--white-04);
    border-radius: 18px;
    padding: 10px;
}

.footer .form-control {
    border: 0;
    background: transparent;
    color: var(--surface);
    box-shadow: none;
}

.footer .form-control::placeholder {
    color: var(--white-42);
}

.mini-divider {
    width: 68px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent));
    margin: 0 auto 18px;
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 72px 0;
    }

    .services-wrap {
        padding: 20px;
    }

    .ethics-panel {
        padding: 30px;
    }

    .hero-slide {
        min-height: 520px;
        padding: 56px 42px;
    }

    .hero-slide>.row {
        min-height: 100%;
    }
}

.about-page {
    background: var(--surface);
}

.about-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, var(--hero-overlay-72), var(--hero-overlay-56)),
        url('../images/pagebg.jpg') center/cover no-repeat;
}

.about-hero__content {
    max-width: 100%;
    padding: 50px 0;
    color: var(--surface);
}

.about-hero__eyebrow {
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
}

.about-hero h1 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--surface);
}

.about-hero__divider {
    width: 72px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: var(--surface);
}

.about-content {
    padding-top: 86px;
    padding-bottom: 86px;
    background: var(--surface);
}

.about-article {
    max-width: 100%;
    margin: 0 auto;
}

.about-article__eyebrow {
    color: var(--text-soft-dark);
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-article h2 {
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}

.about-article__label {
    font-size: .84rem;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 26px;
}

.about-article p,
.about-article li {
    font-size: .98rem;
    line-height: 1.95;
    color: var(--text-body);
}

.about-article p {
    margin-bottom: 18px;
}

.about-article__list {
    padding-left: 18px;
    margin-bottom: 22px;
}

.about-article__list li {
    margin-bottom: 8px;
}

.about-article h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
    margin-top: 10px;
    margin-bottom: 12px;
}

@media (max-width: 767.98px) {
    .hero-slide {
        min-height: 500px;
        padding: 42px 20px 56px;
    }

    .hero-slide__content {
        padding: 22px 18px;
    }

    .hero-slide__content h1 {
        font-size: 2.2rem;
    }

    .hero-slide__stats,
    .hero-slide__quote,
    .hero-slide__badge-panel {
        max-width: 100%;
    }

    .hero-slider__control {
        display: none;
    }

    .about-hero {
        min-height: 280px;
    }

    .about-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-article p,
    .about-article li {
        line-height: 1.8;
    }
}

.contact-page {
    background: var(--surface);
}

.contact-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, var(--hero-overlay-72), var(--hero-overlay-56)), url(../images/pagebg.jpg) center / cover no-repeat;
}

.contact-hero__content {
    max-width: 100%;
    padding: 50px 0;
    color: var(--surface);
}

.contact-hero__eyebrow {
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
}

.contact-hero h1 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--surface);
}

.contact-hero__divider {
    width: 72px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: var(--surface);
}

.contact-details {
    padding-top: 74px;
    padding-bottom: 86px;
    background: var(--surface);
}

.contact-detail {
    padding: 10px 8px;
}

.contact-detail__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 12px;
    border-radius: 50%;
    color: var(--text-soft-dark);
    font-size: 2rem;
}

.contact-detail h2 {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.contact-detail p,
.contact-detail a {
    margin: 0;
    color: var(--text-body);
    font-size: .98rem;
    line-height: 1.7;
    font-weight: 600;
}

.contact-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 6px;
}

.contact-socials a {
    color: var(--primary);
    font-size: .95rem;
}

.contact-panel {
    margin-top: 48px;
}

.contact-map,
.contact-form-wrap {
    height: 100%;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light-soft);
    background: var(--surface-muted);
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 390px;
    border: 0;
}

.contact-form-wrap h2 {
    margin-bottom: 18px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.contact-form .form-control {
    min-height: 52px;
    border: 1px solid var(--surface-muted);
    border-radius: 14px;
    background: var(--surface-input);
    color: var(--text-body);
    padding: 14px 18px;
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form .form-control::placeholder {
    color: var(--text-soft-light);
}

.contact-form .form-control:focus {
    border-color: var(--border-light-hover);
    background: var(--surface);
    box-shadow: none;
}

.contact-form__captcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 320px;
    min-height: 74px;
    padding: 14px 16px;
    border: 1px solid var(--border-light-soft);
    border-radius: 8px;
    background: var(--surface);
}

.contact-form__check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--text-body);
    font-size: .9rem;
}

.contact-form__check input {
    width: 18px;
    height: 18px;
}

.contact-form__captcha-badge {
    color: var(--text-soft-light);
    font-size: .82rem;
    font-weight: 600;
}

.contact-submit {
    min-width: 138px;
    padding: 12px 28px;
    border: 1px solid var(--border-light-hover);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.contact-submit:hover,
.contact-submit:focus {
    border-color: var(--primary);
    color: var(--primary-dark);
    background: var(--surface);
}

@media (max-width: 991.98px) {
    .contact-details {
        padding-top: 60px;
        padding-bottom: 72px;
    }

    .contact-map iframe {
        min-height: 320px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        min-height: 280px;
    }

    .contact-form__captcha {
        max-width: 100%;
    }
}

.blog-detail-page {
    background: var(--surface);
}

.blog-detail-card,
.blog-sidebar__box {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card-soft);
    border: 1px solid var(--border-light-soft);
}

.blog-detail-card {
    overflow: hidden;
}

.blog-detail-card__image {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.blog-detail-card__body {
    padding: 34px;
}

.blog-detail-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.blog-detail-card__date {
    color: var(--text-soft-light);
    font-size: .92rem;
    font-weight: 600;
}

.blog-detail-card__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 22px;
}

.blog-detail-card h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-top: 30px;
    margin-bottom: 14px;
}

.blog-detail-card p,
.blog-detail-card li {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.9;
}

.blog-detail-card p {
    margin-bottom: 18px;
}

.blog-detail-card__quote {
    margin: 28px 0;
    padding: 24px 26px;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: var(--surface-muted);
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.8;
}

.blog-detail-card__list {
    padding-left: 20px;
    margin-bottom: 16px;
}

.blog-detail-card__list li {
    margin-bottom: 10px;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-sidebar__box {
    padding: 24px;
}

.blog-sidebar__box h3 {
    margin-bottom: 18px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ink);
}

.blog-sidebar__post {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light-soft);
}

.blog-sidebar__post:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.blog-sidebar__post img {
    width: 88px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-sidebar__post strong {
    display: block;
    color: var(--ink);
    font-size: .95rem;
    line-height: 1.5;
    margin-bottom: 6px;
}

.blog-sidebar__post small {
    color: var(--text-soft-light);
    font-size: .84rem;
    font-weight: 600;
}

.blog-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-sidebar__tags a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--surface-muted);
    color: var(--text-body);
    font-size: .9rem;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .blog-detail-card__image {
        height: 340px;
    }
}

@media (max-width: 767.98px) {
    .blog-detail-card__body {
        padding: 24px 20px;
    }

    .blog-detail-card__image {
        height: 260px;
    }
}

.gallery-page {
    background: var(--surface);
}

.gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 320px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card-soft);
}

.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .45s ease;
}

.gallery-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(180deg, transparent 20%, var(--overlay-dark-94) 100%);
    color: var(--surface);
}

.gallery-card__overlay strong {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-card__overlay small {
    font-size: .92rem;
    color: var(--white-80);
}

.gallery-card:hover img,
.gallery-card:focus img {
    transform: scale(1.06);
}

.faq-page {
    background: var(--surface);
}

.faq-title {
    max-width: 680px;
}

.faq-accordion {
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-light-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-card-soft);
}

.faq-item .accordion-button {
    padding: 24px 26px;
    background: var(--surface);
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 700;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    color: var(--primary-dark);
    background: var(--surface);
}

.faq-item .accordion-button::after {
    background-size: 1rem;
}

.faq-item .accordion-body {
    padding: 0 26px 24px;
    color: var(--text-body);
    font-size: .98rem;
    line-height: 1.9;
}

.faq-sidecard {
    position: sticky;
    top: 110px;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--primary-deep-95), var(--white-90));
    color: var(--surface);
    box-shadow: var(--shadow);
}

.faq-sidecard h3 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.faq-sidecard p {
    color: var(--white-80);
    line-height: 1.8;
    margin-bottom: 22px;
}

.faq-sidecard .card-kicker {
    color: var(--white-80);
}

.faq-sidecard__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.faq-sidecard__contact a {
    color: var(--surface);
    font-weight: 600;
}

.faq-sidecard__contact i {
    margin-right: 8px;
}

@media (max-width: 991.98px) {
    .faq-sidecard {
        position: static;
    }
}

.limit5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.limit15 {
    display: -webkit-box;
    -webkit-line-clamp: 15;
    -webkit-box-orient: vertical;
    line-height: 1.75;
    max-height: calc(1.75em * 15);
    overflow: hidden;
}