/* HOME_CONSOLIDATED_V1 */

.structured-home {
    overflow: hidden;
    background: #fff;
    color: #242424;
}

.structured-hero {
    padding: 68px 0 76px;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(155, 26, 31, .12),
            transparent 34%
        ),
        #fffaf6;
}

.structured-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, .95fr);
    gap: 58px;
    align-items: center;
}

.structured-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.structured-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(45px, 5.5vw, 75px);
    line-height: 1;
    letter-spacing: -.055em;
}

.structured-hero-copy > p {
    max-width: 670px;
    margin: 23px 0 0;
    color: #666;
    font-size: 18px;
    line-height: 1.7;
}

.structured-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.structured-btn {
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.structured-btn-primary {
    background: var(--brand-primary);
    color: #fff;
    box-shadow:
        0 12px 30px
        rgba(155, 26, 31, .20);
}

.structured-btn-light {
    border-color: #ddd6d0;
    background: #fff;
    color: #222;
}

.structured-btn-white {
    background: #fff;
    color: var(--brand-primary);
}

.structured-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 27px;
    color: #5f5f5f;
    font-size: 13px;
    font-weight: 700;
}

.structured-trust span::before {
    margin-right: 7px;
    content: "✓";
    color: var(--brand-primary);
}

.structured-hero-image {
    overflow: hidden;
    aspect-ratio: 4 / 3.25;
    border-radius: 28px;
    background: #eee;
    box-shadow:
        0 24px 60px
        rgba(0,0,0,.13);
}

.structured-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.structured-content {
    padding: 25px 0 80px;
}

.home-structured-section {
    padding: 72px 0;
    border-bottom: 1px solid #eee8e3;
}

.home-structured-section:last-child {
    border-bottom: 0;
}

.home-structured-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.home-structured-heading h2 {
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.home-structured-heading p {
    margin: 15px 0 0;
    color: #777;
}

.home-structured-price-grid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
    gap: 17px;
}

.home-structured-price-card {
    position: relative;
    min-height: 260px;
    padding: 26px;
    border: 1px solid #ebe5df;
    border-radius: 20px;
    background: #fff;
    box-shadow:
        0 10px 30px
        rgba(0,0,0,.045);
}

.home-structured-price-card h3 {
    margin: 0;
    color: #292929;
    font-size: 19px;
    line-height: 1.25;
}

.home-structured-price {
    margin-top: 17px;
    color: var(--brand-primary);
    font-size: 31px;
    font-weight: 900;
    letter-spacing: -.035em;
}

.home-structured-price-card p {
    margin: 13px 0 45px;
    color: #777;
    font-size: 13px;
    line-height: 1.65;
}

.home-structured-card-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.home-structured-price-card
.home-structured-card-link {
    position: absolute;
    bottom: 24px;
    left: 26px;
}

.home-structured-card-link span {
    margin-left: 4px;
}

.home-structured-media-grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );
    gap: 17px;
}

.home-structured-media-card {
    overflow: hidden;
    border: 1px solid #ebe5df;
    border-radius: 20px;
    background: #fff;
    box-shadow:
        0 10px 30px
        rgba(0,0,0,.045);
}

.home-structured-media-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4f4f4;
}

.home-structured-media-image picture,
.home-structured-media-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.home-structured-media-image img {
    object-fit: cover;
}

.home-structured-media-body {
    padding: 21px;
}

.home-structured-media-body h3 {
    margin: 0;
    color: #292929;
    font-size: 18px;
    line-height: 1.25;
}

.home-structured-media-body p {
    margin: 10px 0 17px;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.structured-final-cta {
    padding: 10px 0 90px;
}

.structured-final-card {
    padding: 48px;
    border-radius: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background:
        linear-gradient(
            135deg,
            var(--brand-secondary),
            var(--brand-primary)
        );
    color: #fff;
}

.structured-final-card
.structured-eyebrow {
    color: rgba(255,255,255,.75);
}

.structured-final-card h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.structured-final-card p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.78);
}

@media (max-width: 1000px) {
    .structured-hero-grid {
        grid-template-columns: 1fr 390px;
        gap: 35px;
    }

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

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

@media (max-width: 760px) {
    .structured-hero-grid {
        grid-template-columns: 1fr;
    }

    .structured-hero {
        padding: 50px 0 58px;
    }

    .structured-hero h1 {
        font-size:
            clamp(40px, 12vw, 58px);
    }

    .home-structured-section {
        padding: 55px 0;
    }

    .structured-final-card {
        padding: 32px 25px;
        display: block;
    }

    .structured-final-card
    .structured-btn {
        margin-top: 24px;
    }
}

@media (max-width: 520px) {
    .home-structured-price-grid,
    .home-structured-media-grid {
        grid-template-columns: 1fr;
    }

    .structured-hero-actions {
        display: grid;
    }

    .structured-btn {
        width: 100%;
    }

    .structured-trust {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* ========================================
   STRUCTURED SEO CONTENT V3
======================================== */

.structured-content
.content-block {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.structured-content
.content-block--wide {
    max-width: 1180px;
}

.structured-content
.content-block h2 {
    margin-top: 78px;
}

.structured-content
.content-block h3 {
    margin-top: 34px;
    font-size: clamp(22px, 3vw, 30px);
}

.structured-content
.content-block h4 {
    margin-top: 28px;
}

.structured-content
.content-block p {
    color: #535353;
    font-size: 16px;
    line-height: 1.82;
}

.structured-content
.content-block a {
    color: var(--brand-primary);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.structured-content
.content-block img {
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 18px;
}

.structured-content
.content-block ul,
.structured-content
.content-block ol {
    margin: 22px 0;
    padding-left: 24px;
}

.structured-content
.content-block li {
    margin: 7px 0;
}

.structured-content
.content-block table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
}

.structured-content
.content-block th,
.structured-content
.content-block td {
    padding: 12px 14px;
    border: 1px solid #e7e2dd;
    text-align: left;
}

.structured-content
.faq {
    max-width: 920px;
    margin: 24px auto 72px;
}

.structured-content
.faq details {
    padding: 0;
    border-bottom: 1px solid #e6e0da;
}

.structured-content
.faq summary {
    position: relative;
    padding: 22px 45px 22px 0;
    list-style: none;
    cursor: pointer;
    color: #252525;
    font-weight: 800;
}

.structured-content
.faq summary::-webkit-details-marker {
    display: none;
}

.structured-content
.faq summary::after {
    position: absolute;
    top: 19px;
    right: 4px;
    content: "+";
    color: var(--brand-primary);
    font-weight: 400;
}

.structured-content
.faq details[open]
summary::after {
    content: "−";
}

.structured-content
.faq-answer {
    padding: 0 45px 22px 0;
    color: #606060;
}

@media (max-width: 600px) {
    .structured-content
    .content-block h2 {
        margin-top: 55px;
    }

    .structured-content
    .content-block p {
        font-size: 15px;
    }
}

/* HOMEPAGE-V3-SEO */

.structured-content .content-block {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.structured-content .content-block--wide {
    max-width: 1180px;
}

.structured-content .content-block h2 {
    margin: 70px 0 22px;
    color: var(--brand-dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.structured-content .content-block h3 {
    margin: 34px 0 14px;
    color: var(--brand-dark);
    font-size: 25px;
    line-height: 1.25;
}

.structured-content .content-block h4 {
    margin: 26px 0 12px;
}

.structured-content .content-block p {
    margin: 0 0 18px;
    color: #555;
    font-size: 16px;
    line-height: 1.82;
}

.structured-content .content-block ul,
.structured-content .content-block ol {
    margin: 18px 0 22px;
    padding-left: 24px;
}

.structured-content .content-block li {
    margin: 7px 0;
}

.structured-content .content-block a {
    color: var(--brand-primary);
    text-underline-offset: 3px;
}

.structured-content .content-block img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 18px;
}

.structured-content .faq {
    max-width: 920px;
    margin: 10px auto 70px;
}

.structured-content .faq details {
    padding: 0;
    border-bottom: 1px solid #e5dfda;
}

.structured-content .faq summary {
    position: relative;
    padding: 21px 45px 21px 0;
    list-style: none;
    cursor: pointer;
    color: #252525;
    font-weight: 800;
}

.structured-content .faq summary::-webkit-details-marker {
    display: none;
}

.structured-content .faq summary::after {
    position: absolute;
    top: 17px;
    right: 4px;
    content: "+";
    color: var(--brand-primary);
    font-weight: 400;
}

.structured-content .faq details[open] summary::after {
    content: "−";
}

.structured-content .faq-answer {
    padding: 0 45px 22px 0;
    color: #5d5d5d;
}


/* SOURCE-SECTION-V4-CSS */

.source-section-v4 {
    padding: 74px 0;
    border-bottom: 1px solid #eee8e3;
}

.source-section-v4-grid {
    display: grid;
    align-items: center;
    gap: 56px;
}

.source-section-v4--none
.source-section-v4-grid {
    grid-template-columns: 1fr;
}

.source-section-v4--none
.source-section-v4-copy {
    max-width: 920px;
    margin-inline: auto;
}

.source-section-v4--right
.source-section-v4-grid,
.source-section-v4--left
.source-section-v4-grid {
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(340px, .95fr);
}

.source-section-v4--left
.source-section-v4-copy {
    order: 2;
}

.source-section-v4--left
.source-section-v4-media {
    order: 1;
}

.source-section-v4--grid
.source-section-v4-grid {
    grid-template-columns: 1fr;
}

.source-section-v4-copy h2 {
    margin: 0 0 22px;
    color: var(--brand-dark);
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.source-section-v4-content {
    color: #555;
    font-size: 16px;
    line-height: 1.82;
}

.source-section-v4-content p {
    margin: 0 0 17px;
}

.source-section-v4-content h3 {
    margin: 30px 0 13px;
    color: #272727;
    font-size: 23px;
    line-height: 1.25;
}

.source-section-v4-content h4 {
    margin: 24px 0 11px;
    color: #333;
    font-size: 19px;
}

.source-section-v4-content a {
    color: var(--brand-primary);
    font-weight: 650;
    text-underline-offset: 3px;
}

.source-section-v4-content ul,
.source-section-v4-content ol {
    padding-left: 22px;
}

.source-section-v4-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.source-section-v4--grid
.source-section-v4-media {
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
}

.source-section-v4-image {
    overflow: hidden;
    margin: 0;
    border: 1px solid #eee6df;
    border-radius: 22px;
    background: #f5f3f1;
    box-shadow:
        0 14px 40px
        rgba(0,0,0,.07);
}

.source-section-v4-image picture,
.source-section-v4-image img {
    width: 100%;
    display: block;
}

.source-section-v4-image img {
    height: auto;
    object-fit: cover;
}

.source-section-v4-image figcaption {
    padding: 10px 14px;
    color: #777;
    background: #fff;
    font-size: 12px;
}

@media (max-width: 850px) {

    .source-section-v4--right
    .source-section-v4-grid,
    .source-section-v4--left
    .source-section-v4-grid {
        grid-template-columns: 1fr;
    }

    .source-section-v4--left
    .source-section-v4-copy,
    .source-section-v4--left
    .source-section-v4-media {
        order: initial;
    }

}

@media (max-width: 560px) {

    .source-section-v4 {
        padding: 54px 0;
    }

    .source-section-v4--grid
    .source-section-v4-media {
        grid-template-columns: 1fr;
    }

    .source-section-v4-content {
        font-size: 15px;
    }

}

/* HOMEPAGE-V7-STRUCTURE */

/*
 * Ana sayfa dikey ritim
 */
.structured-content {
    padding-top: 10px;
}

.home-structured-section,
.source-section-v4 {
    scroll-margin-top: 115px;
}

/*
 * Uzun SEO bolumleri artik
 * dar ve okunabilir metin kolonu.
 */
.source-section-v4--none
.source-section-v4-copy,
.source-section-v4--grid
.source-section-v4-copy {
    width: 100%;
    max-width: 920px;
    margin-inline: auto;
}

/*
 * Uzun metin + resim:
 * Resimler metnin altinda galeri.
 */
.source-section-v4--grid
.source-section-v4-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}

.source-section-v4--grid
.source-section-v4-media {
    width: 100%;
    display: grid;
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(250px, 1fr)
        );
    gap: 18px;
}

/*
 * Kisa section iki kolon.
 */
.source-section-v4--right
.source-section-v4-grid,
.source-section-v4--left
.source-section-v4-grid {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, .80fr);
}

/*
 * Basliklar arasinda tutarli mesafe.
 */
.source-section-v4 {
    padding-top: 68px;
    padding-bottom: 68px;
}

.source-section-v4-copy h2 {
    margin-bottom: 20px;
}

.source-section-v4-content p:last-child {
    margin-bottom: 0;
}

/*
 * Resim tasarimi
 */
.source-section-v4-image {
    background: #fff;
}

.source-section-v4-image img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

/*
 * Panorama / banner'larda asiri kirpma olmasin.
 */
.source-section-v4--grid
.source-section-v4-image img {
    max-height: 360px;
    object-fit: contain;
    background: #f7f5f2;
}

/*
 * FAQ tek ve belirgin final bilgi bolumu.
 */
.structured-content .faq {
    max-width: 920px;
    margin-inline: auto;
    margin-bottom: 80px;
}

.structured-content .faq details {
    background: #fff;
}

/*
 * Mobil
 */
@media (max-width: 850px) {

    .source-section-v4--right
    .source-section-v4-grid,
    .source-section-v4--left
    .source-section-v4-grid {
        grid-template-columns: 1fr;
    }

    .source-section-v4--left
    .source-section-v4-copy,
    .source-section-v4--left
    .source-section-v4-media {
        order: initial;
    }

    .source-section-v4-image img,
    .source-section-v4--grid
    .source-section-v4-image img {
        max-height: none;
        object-fit: contain;
    }

}


/* =========================================================
   HOMEPAGE V8 - PREMIUM VISUAL POLISH
   ========================================================= */

.structured-home {
    --v8-surface: #ffffff;
    --v8-soft: #faf7f4;
    --v8-soft-2: #f5f0eb;
    --v8-border: #eadfd7;
    --v8-text: #272322;
    --v8-muted: #706967;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffdfb 45%,
            #ffffff 100%
        );
}

/* HERO */

.structured-hero {
    position: relative;
    padding: 80px 0 86px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 18%,
            rgba(185, 28, 28, .13),
            transparent 36%
        ),
        radial-gradient(
            circle at 10% 75%,
            rgba(217, 119, 6, .07),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fffaf6 0%,
            #fff 60%,
            #fdf7f4 100%
        );
}

.structured-hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -230px;
    top: -210px;
    border-radius: 50%;
    border: 1px solid rgba(185,28,28,.10);
}

.structured-hero-grid {
    position: relative;
    z-index: 1;
    gap: 70px;
}

.structured-eyebrow {
    padding: 8px 13px;
    border-radius: 999px;

    background:
        rgba(185,28,28,.07);

    letter-spacing: .11em;
}

.structured-hero h1 {
    max-width: 760px;
    font-size:
        clamp(
            46px,
            5.4vw,
            74px
        );

    line-height: .99;
}

.structured-hero-copy > p {
    max-width: 630px;
    color: #625d5b;
    font-size: 18px;
}

.structured-hero-image {
    position: relative;

    border:
        8px solid
        rgba(255,255,255,.85);

    border-radius: 30px;

    box-shadow:
        0 35px 80px
        rgba(57,31,24,.17);
}

.structured-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    box-shadow:
        inset 0 0 0 1px
        rgba(255,255,255,.28);

    border-radius: inherit;
}

.structured-btn {
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.structured-btn:hover {
    transform:
        translateY(-2px);
}

.structured-btn-primary:hover {
    box-shadow:
        0 17px 38px
        rgba(185,28,28,.28);
}


/* ANA ICERIK */

.structured-content {
    padding-top: 20px;
}

.structured-content
> .site-container {
    max-width: 1240px;
}

.source-section-v4,
.home-structured-section,
.content-block--wide.section-block {
    margin:
        0 auto;

    padding:
        82px 0;

    border-bottom:
        1px solid
        var(--v8-border);
}

.source-section-v4-copy {
    max-width: 900px;
}

.source-section-v4-copy h2,
.home-structured-heading h2,
.section-heading h2,
.structured-content
.content-block > h2 {
    color:
        var(--v8-text);

    font-size:
        clamp(
            32px,
            3.7vw,
            48px
        );

    font-weight:
        850;

    line-height:
        1.08;

    letter-spacing:
        -.035em;
}

.source-section-v4-content {
    color:
        var(--v8-muted);

    font-size:
        16px;

    line-height:
        1.85;
}

.source-section-v4-content
p {
    margin:
        0 0 18px;
}

.source-section-v4-content
strong {
    color:
        #37302e;
}

.source-section-v4-content
a {
    color:
        var(--brand-primary);

    font-weight:
        700;

    text-decoration:
        underline;

    text-decoration-color:
        rgba(185,28,28,.25);

    text-underline-offset:
        4px;
}


/* FIYAT KARTLARI */

.home-structured-price-grid {
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(210px, 1fr)
        );

    gap:
        18px;
}

.home-structured-price-card {
    min-height:
        290px;

    padding:
        28px;

    border:
        1px solid
        var(--v8-border);

    border-radius:
        22px;

    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #fffcfa 100%
        );

    box-shadow:
        0 10px 35px
        rgba(42,25,19,.055);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.home-structured-price-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(185,28,28,.22);

    box-shadow:
        0 22px 50px
        rgba(42,25,19,.11);
}

.home-structured-price-card h3 {
    font-size:
        18px;
}

.home-structured-price {
    font-size:
        34px;

    letter-spacing:
        -.045em;
}

.home-structured-price-card p {
    color:
        #756d6a;

    line-height:
        1.65;
}


/* MENU KARTLARI */

.home-structured-media-grid {
    gap:
        20px;
}

.home-structured-media-card {
    border:
        1px solid
        var(--v8-border);

    border-radius:
        22px;

    box-shadow:
        0 12px 35px
        rgba(42,25,19,.055);

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.home-structured-media-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 22px 50px
        rgba(42,25,19,.11);
}

.home-structured-media-image {
    aspect-ratio:
        16 / 10;
}

.home-structured-media-image
img {
    transition:
        transform .35s ease;
}

.home-structured-media-card:hover
.home-structured-media-image
img {
    transform:
        scale(1.025);
}

.home-structured-media-body {
    padding:
        23px;
}


/* BLOG */

.section-heading {
    margin-bottom:
        34px;
}

.post-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap:
        20px;
}

.post-card {
    overflow:
        hidden;

    border:
        1px solid
        var(--v8-border);

    border-radius:
        22px;

    background:
        #fff;

    box-shadow:
        0 12px 34px
        rgba(42,25,19,.055);

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.post-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 22px 50px
        rgba(42,25,19,.11);
}

.post-card-media {
    overflow:
        hidden;

    display:
        block;

    aspect-ratio:
        16 / 10;

    background:
        #f1ece8;
}

.post-card-media
picture,
.post-card-media
img {
    width:
        100%;

    height:
        100%;

    display:
        block;
}

.post-card-media
img {
    object-fit:
        cover;

    transition:
        transform .35s ease;
}

.post-card:hover
.post-card-media
img {
    transform:
        scale(1.03);
}

.post-card-body {
    padding:
        23px;
}

.post-date {
    margin-bottom:
        9px;

    color:
        #9a8f8a;

    font-size:
        12px;

    font-weight:
        700;
}

.post-card h3 {
    margin:
        0 0 18px;

    font-size:
        19px;

    line-height:
        1.3;
}

.post-card h3 a {
    color:
        #2a2625;

    text-decoration:
        none;
}

.post-read-more {
    color:
        var(--brand-primary);

    font-size:
        13px;

    font-weight:
        800;

    text-decoration:
        none;
}


/* GOOGLE REVIEW - BUILT-IN BLOK */

.structured-content
[class*="review"] {
    box-sizing:
        border-box;
}

.structured-content
.review-grid,
.structured-content
.reviews-grid,
.structured-content
.testimonial-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap:
        18px;
}

.structured-content
.review-card,
.structured-content
.testimonial-card {
    padding:
        26px;

    border:
        1px solid
        var(--v8-border);

    border-radius:
        22px;

    background:
        #fff;

    box-shadow:
        0 12px 35px
        rgba(42,25,19,.055);
}


/* FAQ */

.structured-content
.content-block.faq {
    max-width:
        960px;

    margin:
        0 auto 90px;
}

.structured-content
.content-block.faq
details {
    overflow:
        hidden;

    margin-bottom:
        11px;

    border:
        1px solid
        #e8ded8;

    border-radius:
        15px;

    background:
        #fff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.structured-content
.content-block.faq
details:hover {
    border-color:
        rgba(185,28,28,.22);
}

.structured-content
.content-block.faq
details[open] {
    border-color:
        rgba(185,28,28,.24);

    box-shadow:
        0 10px 28px
        rgba(42,25,19,.06);
}

.structured-content
.content-block.faq
summary {
    padding:
        21px 55px 21px 22px;
}

.structured-content
.content-block.faq
summary::after {
    right:
        20px;

    top:
        16px;
}

.structured-content
.content-block.faq
.faq-answer {
    padding:
        0 22px 22px;

    color:
        #68605d;
}


/* FINAL CTA */

.structured-final-cta {
    padding:
        30px 0 100px;
}

.structured-final-card {
    position:
        relative;

    overflow:
        hidden;

    padding:
        55px;

    border-radius:
        30px;

    box-shadow:
        0 28px 70px
        rgba(127,29,29,.19);
}

.structured-final-card::after {
    content:
        "";

    position:
        absolute;

    width:
        280px;

    height:
        280px;

    right:
        -100px;

    bottom:
        -160px;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius:
        50%;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .post-grid,
    .structured-content
    .review-grid,
    .structured-content
    .reviews-grid,
    .structured-content
    .testimonial-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

}

@media (max-width: 700px) {

    .structured-hero {
        padding:
            52px 0 60px;
    }

    .structured-hero-grid {
        gap:
            38px;
    }

    .source-section-v4,
    .home-structured-section,
    .content-block--wide.section-block {
        padding:
            58px 0;
    }

    .post-grid,
    .structured-content
    .review-grid,
    .structured-content
    .reviews-grid,
    .structured-content
    .testimonial-grid {
        grid-template-columns:
            1fr;
    }

    .structured-final-card {
        padding:
            35px 25px;
    }

}


/* =========================================================
   HELAL LOKMACI
   HOME FINAL V13
   ========================================================= */

.structured-home {
    overflow: hidden;
    background: #fff;
}


/* =========================================================
   HERO
   ========================================================= */

.structured-hero {
    position: relative;

    padding:
        66px 0 72px;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(185, 28, 28, .07),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 15%,
            rgba(217, 119, 6, .08),
            transparent 29%
        ),
        linear-gradient(
            180deg,
            #fff 0%,
            #fdfaf8 100%
        );
}

.structured-hero::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -180px;
    bottom: -190px;

    border-radius: 50%;

    background:
        rgba(185, 28, 28, .035);

    pointer-events: none;
}

.structured-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(420px, .98fr);

    align-items: center;

    gap: clamp(
        44px,
        6vw,
        88px
    );
}

.structured-hero-copy {
    max-width: 690px;
}

.structured-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    padding:
        7px 12px;

    border:
        1px solid
        rgba(185, 28, 28, .13);

    border-radius: 999px;

    color:
        var(--brand-primary, #b91c1c);

    background:
        rgba(185, 28, 28, .045);

    font-size: 11px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.structured-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--brand-primary, #b91c1c);

    box-shadow:
        0 0 0 4px
        rgba(185, 28, 28, .08);
}

.structured-hero h1 {
    max-width: 720px;

    margin:
        0 0 22px;

    color:
        #211b18;

    font-size:
        clamp(
            38px,
            5vw,
            66px
        );

    line-height: .99;

    font-weight: 840;

    letter-spacing: -.048em;
}

.structured-hero-copy > p {
    max-width: 630px;

    margin:
        0 0 28px;

    color: #716761;

    font-size:
        clamp(
            16px,
            1.5vw,
            18px
        );

    line-height: 1.78;
}

.structured-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.structured-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        0 22px;

    border-radius: 14px;

    font-size: 14px;
    line-height: 1;
    font-weight: 760;

    text-decoration: none;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.structured-btn:hover {
    transform:
        translateY(-2px);
}

.structured-btn-primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--brand-primary, #b91c1c),
            var(--brand-secondary, #7f1d1d)
        );

    box-shadow:
        0 14px 28px
        rgba(185, 28, 28, .20);
}

.structured-btn-primary:hover {
    box-shadow:
        0 18px 34px
        rgba(185, 28, 28, .25);
}

.structured-btn-light {
    border:
        1px solid
        #e9dfda;

    color: #3f3732;

    background:
        rgba(255,255,255,.92);
}

.structured-btn-light:hover {
    border-color:
        rgba(185, 28, 28, .25);

    box-shadow:
        0 11px 26px
        rgba(50, 32, 25, .07);
}


/* =========================================================
   HERO TRUST
   ========================================================= */

.structured-trust {
    display: flex;
    flex-wrap: wrap;

    gap:
        9px 18px;

    margin-top: 28px;

    padding-top: 22px;

    border-top:
        1px solid
        #ece4df;
}

.structured-trust span {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #5f5650;

    font-size: 12px;
    line-height: 1.45;
    font-weight: 650;
}

.structured-trust span::before {
    content: "✓";

    width: 19px;
    height: 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    background: #159447;

    font-size: 10px;
    font-weight: 900;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.structured-hero-image {
    position: relative;

    min-height: 520px;

    padding: 12px;

    border:
        1px solid
        rgba(77, 51, 40, .09);

    border-radius: 30px;

    background:
        rgba(255,255,255,.76);

    box-shadow:
        0 30px 70px
        rgba(61, 38, 29, .14);
}

.structured-hero-image::before {
    content: "";

    position: absolute;

    inset:
        28px -24px -24px 32px;

    z-index: -1;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(185,28,28,.10),
            rgba(217,119,6,.07)
        );
}

.structured-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 494px;

    display: block;

    object-fit: cover;

    border-radius: 21px;
}


/* =========================================================
   CONTENT AREA
   ========================================================= */

.structured-content {
    padding:
        80px 0 44px;

    background: #fff;
}

.structured-content > .site-container {
    display: flow-root;
}


/* Top-level content rhythm */

.structured-content > .site-container > * {
    margin-top: 0;
    margin-bottom: 72px;
}

.structured-content > .site-container > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TYPOGRAPHY INSIDE HOME BLOCKS
   ========================================================= */

.structured-content h2 {
    max-width: 900px;

    margin:
        0 0 18px;

    color: #28211e;

    font-size:
        clamp(
            27px,
            3.2vw,
            42px
        );

    line-height: 1.12;

    font-weight: 820;

    letter-spacing: -.035em;
}

.structured-content h3 {
    margin:
        24px 0 12px;

    color: #302925;

    font-size:
        clamp(
            19px,
            2vw,
            24px
        );

    line-height: 1.25;

    font-weight: 760;

    letter-spacing: -.02em;
}

.structured-content p {
    color: #655c57;

    font-size: 15px;
    line-height: 1.82;
}

.structured-content h2 + p {
    max-width: 850px;

    color: #716761;

    font-size: 16px;
}


/* =========================================================
   LINKS
   ========================================================= */

.structured-content a:not(.structured-btn) {
    color:
        var(--brand-primary, #b91c1c);

    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


/* =========================================================
   LISTS
   ========================================================= */

.structured-content ul,
.structured-content ol {
    padding-left: 22px;

    color: #655c57;

    line-height: 1.8;
}

.structured-content li + li {
    margin-top: 8px;
}


/* =========================================================
   GENERAL BLOCKS / CARDS
   ========================================================= */

.structured-content [class*="card"] {
    border-color:
        #ece4df !important;

    border-radius:
        20px !important;

    box-shadow:
        0 13px 34px
        rgba(58, 39, 31, .055);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.structured-content [class*="card"]:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(185, 28, 28, .14) !important;

    box-shadow:
        0 20px 42px
        rgba(58, 39, 31, .085);
}


/* =========================================================
   IMAGES / FIGURES
   ========================================================= */

.structured-content img {
    max-width: 100%;
    height: auto;

    border-radius: 18px;
}

.structured-content figure {
    margin:
        30px 0;
}

.structured-content figure img {
    display: block;

    box-shadow:
        0 15px 38px
        rgba(55, 35, 28, .08);
}

.structured-content figcaption {
    margin-top: 10px;

    color: #887e77;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   VIDEO
   ========================================================= */

.structured-content iframe {
    max-width: 100%;

    border: 0;
    border-radius: 18px;

    box-shadow:
        0 18px 40px
        rgba(47, 31, 25, .10);
}


/* =========================================================
   TABLES / PRICE AREAS
   ========================================================= */

.structured-content table {
    width: 100%;

    overflow: hidden;

    border-spacing: 0;
    border-collapse: separate;

    border:
        1px solid
        #ebe3df;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 12px 32px
        rgba(55, 35, 28, .05);
}

.structured-content th {
    padding:
        14px 16px;

    color: #fff;

    background:
        var(--brand-primary, #b91c1c);

    font-size: 13px;
    font-weight: 750;

    text-align: left;
}

.structured-content td {
    padding:
        14px 16px;

    border-top:
        1px solid
        #eee7e3;

    color: #514944;

    font-size: 14px;
}

.structured-content tr:nth-child(even) td {
    background: #fcfaf9;
}


/* =========================================================
   BLOCKQUOTE
   ========================================================= */

.structured-content blockquote {
    margin:
        30px 0;

    padding:
        22px 24px;

    border-left:
        4px solid
        var(--brand-primary, #b91c1c);

    border-radius:
        0 16px 16px 0;

    color: #514944;

    background: #fbf7f5;
}


/* =========================================================
   FAQ / DETAILS
   ========================================================= */

.structured-content details {
    overflow: hidden;

    margin-bottom: 10px;

    border:
        1px solid
        #eae2de;

    border-radius: 15px;

    background: #fff;

    box-shadow:
        0 7px 22px
        rgba(50, 33, 27, .035);
}

.structured-content details summary {
    min-height: 57px;

    display: flex;
    align-items: center;

    padding:
        14px 18px;

    color: #332c28;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.structured-content details[open] summary {
    color:
        var(--brand-primary, #b91c1c);

    background:
        rgba(185, 28, 28, .025);
}

.structured-content details > *:not(summary) {
    margin-left: 18px;
    margin-right: 18px;
}

.structured-content details > p:last-child {
    margin-bottom: 18px;
}


/* =========================================================
   REVIEW-LIKE ELEMENTS
   ========================================================= */

.structured-content [class*="review"],
.structured-content [class*="testimonial"] {
    border-radius: 20px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.structured-final-cta {
    padding:
        32px 0 80px;

    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #faf6f3 100%
        );
}

.structured-final-card {
    position: relative;

    overflow: hidden;

    min-height: 220px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding:
        44px 50px;

    border-radius: 28px;

    color: #fff;

    background:
        linear-gradient(
            130deg,
            var(--brand-secondary, #7f1d1d),
            var(--brand-primary, #b91c1c)
        );

    box-shadow:
        0 25px 58px
        rgba(127,29,29,.20);
}

.structured-final-card::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -165px;
    right: -80px;

    border:
        48px solid
        rgba(255,255,255,.06);

    border-radius: 50%;

    pointer-events: none;
}

.structured-final-card > * {
    position: relative;
    z-index: 2;
}

.structured-final-card .structured-eyebrow {
    color: #fff;

    border-color:
        rgba(255,255,255,.18);

    background:
        rgba(255,255,255,.09);
}

.structured-final-card .structured-eyebrow::before {
    background: #fff;

    box-shadow:
        0 0 0 4px
        rgba(255,255,255,.10);
}

.structured-final-card h2 {
    margin:
        0 0 12px;

    color: #fff;

    font-size:
        clamp(
            28px,
            3vw,
            42px
        );

    line-height: 1.08;

    font-weight: 820;

    letter-spacing: -.035em;
}

.structured-final-card p {
    max-width: 660px;

    margin: 0;

    color:
        rgba(255,255,255,.76);

    font-size: 15px;
    line-height: 1.7;
}

.structured-btn-white {
    min-width: 170px;

    flex: 0 0 auto;

    color:
        var(--brand-primary, #b91c1c);

    background: #fff;

    box-shadow:
        0 14px 30px
        rgba(47,18,18,.15);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .structured-hero {
        padding:
            52px 0 60px;
    }

    .structured-hero-grid {
        grid-template-columns:
            1fr 430px;

        gap: 42px;
    }

    .structured-hero-image {
        min-height: 450px;
    }

    .structured-hero-image img {
        min-height: 424px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .structured-hero {
        padding:
            42px 0 52px;
    }

    .structured-hero-grid {
        display: flex;
        flex-direction: column;

        gap: 36px;
    }

    .structured-hero-copy {
        max-width: 760px;
    }

    .structured-hero h1 {
        max-width: 760px;

        font-size:
            clamp(
                36px,
                8vw,
                52px
            );
    }

    .structured-hero-image {
        width: 100%;

        min-height: auto;
    }

    .structured-hero-image img {
        min-height: 0;

        aspect-ratio: 16 / 10;
    }

    .structured-content {
        padding-top: 58px;
    }

    .structured-content
    > .site-container
    > * {
        margin-bottom: 56px;
    }

    .structured-final-card {
        align-items: flex-start;
        flex-direction: column;

        gap: 25px;

        padding:
            38px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .structured-hero {
        padding:
            32px 0 42px;
    }

    .structured-eyebrow {
        margin-bottom: 14px;

        font-size: 10px;
    }

    .structured-hero h1 {
        margin-bottom: 17px;

        font-size:
            clamp(
                34px,
                10.4vw,
                46px
            );

        line-height: 1.02;
    }

    .structured-hero-copy > p {
        margin-bottom: 22px;

        font-size: 15px;
    }

    .structured-hero-actions {
        display: grid;

        grid-template-columns:
            1fr;

        width: 100%;

        gap: 9px;
    }

    .structured-btn {
        width: 100%;

        min-height: 52px;
    }

    .structured-trust {
        display: grid;

        grid-template-columns:
            1fr;

        gap: 11px;

        margin-top: 23px;
    }

    .structured-hero-image {
        padding: 8px;

        border-radius: 22px;
    }

    .structured-hero-image img {
        border-radius: 16px;

        aspect-ratio: 4 / 3;
    }

    .structured-content {
        padding:
            48px 0 28px;
    }

    .structured-content
    > .site-container
    > * {
        margin-bottom: 46px;
    }

    .structured-content h2 {
        font-size:
            29px;
    }

    .structured-content h3 {
        font-size:
            20px;
    }

    .structured-content p {
        font-size:
            14px;

        line-height:
            1.78;
    }

    .structured-content table {
        display: block;

        overflow-x: auto;

        white-space: nowrap;
    }

    .structured-final-cta {
        padding:
            20px 0 56px;
    }

    .structured-final-card {
        min-height: auto;

        padding:
            31px 25px;

        border-radius:
            22px;
    }

    .structured-final-card h2 {
        font-size:
            30px;
    }

    .structured-final-card .structured-btn {
        width: 100%;
    }

}

/* HELAL LOKMACI - HOME FINAL V16.1 */

.structured-home {
    overflow: hidden;
}

.structured-content {
    padding-top: 42px !important;
    padding-bottom: 0 !important;
}

.structured-content > .site-container > * {
    margin-bottom: 46px !important;
}


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.structured-hero {
    padding: 48px 0 52px !important;
}

.structured-hero-actions .v161-primary {
    color: #fff !important;
    background: linear-gradient(
        135deg,
        var(--brand-primary,#b91c1c),
        var(--brand-secondary,#7f1d1d)
    ) !important;
    border: 0 !important;
    box-shadow: 0 14px 30px rgba(185,28,28,.2) !important;
}

.structured-hero-actions .v161-secondary {
    color: var(--brand-primary,#b91c1c) !important;
    background: #fff !important;
    border: 1px solid rgba(185,28,28,.22) !important;
    box-shadow: none !important;
}


/* ---------------------------------------------------------
   SMART SEARCH
--------------------------------------------------------- */

.v161-search {
    padding: 20px 0 10px;
}

.v161-search-box {
    position: relative;
    padding: 28px 32px;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(230,160,50,.15),
            transparent 28%
        ),
        linear-gradient(135deg,#291d18,#17110f);
    box-shadow: 0 16px 40px rgba(32,21,17,.14);
}

.v161-search-label {
    display: block;
    margin-bottom: 7px;
    color: #f1ad37;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.v161-search-box h2 {
    margin: 0 0 7px !important;
    color: #fff !important;
    font-size: clamp(25px,3vw,35px) !important;
    line-height: 1.1 !important;
}

.v161-search-box > p {
    margin: 0 0 17px !important;
    color: rgba(255,255,255,.67) !important;
    font-size: 13px !important;
}

.v161-search-form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    max-width: 900px;
}

.v161-search-input {
    min-height: 55px;
    width: 100%;
    padding: 0 19px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 13px;
    outline: none;
    color: #fff;
    background: rgba(255,255,255,.08);
    font-size: 14px;
}

.v161-search-input::placeholder {
    color: rgba(255,255,255,.46);
}

.v161-search-button {
    min-width: 92px;
    border: 0;
    border-radius: 13px;
    color: #25180f;
    background: #f4b437;
    font-weight: 850;
    cursor: pointer;
}

.v161-search-results {
    position: absolute;
    z-index: 200;
    top: calc(100% + 7px);
    left: 0;
    width: calc(100% - 100px);
    overflow: hidden;
    border: 1px solid #e5ddd8;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(25,17,14,.18);
}

.v161-search-results[hidden] {
    display: none;
}

.v161-search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 9px 14px;
    border-bottom: 1px solid #eee7e3;
    color: #39312d;
    text-decoration: none;
}

.v161-search-result:hover {
    background: #fbf7f5;
}

.v161-search-result strong {
    display: block;
    font-size: 13px;
}

.v161-search-result small {
    color: #91857e;
    font-size: 10px;
}

.v161-search-result em {
    color: #b91c1c;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.v161-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 15px;
}

.v161-chip {
    min-height: 31px;
    padding: 0 11px;
    border: 1px solid rgba(244,180,55,.24);
    border-radius: 999px;
    color: rgba(255,255,255,.82);
    background: rgba(244,180,55,.06);
    font-size: 10px;
    cursor: pointer;
}


/* ---------------------------------------------------------
   PRICE CARDS
--------------------------------------------------------- */

.v161-prices {
    padding: 35px 28px 38px !important;
    border: 1px solid #ece4df;
    border-radius: 25px;
    background: linear-gradient(180deg,#fdfaf8,#fff);
}

.v161-prices .home-structured-heading {
    max-width: 820px;
    margin: 0 auto 27px;
    text-align: center;
}

.v161-price-grid {
    display: grid !important;
    grid-template-columns: repeat(6,minmax(0,1fr)) !important;
    gap: 16px !important;
}

.v161-price-card {
    position: relative;
    grid-column: span 2;
    display: flex !important;
    flex-direction: column;
    min-width: 0;
    padding: 24px 22px 21px !important;
    border: 1px solid #e6ddd8 !important;
    border-radius: 19px !important;
    background: #fff !important;
    box-shadow: 0 9px 27px rgba(46,31,25,.05) !important;
}

.v161-price-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.v161-price-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.v161-price-card h3 {
    min-height: 0 !important;
    margin: 0 0 5px !important;
    color: #29221e !important;
    font-size: 23px !important;
    line-height: 1.2 !important;
    text-align: left !important;
}

.v161-package-caption {
    display: block;
    margin-bottom: 16px;
    color: #8b7d76;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.v161-price-card .home-structured-price {
    width: 100%;
    margin: 0 0 19px !important;
    padding: 15px !important;
    border-radius: 13px !important;
    color: #fff !important;
    background: linear-gradient(135deg,#bd1015,#981116) !important;
    font-size: 31px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    text-align: center !important;
}

.v161-package-list {
    flex: 1;
    display: grid;
    gap: 9px;
    margin: 0 0 21px !important;
    padding: 0 !important;
    list-style: none !important;
}

.v161-package-list li {
    position: relative;
    margin: 0 !important;
    padding-left: 26px;
    color: #4e4641;
    font-size: 13px;
    line-height: 1.4;
}

.v161-package-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #119748;
    background: rgba(17,151,72,.08);
    font-size: 11px;
    font-weight: 900;
}

.v161-package-btn {
    min-height: 46px;
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: auto !important;
    border-radius: 11px !important;
    color: #fff !important;
    background: #159447 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.v161-popular {
    position: absolute;
    top: 17px;
    right: 17px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    background: #b80f14;
    font-size: 9px;
    font-weight: 850;
}


/* ---------------------------------------------------------
   REVIEWS + MAP
--------------------------------------------------------- */

.v161-reviews {
    padding: 32px !important;
    border: 1px solid #ede3de;
    border-radius: 26px;
    background: #fffaf5 !important;
}

.v161-review-layout {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    gap: 22px;
}

.v161-map,
.v161-review-panel {
    overflow: hidden;
    min-width: 0;
    border: 1px solid #e8dfda;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 9px 27px rgba(48,32,25,.05);
}

.v161-card-head {
    padding: 21px 21px 16px;
}

.v161-kicker {
    display: block;
    margin-bottom: 6px;
    color: #b91c1c;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.v161-card-head h2 {
    margin: 0 !important;
    color: #302824 !important;
    font-size: clamp(22px,2.5vw,30px) !important;
    line-height: 1.15 !important;
}

.v161-map-frame {
    padding: 0 15px 15px;
}

.v161-map-frame iframe {
    width: 100%;
    height: 365px;
    display: block;
    border: 0;
    border-radius: 14px;
}

.v161-map-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 0 15px 16px;
}

.v161-map-actions a {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff !important;
    background: #117b3b;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
}

.v161-map-actions a:last-child {
    background: #a80d22;
}

.v161-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 11px;
}

.v161-stars {
    color: #f1ac16;
    letter-spacing: 1px;
}

.v161-rating strong {
    font-size: 13px;
}

.v161-rating span {
    color: #948880;
    font-size: 10px;
}

.v161-review-viewport {
    overflow: hidden;
    width: 100%;
    padding: 4px 0 20px;
}

.v161-review-track {
    display: flex;
    width: max-content;
    gap: 11px;
    animation: v161ReviewMove 17s linear infinite;
}

.v161-review-viewport:hover .v161-review-track {
    animation-play-state: paused;
}

.v161-review-group {
    display: flex;
    gap: 11px;
}

.v161-review-card {
    width: 300px !important;
    flex: 0 0 300px !important;
    min-height: 185px;
    padding: 19px !important;
    border: 1px solid #e5dfdb !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: none !important;
    transform: none !important;
}

@keyframes v161ReviewMove {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 5.5px)); }
}

.v161-trust {
    margin: 0 20px 20px;
    padding: 15px 17px;
    border-radius: 12px;
    color: rgba(255,255,255,.76);
    background: linear-gradient(135deg,#2a201c,#171210);
    font-size: 11px;
    line-height: 1.5;
}

.v161-trust strong {
    color: #f0b13b;
}


/* ---------------------------------------------------------
   ASKIDA LOKMA
--------------------------------------------------------- */

.v161-askida {
    padding: 43px 34px 35px !important;
    border-radius: 27px;
    color: #fff;
    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(255,255,255,.10),
            transparent 24%
        ),
        linear-gradient(135deg,#a70e26,#720017) !important;
    box-shadow: 0 17px 42px rgba(112,0,22,.17);
}

.v161-askida .home-structured-heading {
    max-width: 860px;
    margin: 0 auto 27px;
    text-align: center;
}

.v161-askida .home-structured-heading::before {
    content: "UZAKTAN HAYIR VE DAĞITIM HİZMETİ";
    display: block;
    margin-bottom: 7px;
    color: #ffd18b;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .09em;
}

.v161-askida .home-structured-heading h2 {
    margin-inline: auto !important;
    color: #fff !important;
    font-size: clamp(28px,3.4vw,41px) !important;
}

.v161-askida .home-structured-heading p {
    max-width: 800px;
    margin: 9px auto 0 !important;
    color: rgba(255,255,255,.74) !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
}

.v161-askida-grid {
    display: grid !important;
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
    gap: 14px !important;
}

.v161-askida-card {
    display: flex !important;
    flex-direction: column;
    min-height: 305px;
    padding: 23px 20px 20px !important;
    border: 2px solid transparent !important;
    border-radius: 18px !important;
    color: #302824;
    background: #fff !important;
    text-align: center;
    box-shadow: 0 11px 28px rgba(52,0,10,.12) !important;
}

.v161-askida-card:nth-child(2) {
    transform: translateY(-5px);
    border-color: #e7aa36 !important;
}

.v161-askida-badge {
    align-self: center;
    margin-bottom: 13px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #9d5d0f;
    background: #fff0d7;
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
}

.v161-askida-card h3,
.v161-askida-card h4 {
    margin: 0 0 9px !important;
    color: #2e2926 !important;
    font-size: 20px !important;
    text-align: center !important;
}

.v161-askida-card .home-structured-price {
    margin: 8px 0 16px !important;
    color: #a70e24 !important;
    background: transparent !important;
    font-size: 29px !important;
    font-weight: 850 !important;
}

.v161-askida-card p {
    color: #776a64 !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
}

.v161-askida-btn {
    min-height: 44px;
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: auto !important;
    border-radius: 10px;
    color: #fff !important;
    background: #159447 !important;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
}

.v161-askida-note {
    margin-top: 17px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 12px;
    color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.07);
    font-size: 11px;
    text-align: center;
}


/* ---------------------------------------------------------
   MENU
--------------------------------------------------------- */

.v161-menu .home-structured-heading {
    max-width: 1250px;
    margin: 0 auto 26px;
    text-align: center;
}

.v161-menu .home-structured-heading h2 {
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
}

.v161-menu-description {
    max-width: 1200px;
    margin: 9px auto 0 !important;
    color: #655b55 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    text-align: center;
}

.v161-menu .home-structured-media-body {
    padding: 18px !important;
    text-align: center;
}

.v161-menu .home-structured-media-body h3 {
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px !important;
    color: #403833 !important;
    font-size: 19px !important;
    line-height: 1.25 !important;
}

.v161-menu .home-structured-media-body p {
    min-height: 58px;
    color: #685e58 !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
}

.v161-menu-btn {
    min-width: 130px;
    min-height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 17px !important;
    border-radius: 10px;
    color: #fff !important;
    background: #b80f14 !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
}


/* ---------------------------------------------------------
   BLOG
--------------------------------------------------------- */

.v161-blog .section-heading,
.v161-blog .home-structured-heading {
    max-width: 1050px;
    margin: 0 auto 26px;
    text-align: center;
}

.v161-blog-description {
    max-width: 1000px;
    margin: 8px auto 0 !important;
    color: #655b55 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    text-align: center;
}

.v161-blog-grid {
    display: grid !important;
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    gap: 18px !important;
}

.v161-blog-card {
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
    border: 1px solid #e6dfdb !important;
    border-radius: 17px !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(48,32,25,.045) !important;
}

.v161-blog-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0 !important;
}

.v161-blog-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
}

.v161-blog-more {
    min-height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: auto !important;
    padding: 0 15px !important;
    border-radius: 9px;
    color: #fff !important;
    background: #b80f14 !important;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
}


/* ---------------------------------------------------------
   SEO INFORMATION
--------------------------------------------------------- */

.v161-seo {
    margin: 28px 0 22px;
    border: 1px solid #e8e0dc;
    border-radius: 17px;
    background: #fff;
}

.v161-seo-head {
    padding: 19px 21px 14px;
}

.v161-seo-head span {
    display: block;
    margin-bottom: 5px;
    color: #b91c1c;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.v161-seo-head h2 {
    margin: 0 0 5px !important;
    font-size: 21px !important;
}

.v161-seo-head p {
    margin: 0 !important;
    color: #81756e !important;
    font-size: 11px !important;
}

.v161-seo details {
    margin: 0 !important;
    border: 0 !important;
    border-top: 1px solid #eee7e3 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.v161-seo summary {
    min-height: 51px !important;
    padding: 12px 47px 12px 21px !important;
    color: #b91c1c !important;
    background: #fcfaf9 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

.v161-seo-body {
    padding: 18px 21px;
}

.v161-seo-source {
    margin: 0 0 22px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.v161-seo-source .source-section-v4-media {
    display: none !important;
}

.v161-seo-source h2 {
    margin: 0 0 8px !important;
    font-size: 17px !important;
}

.v161-seo-source p,
.v161-seo-source li {
    color: #6c625c !important;
    font-size: 11px !important;
    line-height: 1.7 !important;
}


/* ---------------------------------------------------------
   ONE FAQ ONLY
--------------------------------------------------------- */

.v161-faq {
    margin: 28px 0 22px;
    padding: 29px 27px;
    border: 1px solid #e9e2dd;
    border-radius: 22px;
    background: #fbfaf9;
}

.v161-faq-head {
    max-width: 760px;
    margin: 0 auto 21px;
    text-align: center;
}

.v161-faq-head span {
    display: block;
    margin-bottom: 6px;
    color: #b91c1c;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.v161-faq-head h2 {
    margin: 0 0 6px !important;
}

.v161-faq-head p {
    margin: 0 !important;
    color: #7b706a !important;
}

.v161-faq-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 8px 11px;
    align-items: start;
}

.v161-faq-item {
    overflow: hidden;
    margin: 0 !important;
    border: 1px solid #e5ddd9 !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.v161-faq-item summary {
    position: relative;
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 11px 43px 11px 14px !important;
    list-style: none;
    color: #39312d !important;
    background: #fff !important;
    font-weight: 750 !important;
    cursor: pointer;
}

.v161-faq-item summary::-webkit-details-marker {
    display: none;
}

.v161-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 13px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #b91c1c;
    background: rgba(185,28,28,.06);
}

.v161-faq-item[open] summary::after {
    content: "−";
}

.v161-faq-body {
    padding: 0 14px 13px;
    color: #6b615b;
}

.v161-faq-body p {
}


/* ---------------------------------------------------------
   FINAL CTA - COMPACT
--------------------------------------------------------- */

.structured-final-cta {
    padding: 10px 0 24px !important;
}

.structured-final-card {
    min-height: 155px !important;
    padding: 27px 36px !important;
    gap: 25px !important;
    border-radius: 22px !important;
    box-shadow: 0 15px 37px rgba(127,29,29,.17) !important;
}

.structured-final-card .structured-eyebrow {
    margin-bottom: 8px !important;
}

.structured-final-card h2 {
    margin-bottom: 6px !important;
    font-size: clamp(29px,3.4vw,40px) !important;
}

.structured-final-card p {
    font-size: 12px !important;
}

.structured-final-card .structured-btn-white {
    min-height: 47px;
    min-width: 165px;
}

.structured-home + .site-footer {
    margin-top: 0 !important;
}


/* ---------------------------------------------------------
   OLD / DUPLICATE ELEMENTS
--------------------------------------------------------- */

.v161-hide {
    display: none !important;
}

.v161-floating-wa {
    position: fixed;
    z-index: 999;
    right: 18px;
    bottom: 18px;
    min-height: 47px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 999px;
    color: #fff !important;
    background: #159447;
    box-shadow: 0 10px 25px rgba(21,148,71,.26);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width:1100px) {

    .v161-price-grid {
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    }

    .v161-price-card,
    .v161-price-card:nth-child(4),
    .v161-price-card:nth-child(5) {
        grid-column: auto !important;
    }

    .v161-review-layout {
        grid-template-columns: 1fr;
    }

    .v161-askida-grid {
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    }
}

@media (max-width:800px) {

    .v161-blog-grid,
    .v161-faq-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width:650px) {

    .v161-search-box {
        padding: 23px 17px;
    }

    .v161-search-form {
        grid-template-columns: 1fr;
    }

    .v161-search-button {
        min-height: 50px;
    }

    .v161-search-results {
        width: 100%;
        top: calc(100% + 58px);
    }

    .v161-prices {
        padding: 25px 15px 28px !important;
    }

    .v161-price-grid,
    .v161-askida-grid {
        grid-template-columns: 1fr !important;
    }

    .v161-reviews {
        padding: 20px 13px !important;
    }

    .v161-map-frame iframe {
        height: 310px;
    }

    .v161-map-actions {
        grid-template-columns: 1fr;
    }

    .v161-review-card {
        width: 280px !important;
        flex-basis: 280px !important;
    }

    .v161-askida {
        padding: 29px 16px 25px !important;
    }

    .v161-askida-card:nth-child(2) {
        transform: none;
    }

    .v161-menu .home-structured-media-body p {
        min-height: 0;
    }

    .v161-faq {
        padding: 23px 13px;
    }

    .structured-final-card {
        min-height: auto !important;
        padding: 25px 20px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v161-review-track {
        animation: none !important;
    }
}

/* ========================================
   HOME LOKMACI INFORMATION GUIDE
======================================== */

.home-lokmaci-guide {
    width: min(100% - 36px, 1040px);
    margin: 22px auto 72px;
    padding-top: 58px;
    border-top: 1px solid #eee5df;
}

.home-lokmaci-guide-head {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.home-lokmaci-guide-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 7px 13px;
    border: 1px solid #ead8db;
    border-radius: 999px;
    background: #fbf5f6;
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-lokmaci-guide-head h2 {
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.home-lokmaci-guide-head p {
    max-width: 680px;
    margin: 15px auto 0;
    color: #67605d;
    font-size: 15px;
    line-height: 1.7;
}

.home-lokmaci-guide-list {
    display: grid;
    gap: 13px;
}

.home-lokmaci-guide-item {
    overflow: hidden;
    border: 1px solid #e9e1dc;
    border-radius: 19px;
    background: #fff;
    box-shadow:
        0 8px 26px rgba(34,24,20,.045);
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.home-lokmaci-guide-item:hover {
    border-color: #dbc6c9;
    box-shadow:
        0 12px 32px rgba(34,24,20,.07);
}

.home-lokmaci-guide-item[open] {
    border-color: #d8b7bd;
    box-shadow:
        0 16px 38px rgba(34,24,20,.075);
}

.home-lokmaci-guide-summary {
    position: relative;
    display: grid;
    grid-template-columns:
        44px minmax(0,1fr) 34px;
    align-items: center;
    gap: 15px;
    min-height: 76px;
    padding: 15px 20px;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.home-lokmaci-guide-summary::-webkit-details-marker {
    display: none;
}

.home-lokmaci-guide-summary::after {
    content: "+";
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #faf4f5;
    color: var(--brand-primary);
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
}

.home-lokmaci-guide-item[open]
.home-lokmaci-guide-summary::after {
    content: "−";
}

.home-lokmaci-guide-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: #f8f1f2;
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
}

.home-lokmaci-guide-item-title {
    margin: 0 !important;
    color: #292321;
    font-size: clamp(17px, 2vw, 20px) !important;
    font-weight: 800;
    line-height: 1.32 !important;
    letter-spacing: -.015em !important;
}

.home-lokmaci-guide-body {
    margin: 0 24px 0 79px;
    padding: 22px 0 27px;
    border-top: 1px solid #f0e9e5;
    color: #5b5552;
    font-size: 15px;
    line-height: 1.78;
}

.home-lokmaci-guide-body p {
    margin: 0 0 15px;
}

.home-lokmaci-guide-body p:last-child {
    margin-bottom: 0;
}

.home-lokmaci-guide-body ul,
.home-lokmaci-guide-body ol {
    margin: 15px 0 18px;
    padding-left: 21px;
}

.home-lokmaci-guide-body li {
    margin: 7px 0;
}

.home-lokmaci-guide-body strong {
    color: #312b28;
}

.home-lokmaci-guide-body a {
    color: var(--brand-primary);
    font-weight: 750;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

@media (max-width: 700px) {

    .home-lokmaci-guide {
        width: min(100% - 24px, 1040px);
        margin-bottom: 48px;
        padding-top: 40px;
    }

    .home-lokmaci-guide-head {
        margin-bottom: 22px;
        text-align: left;
    }

    .home-lokmaci-guide-head h2 {
        font-size: 28px;
    }

    .home-lokmaci-guide-summary {
        grid-template-columns:
            38px minmax(0,1fr) 30px;
        gap: 11px;
        min-height: 68px;
        padding: 13px 14px;
    }

    .home-lokmaci-guide-number {
        width: 37px;
        height: 37px;
        border-radius: 11px;
    }

    .home-lokmaci-guide-summary::after {
        width: 29px;
        height: 29px;
        font-size: 21px;
    }

    .home-lokmaci-guide-item-title {
        font-size: 16px !important;
    }

    .home-lokmaci-guide-body {
        margin: 0 15px;
        padding: 19px 0 22px;
        font-size: 14.5px;
        line-height: 1.75;
    }
}



/* HOME-MOBILE-UX-AND-GALLERY-V1 */

/* Mobil okunabilirlik */
@media (max-width: 700px) {

    .structured-content .content-block p {
        font-size: 16px;
        line-height: 1.75;
    }

    .home-menu-mobile-refine {
        margin-bottom: 0 !important;
        padding-bottom: 10px !important;
    }

    .v161-blog {
        margin-top: 0 !important;
        padding-top: 8px !important;
    }

    .home-menu-mobile-refine p,
    .home-menu-mobile-refine figcaption,
    .home-menu-mobile-refine li {
        font-size: 16px !important;
        line-height: 1.55 !important;
    }

    }


/* ========================================
   LOKMA HIZMETIMIZDEN KARELER
======================================== */

[data-home-service-gallery] {
    width: min(100% - 36px, 1180px);
    margin: 10px auto 68px;
    padding: 54px 0 12px;
}

.home-service-gallery-head {
    max-width: 760px;
    margin-bottom: 26px;
}

.home-service-gallery-eyebrow {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-service-gallery-head h2 {
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(29px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.home-service-gallery-head p {
    max-width: 680px;
    margin: 12px 0 0;
    color: #68615e;
    font-size: 16px;
    line-height: 1.7;
}

.home-service-gallery-track {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-service-gallery-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 1px solid #eae2dd;
    border-radius: 20px;
    background: #fff;
    cursor: zoom-in;
    text-align: left;
    box-shadow:
        0 10px 30px rgba(34,24,20,.055);
}

.home-service-gallery-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3efec;
}

.home-service-gallery-image picture,
.home-service-gallery-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.home-service-gallery-image img {
    object-fit: cover;
    transition: transform .3s ease;
}

.home-service-gallery-card:hover img {
    transform: scale(1.025);
}

.home-service-gallery-caption {
    display: block;
    padding: 14px 15px 15px;
    color: #332d2a;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.4;
}


/* Büyük görsel */
.home-gallery-dialog {
    width: min(94vw, 1040px);
    max-width: 1040px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: #111;
    box-shadow:
        0 30px 90px rgba(0,0,0,.35);
}

.home-gallery-dialog::backdrop {
    background: rgba(0,0,0,.78);
}

.home-gallery-dialog-inner {
    position: relative;
}

.home-gallery-dialog img {
    width: 100%;
    max-height: 82vh;
    display: block;
    object-fit: contain;
}

.home-gallery-dialog-caption {
    padding: 13px 18px 16px;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}

.home-gallery-dialog-close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.7);
    color: #fff;
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
}


@media (max-width: 700px) {

    [data-home-service-gallery] {
        width: 100%;
        margin-bottom: 42px;
        padding: 32px 0 6px;
    }

    .home-service-gallery-head {
        padding: 0 16px;
        margin-bottom: 20px;
    }

    .home-service-gallery-head h2 {
        font-size: 28px;
    }

    .home-service-gallery-head p {
        font-size: 16px;
    }

    .home-service-gallery-track {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 0 16px 14px;
        scroll-padding-left: 16px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .home-service-gallery-track::-webkit-scrollbar {
        display: none;
    }

    .home-service-gallery-card {
        flex: 0 0 82vw;
        max-width: 360px;
        scroll-snap-align: start;
        border-radius: 17px;
    }

    .home-service-gallery-caption {
        padding: 13px 14px 14px;
        font-size: 16px;
    }

    .home-gallery-dialog {
        width: calc(100vw - 20px);
        border-radius: 16px;
    }
}

/* HOME-GALLERY-CTA-V1 */

.home-gallery-cta {
    width: min(100% - 36px, 1180px);
    margin: -10px auto 64px;
}

.home-gallery-cta-inner {
    overflow: hidden;
    padding: 36px 38px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        #74172b 0%,
        #961f3b 100%
    );
    color: #fff;
    text-align: center;
    box-shadow:
        0 18px 45px
        rgba(85,20,35,.18);
}

.home-gallery-cta-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
    opacity: .85;
}

.home-gallery-cta h2 {
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.home-gallery-cta p {
    margin: 14px auto 0;
    color: rgba(255,255,255,.9);
    font-size: 16px;
    line-height: 1.6;
}

.home-gallery-cta-actions {
    display: flex;
    justify-content: center;
    gap: 11px;
    margin-top: 24px;
}

.home-gallery-cta-btn {
    min-width: 172px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 21px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
}

.home-gallery-cta-whatsapp {
    background: #fff;
    color: #78172c;
    box-shadow:
        0 7px 20px
        rgba(0,0,0,.12);
}

.home-gallery-cta-phone {
    border: 1px solid rgba(255,255,255,.38);
    background: rgba(255,255,255,.1);
    color: #fff;
}

@media (max-width: 700px) {

    .home-gallery-cta {
        width: calc(100% - 24px);
        margin: -2px auto 44px;
    }

    .home-gallery-cta-inner {
        padding: 28px 18px 20px;
        border-radius: 19px;
    }

    .home-gallery-cta h2 {
        font-size: 25px;
        line-height: 1.16;
    }

    .home-gallery-cta p {
        font-size: 16px;
    }

    .home-gallery-cta-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        margin-top: 20px;
    }

    .home-gallery-cta-btn {
        min-width: 0;
        min-height: 50px;
        padding: 11px 8px;
        font-size: 15px;
    }
}


/* HOME-GALLERY-CTA-CONTRAST START */

/* Koyu zeminde tum metinler acik */
.structured-home .home-gallery-cta .home-gallery-cta-eyebrow {
    color: #ffffff !important;
}

.structured-home .home-gallery-cta h2 {
    color: #ffffff !important;
}

.structured-home .home-gallery-cta p {
    color: rgba(255, 255, 255, 0.90) !important;
}


/* WhatsApp = yesil */
.structured-home .home-gallery-cta .home-gallery-cta-whatsapp {
    background: #25D366 !important;
    color: #ffffff !important;
    border: 1px solid #25D366 !important;
}

.structured-home .home-gallery-cta .home-gallery-cta-whatsapp:hover {
    background: #1fb85a !important;
    color: #ffffff !important;
    border-color: #1fb85a !important;
}


/* Koyu zeminde Ara = beyaz */
.structured-home .home-gallery-cta .home-gallery-cta-phone {
    background: #ffffff !important;
    color: #7f1d1d !important;
    border: 1px solid #ffffff !important;
}

.structured-home .home-gallery-cta .home-gallery-cta-phone:hover {
    background: #fff4f4 !important;
    color: #7f1d1d !important;
    border-color: #ffffff !important;
}

/* HOME-GALLERY-CTA-CONTRAST END */

/* HOME-FAQ-CANONICAL-V1 START */

/*
 * Tek FAQ stil kaynagi.
 * Hem server-rendered .faq yapisini
 * hem JS tarafindaki v161 yapisini kapsar.
 */

.structured-home .v161-faq-head h2,
.structured-home .v161-faq .section-heading h2 {
    font-size: 30px !important;
    line-height: 1.15 !important;
}

.structured-home .v161-faq-head p,
.structured-home .v161-faq-description,
.structured-home .v161-faq .section-heading p {
    font-size: 16px !important;
    line-height: 1.65 !important;
}


/* SORULAR */

.structured-home .faq > details > summary,
.structured-home .v161-faq details > summary,
.structured-home .v161-faq-item > summary,
.structured-home .v161-faq-item > button,
.structured-home .v161-faq-card > button,
.structured-home .v161-faq-card h3,
.structured-home .v161-faq-question {
    font-size: 19px !important;
    line-height: 1.45 !important;
    font-weight: 800 !important;
}


/* CEVAPLAR */

.structured-home .faq .faq-answer,
.structured-home .faq .faq-answer p,
.structured-home .v161-faq .v161-faq-body,
.structured-home .v161-faq .v161-faq-body p,
.structured-home .v161-faq .v161-faq-answer,
.structured-home .v161-faq .v161-faq-answer p,
.structured-home .v161-faq-card p {
    font-size: 17px !important;
    line-height: 1.75 !important;
}


/* MOBIL */

@media (max-width: 700px) {

    .structured-home .v161-faq-head h2,
    .structured-home .v161-faq .section-heading h2 {
        font-size: 29px !important;
    }

    .structured-home .v161-faq-head p,
    .structured-home .v161-faq-description,
    .structured-home .v161-faq .section-heading p {
        font-size: 17px !important;
    }

    .structured-home .faq > details > summary,
    .structured-home .v161-faq details > summary,
    .structured-home .v161-faq-item > summary,
    .structured-home .v161-faq-item > button,
    .structured-home .v161-faq-card > button,
    .structured-home .v161-faq-card h3,
    .structured-home .v161-faq-question {
        font-size: 19px !important;
        line-height: 1.45 !important;
    }

    .structured-home .faq .faq-answer,
    .structured-home .faq .faq-answer p,
    .structured-home .v161-faq .v161-faq-body,
    .structured-home .v161-faq .v161-faq-body p,
    .structured-home .v161-faq .v161-faq-answer,
    .structured-home .v161-faq .v161-faq-answer p,
    .structured-home .v161-faq-card p {
        font-size: 18px !important;
        line-height: 1.75 !important;
    }
}

/* HOME-FAQ-CANONICAL-V1 END */


