/* ========== ANA SAYFA – Tamamen yeni tasarım dili ========== */
.home-page {
    font-family: 'Montserrat', sans-serif!important;
    /* Global tema paleti */
    --hp-dark: #061E29;
    --hp-body: #5F9598;
    --hp-accent: #1D546D;
    --hp-accent-soft: #F3F4F4;
    --hp-bg: #F3F4F4;
    --hp-card: #ffffff;
    --hp-border: #d0dde0;
}

/* ========================================================================
   HERO BANNER – Showcase Stage
   Koyu gradient arka plan, görsel kart olarak sağda,
   içerik solda, dekoratif orb'lar, pill navigasyon
   ======================================================================== */

/* Görünürlük */
.home-page .banner-area.desktop { display: block !important; }
.home-page .banner-area.mobile  { display: none !important; }

/* Banner sarmalayıcı */
.home-page .banner-area.hp-banner {
    background: linear-gradient(100deg, #061E29 0%, #1D546D 25%, #F3F4F4 100%);
    position: relative;
    overflow: hidden;
    height: 85vh;
}

/* Carousel geçiş */
.home-page .banner-area .carousel-item {
    transition: opacity 0.75s ease-in-out !important;
}

/* ── Dekoratif arka plan ── */
.home-page .hp-stage__backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.home-page .hp-stage__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.home-page .hp-stage__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 111, 135, 0.18), transparent 70%);
    top: -10%;
    right: 15%;
    animation: hp-orb-drift 20s ease-in-out infinite;
}
.home-page .hp-stage__orb--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 111, 135, 0.10), transparent 70%);
    bottom: -5%;
    left: 5%;
    animation: hp-orb-drift 25s ease-in-out infinite reverse;
}
@keyframes hp-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.06); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}
.home-page .hp-stage__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ── Stage container ── */
.home-page .hp-stage {
    display: flex;
    align-items: center;
    min-height: 88vh;
    padding: 3rem 5% 5rem;
    gap: 5%;
    position: relative;
    z-index: 2;
}

/* İçerik yoksa görsel tam genişlik */
.home-page .hp-stage--full {
    justify-content: center;
}
.home-page .hp-stage--full .hp-stage__visual {
    flex: 0 0 90%;
    max-width: 1200px;
}

/* ── İçerik alanı (sol) ── */
.home-page .hp-stage__content {
    flex: 0 0 42%;
    max-width: 520px;
    padding: 1rem 0;
    z-index: 3;
}

/* ── Etiket ── */
.home-page .hp-stage__tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #a8f0ff;
    margin-bottom: 1.2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}
.home-page .hp-stage__tag::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--hp-accent);
    border-radius: 1px;
    flex-shrink: 0;
}
.home-page .carousel-item.active .hp-stage__tag {
    opacity: 1;
    transform: translateX(0);
}

/* ── Başlık ── */
.home-page .hp-stage__title {
    font-size: clamp(1.9rem, 3.2vw, 3rem) !important;
    font-weight: 800;
    color: #fff !important;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 1.2rem !important;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease 0.25s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
.home-page .carousel-item.active .hp-stage__title {
    opacity: 1;
    transform: translateY(0);
}

/* ── Açıklama ── */
.home-page .hp-stage__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0 0 2rem !important;
    max-width: 440px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}
.home-page .carousel-item.active .hp-stage__desc {
    opacity: 1;
    transform: translateY(0);
}

/* ── Butonlar ── */
.home-page .hp-stage__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease 0.55s, transform 0.5s ease 0.55s;
}
.home-page .carousel-item.active .hp-stage__actions {
    opacity: 1;
    transform: translateY(0);
}
.home-page .hp-stage__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}
.home-page .hp-stage__btn i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}
.home-page .hp-stage__btn:hover i {
    transform: translateX(4px);
}
.home-page .hp-stage__btn--fill {
    background: var(--hp-accent);
    color: #fff !important;
    border: 2px solid var(--hp-accent);
    box-shadow: 0 4px 20px rgba(0, 111, 135, 0.3);
}
.home-page .hp-stage__btn--fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0s;
}
.home-page .hp-stage__btn--fill:hover {
    background: #005A6E;
    border-color: #005A6E;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 111, 135, 0.45);
}
.home-page .hp-stage__btn--fill:hover::after {
    left: 130%;
    transition: left 0.55s ease;
}
.home-page .hp-stage__btn--outline {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.home-page .hp-stage__btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff !important;
    transform: translateY(-3px);
}

/* ── Görsel kartı (sağ) ── */
.home-page .hp-stage__visual {
    flex: 1;
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateX(30px) scale(0.97);
    transition: opacity 0.7s ease 0.1s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.home-page .carousel-item.active .hp-stage__visual {
    opacity: 1;
    transform: translateX(0) scale(1);
}
.home-page .hp-stage__card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    position: relative;
}
.home-page .hp-stage__card img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.home-page .carousel-item.active .hp-stage__card img {
    transform: scale(1.04);
}
.home-page .carousel-item:not(.active) .hp-stage__card img {
    transform: scale(1);
    transition: none;
}

/* Görsel kart alt gradient (opsiyonel derinlik) */
.home-page .hp-stage__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
    pointer-events: none;
    border-radius: 0 0 24px 24px;
}

/* ── Navigasyon ── */
.home-page .hp-stage__nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 15;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.home-page .hp-stage__counter {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
}
.home-page .hp-stage__counter-cur {
    color: #fff;
    min-width: 1.4em;
    text-align: right;
}
.home-page .hp-stage__counter-sep {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 2px;
}
.home-page .hp-stage__counter-tot {
    color: rgba(255, 255, 255, 0.35);
}
.home-page .hp-stage__dots {
    display: flex;
    align-items: center;
    gap: 6px;
}
.home-page .hp-stage__dot {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
    outline: none;
    position: relative;
    overflow: hidden;
}
.home-page .hp-stage__dot:hover {
    background: rgba(255, 255, 255, 0.3);
}
.home-page .hp-stage__dot.active {
    width: 44px;
    background: rgba(0, 111, 135, 0.3);
}
.home-page .hp-stage__dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--hp-accent);
    border-radius: 2px;
    animation: hp-pill-fill 6s linear forwards;
}
@keyframes hp-pill-fill {
    from { width: 0 }
    to { width: 100% }
}

/* ── Tablet ── */
@media (max-width: 1100px) {
    .home-page .hp-stage {
        padding: 2.5rem 4% 4.5rem;
        gap: 4%;
    }
    .home-page .hp-stage__content {
        flex: 0 0 44%;
    }
    .home-page .hp-stage__card img {
        height: 460px;
    }
}

/* ========================================================================
   MOBİL — Diagonal Split Design
   Üst: görsel (tam genişlik, sabit yükseklik)
   Alt: koyu panel — eğik clip-path ile görsel içine girer
   ======================================================================== */
@media (max-width: 768px) {
    .home-page .banner-area.desktop { display: none !important; }
    .home-page .banner-area.mobile  { display: block !important; }
}

/* ── wrapper — arka plan koyu, beyaz sızıntı önlenir ── */
.home-page .banner-area.mobile {
    background: #0c1220 !important;
    overflow: hidden;
    padding-top: 20px !important;
}

/* ── Carousel sarmalayıcı — sabit toplam yükseklik, tüm slaytlar eşit ── */
.home-page .banner-area.mobile #mobilecarousel {
    background: #0c1220 !important;
    height: 330px !important;
    overflow: hidden !important;
}

/* ── Carousel item: wrapper yüksekliğini doldur ── */
.home-page .banner-area.mobile .carousel-item {
    height: 400px !important;
    min-height: unset !important;
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    background: #0c1220 !important;
}

/* ── box-table / box-cell: tamamen sıfırla, block yap ── */
.home-page .banner-area.mobile .box-table {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    position: static !important;
}
.home-page .banner-area.mobile .box-cell {
    display: block !important;
    vertical-align: unset !important;
    padding: 0 !important;
    position: static !important;
}
.home-page .banner-area.mobile .container-fluid {
    padding: 0 !important;
    position: static !important;
}

/* ════════════════════════════════
   GÖRSEL BLOK — 400px toplam yüksekliğe göre
   Görsel: 210px görünür → içerik paneline ~190px
   ════════════════════════════════ */
.home-page .banner-area.mobile .slider-thumb {
    position: relative !important;
    inset: unset !important;
    display: block !important;
    width: 100% !important;
    height: 210px !important;
    min-height: unset !important;
    max-height: unset !important;
    background-size: cover !important;
    background-position: center 20% !important;
    background-repeat: no-repeat !important;
    z-index: 1 !important;
    /* Mobil slider görseli: çapraz yerine düz dikdörtgen */
    clip-path: none !important;
    transform: none !important;
    transition: none !important;
}

/* İçerik yoksa → clip kaldır, tam yükseklik */
.home-page .banner-area.mobile .content:not(:has(h2)):not(:has(h4)):not(:has(p)):not(:has(.button-group)) ~ * .slider-thumb,
.home-page .banner-area.mobile .slider-thumb:only-child {
    height: 400px !important;
    clip-path: none !important;
}

/* Görselin üstüne: brand rengi gradient */
.home-page .banner-area.mobile .slider-thumb::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    background:
            linear-gradient(
                    160deg,
                    rgba(0, 111, 135, 0.18) 0%,
                    transparent 45%
            ),
            linear-gradient(
                    to bottom,
                    rgba(12, 18, 32, 0.0) 30%,
                    rgba(12, 18, 32, 0.55) 100%
            ) !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

.home-page .banner-area.mobile .slider-thumb::before {
    display: none !important;
}

/* ════════════════════════════════
   İÇERİK PANEL — 400px toplam için dengeli spacing
   ════════════════════════════════ */
.home-page .banner-area.mobile .content {
    position: relative !important;
    inset: unset !important;
    transform: none !important;
    display: block !important;
    /* Negatif margin: görsel clip alanına bindirme */
    margin: -7vw 0 0 !important;
    /* Üst padding azaltıldı — daha az boşluk kaybı */
    padding: 1.4rem 1.5rem 1.2rem !important;
    background: #0c1220 !important;
    text-align: left !important;
    z-index: 5 !important;
    border-left: 3px solid var(--hp-accent) !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* İçerik yoksa paneli gizle */
.home-page .banner-area.mobile .content:not(:has(h2)):not(:has(h4)):not(:has(p)):not(:has(.button-group)) {
    display: none !important;
    margin: 0 !important;
}
.home-page .banner-area.mobile .content:empty {
    display: none !important;
    margin: 0 !important;
}

/* Accent çizgisi — daha küçük margin */
.home-page .banner-area.mobile .content::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--hp-accent);
    margin-bottom: 0.65rem;
    border-radius: 2px;
}

/* Subtitle (h4) */
.home-page .banner-area.mobile .content h4 {
    font-size: 0.58rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.26em !important;
    text-transform: uppercase !important;
    color: var(--hp-accent) !important;
    margin: 0 0 0.45rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    text-shadow: none !important;
    opacity: 0.9;
    line-height: 1.3 !important;
}
.home-page .banner-area.mobile .content h4::before {
    display: none !important;
}

/* Başlık (h2) — biraz küçültüldü ama güçlü */
.home-page .banner-area.mobile .content h2 {
    font-size: clamp(1.2rem, 5.5vw, 1.55rem) !important;
    font-weight: 800 !important;
    color: #f8fafc !important;
    line-height: 1.2 !important;
    margin: 0 0 0.7rem !important;
    text-shadow: none !important;
    letter-spacing: -0.025em !important;
}

/* Açıklama (p) — satır aralığı korundu, margin azaltıldı */
.home-page .banner-area.mobile .content p {
    font-size: 0.78rem !important;
    color: rgba(200, 214, 230, 0.80) !important;
    line-height: 1.65 !important;
    margin: 0 0 0.9rem !important;
    text-shadow: none !important;
    max-width: 92%;
}

/* ════════════════════════════════
   BUTONLAR — kompakt ama tıklanabilir
   ════════════════════════════════ */
.home-page .banner-area.mobile .button-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: flex-start !important;
    margin-top: 0 !important;
}
.home-page .banner-area.mobile .button-group .btn {
    padding: 9px 16px !important;
    font-size: 0.67rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    font-family: 'Montserrat', sans-serif !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    transition: all 0.22s ease !important;
    white-space: nowrap !important;
}
.home-page .banner-area.mobile .button-group .btn-gradient {
    background: var(--hp-accent) !important;
    border: 2px solid var(--hp-accent) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0 rgba(0, 111, 135, 0.5) !important;
}
.home-page .banner-area.mobile .button-group .btn-gradient:hover {
    background: #005A6E !important;
    border-color: #005A6E !important;
    box-shadow: 0 0 0 4px rgba(0, 111, 135, 0.18) !important;
}
.home-page .banner-area.mobile .button-group .btn-light.effect {
    background: transparent !important;
    border: 1.5px solid rgba(180, 200, 230, 0.35) !important;
    color: rgba(220, 235, 255, 0.88) !important;
}
.home-page .banner-area.mobile .button-group .btn-light.effect:hover {
    border-color: rgba(180, 200, 230, 0.75) !important;
    background: rgba(255,255,255,0.05) !important;
    color: #fff !important;
}

/* ════════════════════════════════
   CAROUSEL OK BUTONLARI
   ════════════════════════════════ */
.home-page .banner-area.mobile .carousel-control {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    width: 28px !important;
    height: 52px !important;
    background: rgba(12, 18, 32, 0.45) !important;
    border: none !important;
    top: calc(210px / 2) !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
    opacity: 1 !important;
    z-index: 20 !important;
    backdrop-filter: blur(6px) !important;
    transition: background 0.2s, width 0.2s !important;
    box-shadow: none !important;
}
.home-page .banner-area.mobile .carousel-control.left {
    left: 0 !important;
    top: 165px!important;
    border-radius: 0 4px 4px 0 !important;
}
.home-page .banner-area.mobile .carousel-control.right {
    right: 0 !important;
    top: 165px!important;
    border-radius: 4px 0 0 4px !important;
}
.home-page .banner-area.mobile .carousel-control:hover {
    background: rgba(0, 111, 135, 0.65) !important;
    width: 34px !important;
}
.home-page .banner-area.mobile .carousel-control i {
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.9) !important;
    text-shadow: none !important;
}

/* Indicators gizle */
.home-page .banner-area.mobile .carousel-indicators {
    display: none !important;
}

/* ── Küçük ekran ── */
@media (max-width: 480px) {
    .home-page .banner-area.mobile #mobilecarousel,
    .home-page .banner-area.mobile .carousel-item {
        height: 330px !important;
    }
    .home-page .banner-area.mobile .slider-thumb {
        height: 200px !important;
    }
    .home-page .banner-area.mobile .carousel-control {
        top: calc(200px / 2) !important;
    }
    .home-page .banner-area.mobile .content {
        margin: -7vw 0 0 !important;
        padding: 1.4rem 1.25rem 1rem !important;
    }
}
@media (max-width: 360px) {
    .home-page .banner-area.mobile #mobilecarousel,
    .home-page .banner-area.mobile .carousel-item {
        height: 325px !important;
    }
    .home-page .banner-area.mobile .slider-thumb {
        height: 185px !important;
    }
    .home-page .banner-area.mobile .carousel-control {
        top: calc(185px / 2) !important;
    }
    .home-page .banner-area.mobile .content h2 {
        font-size: 1.15rem !important;
    }
    .home-page .banner-area.mobile .button-group {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

/* ========== BÖLÜM BAŞLIKLARI – Yeni bileşen ========== */
.home-page .site-heading {
    margin-bottom: 2.5rem;
}

.home-page .site-heading__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hp-accent);
    margin-bottom: 0.5rem;
}

.home-page .site-heading__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--hp-dark);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}

.home-page .site-heading--center {
    text-align: center;
}

.home-page .site-heading--center .site-heading__label {
    margin-left: auto;
    margin-right: auto;
}

/* ========== HİZMETLER – Liste / yatay kart (Serpil’den farklı) ========== */
.home-page .services-area {
    background: var(--hp-bg);
    padding: 4rem 0;
}

.home-page .services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-page .service-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    margin-bottom: 0.75rem;
}

.home-page .service-row:hover {
    border-color: var(--hp-accent);
    box-shadow: 0 8px 24px rgba(0, 111, 135, 0.12);
    background: #fff;
}

.home-page .service-row__num {
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--hp-accent);
    opacity: 0.9;
    min-width: 2rem;
}

.home-page .service-row__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--hp-bg);
}

.home-page .service-row__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-page .service-row:hover .service-row__thumb img {
    transform: scale(1.08);
}

.home-page .service-row__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hp-accent);
    font-size: 1.5rem;
}

.home-page .service-row__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 1rem;
}

.home-page .service-row__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hp-dark);
    display: block;
    width: 100%;
}

.home-page .service-row:hover .service-row__title {
    color: var(--hp-accent);
}

.home-page .service-row__excerpt {
    font-size: 0.9rem;
    color: var(--hp-body);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.home-page .service-row__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hp-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.home-page .service-row__link i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.home-page .service-row:hover .service-row__link i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .home-page .service-row {
        flex-wrap: wrap;
        padding: 1rem;
        gap: 1rem;
    }

    .home-page .service-row__num {
        order: 1;
        width: 100%;
    }

    .home-page .service-row__thumb {
        order: 2;
        width: 56px;
        height: 56px;
    }

    .home-page .service-row__body {
        order: 3;
        flex: 1 1 calc(100% - 56px - 1rem);
    }

    .home-page .service-row__title {
        font-size: 1rem;
    }

    .home-page .service-row__excerpt {
        -webkit-line-clamp: 2;
    }
}

.blog-area .blog-items .single-item {
    margin-bottom: 30px;
    display: flex;
    height: 100%;
}

.blog-area .blog-items .item {
    height: 385px;
    display: flex;
    flex-direction: column;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
}

.blog-area .blog-items .item:hover {
    transform: translateY(-5px);
}

.blog-area .blog-items .thumb {
    flex-shrink: 0;
    height: 215px;
    overflow: hidden;
}

.blog-area .blog-items .thumb img {
    width: 100%;
    max-height: 200px;
    object-fit: fill;
    transition: transform 0.3s ease;
}

.blog-area .blog-items .item:hover .thumb img {
    transform: scale(1.05);
}

.blog-area .blog-items .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    height: 280px;
}

.home-page .blog-area .blog-items .info .date {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--hp-accent);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.blog-area .blog-items .info .meta {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.blog-area .blog-items .info .meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.blog-area .blog-items .info .meta ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-area .blog-items .info h4 {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 600;
}

.blog-area .blog-items .info h4 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
    height: 100%;
}

.home-page .blog-area .blog-items .info h4 a:hover {
    color: var(--hp-accent);
}

.blog-area .blog-items .info .btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 8px 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .blog-area .blog-items .item {
        height: auto;
        min-height: 400px;
    }

    .blog-area .blog-items .info {
        height: auto;
        min-height: 200px;
    }

    .blog-area .blog-items .info h4 {
        height: auto;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .banner-area.mobile .carousel-item {
        height: 400px !important;
    }

    .banner-area.mobile .slider-thumb {
        height: 400px !important;
        min-height: 400px;
        background-size: cover !important;
        background-color: #F4F9FB;
    }

    .banner-area.mobile .box-table {
        height: 400px !important;
    }
}

@media (max-width: 360px) {
    .banner-area.mobile .carousel-item {
        height: 350px !important;
    }

    .banner-area.mobile .slider-thumb {
        height: 350px !important;
        min-height: 350px;
        background-size: contain !important;
        background-color: #F4F9FB;
    }

    .banner-area.mobile .box-table {
        height: 350px !important;
    }
}

/* ========== RANDEVU ALANI ========== */
.home-page .appointment-area {
    padding: 4rem 0;
    background: var(--hp-dark);
    position: relative;
    overflow: hidden;
}

.home-page .appointment-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 111, 135, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

.home-page .appointment-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 2.5rem;
}

.home-page .appointment-strip__text {
    flex: 1;
    min-width: 200px;
}

.home-page .appointment-strip__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.35rem 0;
    letter-spacing: -0.02em;
}

.home-page .appointment-strip__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.home-page .appointment-strip__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.home-page .appointment-strip__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.home-page .appointment-strip__btn i {
    font-size: 1rem;
}

.home-page .appointment-strip__btn--phone {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-page .appointment-strip__btn--phone:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-2px);
}

.home-page .appointment-strip__btn--wa {
    background: #25d366;
    color: #fff;
    border: none;
}

.home-page .appointment-strip__btn--wa:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.home-page .appointment-strip__btn--email {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.home-page .appointment-strip__btn--email:hover {
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .home-page .appointment-strip {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem 1.5rem;
    }

    .home-page .appointment-strip__actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .home-page .appointment-strip__actions {
        flex-direction: column;
        width: 100%;
    }

    .home-page .appointment-strip__btn {
        width: 100%;
        justify-content: center;
    }
}

.appointment-heading {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.appointment-label {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
}

.appointment-label::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #ffffff;
    margin: 16px auto 0;
    border-radius: 2px;
    opacity: 0.9;
}

.appointment-content {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* Kartlar: beyaz zemin, koyu metin – yüksek kontrast */
.home-page .appointment-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.home-page .appointment-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.home-page .appointment-card__icon {
    background: var(--hp-accent);
    color: #fff;
}

.home-page .appointment-card__title {
    color: rgba(255, 255, 255, 0.8);
}

.home-page .appointment-card__value {
    color: #fff;
}

.home-page .appointment-cta {
    background: var(--hp-accent);
    color: #fff;
    border: 2px solid var(--hp-accent);
    border-radius: 100px;
}

.home-page .appointment-cta:hover {
    background: #005A6E;
    border-color: #005A6E;
    color: #fff;
    transform: translateY(-4px);
}

@media (max-width: 992px) {
    .appointment-content {
        gap: 16px;
        max-width: 100%;
    }

    .appointment-card {
        padding: 24px 18px;
    }

    .appointment-cta {
        padding: 18px 30px;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .appointment-area {
        padding: 48px 0 56px;
    }

    .appointment-heading {
        margin-bottom: 28px;
    }

    .appointment-label {
        font-size: 1.0625rem;
        letter-spacing: 0.12em;
    }

    .appointment-content {
        flex-direction: column;
        gap: 14px;
    }

    .appointment-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        padding: 26px 22px;
    }

    .appointment-cta {
        order: -1;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ========== İLETİŞİM v2 – Split Panel Tasarım ========== */
.home-page .contact-area--v2 {
    padding: 4rem 0;
    background: var(--hp-bg);
    position: relative;
    overflow: hidden;
}

.home-page .ct-split {
    display: grid;
    grid-template-columns: 5fr 7fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.home-page .ct-split__info {
    background: linear-gradient(160deg, #061E29 0%, #1D546D 55%, #5F9598 100%);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.home-page .ct-split__info::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.home-page .ct-split__info::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.home-page .ct-split__label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.6rem;
}

.home-page .ct-split__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.6rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-page .ct-split__desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.home-page .ct-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.home-page .ct-info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    transition: padding-left 0.25s ease;
}

.home-page .ct-info-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-page a.ct-info-row:hover {
    padding-left: 0.5rem;
    color: inherit;
    text-decoration: none;
}

.home-page .ct-info-row__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1rem;
    transition: background 0.25s ease;
}

.home-page a.ct-info-row:hover .ct-info-row__icon {
    background: rgba(255, 255, 255, 0.22);
}

.home-page .ct-info-row__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.home-page .ct-info-row__body strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-page .ct-info-row__body span {
    font-size: 0.92rem;
    color: #fff;
    font-weight: 500;
    word-break: break-word;
}

.home-page .ct-social {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.home-page .ct-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.home-page .ct-social a:hover {
    background: #fff;
    color: var(--hp-accent);
    transform: translateY(-3px);
}

.home-page .ct-split__form {
    background: #fff;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.home-page .ct-form__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--hp-dark);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.home-page .ct-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.home-page .ct-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.home-page .ct-form__group {
    position: relative;
}

.home-page .ct-form__input {
    width: 100%;
    background: var(--hp-bg);
    border: 2px solid var(--hp-border);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--hp-dark);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    box-sizing: border-box;
}

.home-page .ct-form__input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.home-page .ct-form__input:focus {
    border-color: var(--hp-accent);
    box-shadow: 0 0 0 3px rgba(0, 111, 135, 0.1);
}

.home-page .ct-form__textarea {
    min-height: 120px;
    resize: vertical;
}

.home-page .ct-form__submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: var(--hp-accent);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 111, 135, 0.25);
}

.home-page .ct-form__submit:hover {
    background: #005A6E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 111, 135, 0.35);
}

.home-page .ct-form__submit i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.home-page .ct-form__submit:hover i {
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .home-page .ct-split {
        grid-template-columns: 1fr;
    }

    .home-page .ct-split__info {
        padding: 2.5rem 2rem;
    }

    .home-page .ct-split__form {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 576px) {
    .home-page .contact-area--v2 {
        padding: 2.5rem 0;
    }

    .home-page .ct-split {
        border-radius: 16px;
    }

    .home-page .ct-split__info {
        padding: 2rem 1.5rem;
    }

    .home-page .ct-split__form {
        padding: 2rem 1.5rem;
    }

    .home-page .ct-form__row {
        grid-template-columns: 1fr;
    }

    .home-page .ct-form__submit {
        width: 100%;
        justify-content: center;
    }

    .home-page .ct-info-row__icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

.testimonials-container {
    margin-top: 50px;
}

.testimonials-carousel {
    padding: 20px 0;
}

.testimonials-carousel .owl-stage-outer {
    overflow: hidden;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #F4F9FB 100%);
    border-radius: 20px;
    padding: 25px;
    margin: 15px;
    box-shadow: 0 15px 35px rgba(0, 124, 145, 0.1);
    border: 1px solid rgba(0, 124, 145, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ========== GOOGLE YORUMLARI – Şık kartlar ========== */
.home-page .health-tips-area {
    background: var(--hp-card);
    padding: 4rem 0;
}

.home-page .reviews-wrap {
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
}

.home-page .review-card {
    background: var(--hp-bg);
    border: 1px solid var(--hp-border);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-page .review-card:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(0, 111, 135, 0.25);
}

.home-page .review-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #5f6368;
    margin-bottom: 0.75rem;
}

.home-page .review-card__badge i {
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-page .review-card__stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.home-page .review-card__quote {
    margin: 0 0 1.25rem 0;
    flex: 1;
    min-width: 0; /* Flex içinde taşmayı önler, mobilde metin sarılır */
}

.home-page .review-card__text,
.home-page .review-card__full {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--hp-body);
    margin: 0;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.home-page .review-card__more {
    background: none;
    border: none;
    color: var(--hp-accent);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.home-page .review-card__more:hover {
    color: #004A5A;
}

.home-page .review-card__more i {
    font-size: 0.65rem;
}

.home-page .review-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--hp-border);
}

.home-page .review-card__author img,
.home-page .review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.home-page .review-card__avatar {
    background: var(--hp-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.home-page .review-card__name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hp-dark);
}

.home-page .reviews-nav {
    margin-top: 1.5rem;
    text-align: center;
}

.home-page .testimonials-carousel .owl-nav {
    margin-top: 1.5rem;
}

.home-page .testimonials-carousel .owl-nav button {
    background: var(--hp-accent);
}

.home-page .testimonials-carousel .owl-nav button:hover {
    background: #004A5A;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.testimonial-avatar {
    margin-right: 15px;
    flex-shrink: 0;
}

.home-page .testimonial-avatar img,
.home-page .testimonial-avatar .avatar-placeholder {
    border-color: var(--hp-accent);
}

.home-page .testimonial-card:hover .testimonial-avatar img,
.home-page .testimonial-card:hover .testimonial-avatar .avatar-placeholder {
    border-color: var(--hp-dark);
}

.home-page .avatar-placeholder {
    background: var(--hp-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.testimonial-info h5 {
    margin: 0 0 6px 0;
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #FFD700;
    font-size: 11px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    position: absolute;
    top: -8px;
    right: 12px;
    font-size: 30px;
    color: rgba(0, 124, 145, 0.1);
    z-index: 1;
}

.testimonial-text {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-content p,
.testimonial-short,
.testimonial-full {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    margin: 0;
    font-style: italic;
}

.home-page .read-more-btn {
    color: var(--hp-accent);
}

.home-page .read-more-btn:hover {
    color: var(--hp-dark);
    background: var(--hp-accent-soft);
}

.read-more-btn i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .testimonial-card {
        margin: 10px 5px;
        padding: 20px 15px;
        min-height: 280px;
        height: auto;
        width: 100% !important;
    }

    .testimonial-header {
        flex-direction: row;
        text-align: left;
        margin-bottom: 12px;
    }

    .testimonial-avatar {
        margin: 0 15px 0 0;
    }

    .testimonial-avatar img,
    .testimonial-avatar .avatar-placeholder {
        width: 45px;
        height: 45px;
    }

    .avatar-placeholder {
        font-size: 16px;
    }

    .quote-icon {
        right: 8px;
        font-size: 25px;
    }

    .testimonial-content p,
    .testimonial-short,
    .testimonial-full {
        font-size: 12px;
    }

    .testimonial-info h5 {
        font-size: 14px;
    }

    .read-more-btn {
        font-size: 10px;
        padding: 3px 6px;
        margin-top: 6px;
    }

    .read-more-btn i {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 18px 12px;
        min-height: 260px;
        height: auto;
        width: 100% !important;
    }

    .testimonial-avatar img,
    .testimonial-avatar .avatar-placeholder {
        width: 40px;
        height: 40px;
    }

    .avatar-placeholder {
        font-size: 14px;
    }

    .testimonial-content p,
    .testimonial-short,
    .testimonial-full {
        font-size: 11px;
    }

    .read-more-btn {
        font-size: 9px;
        padding: 2px 5px;
        margin-top: 5px;
    }

    .read-more-btn i {
        font-size: 7px;
    }
}

.testimonials-carousel .owl-nav {
    position: static;
    top: auto;
    transform: none;
    width: 100%;
    left: auto;
    z-index: 10;
    pointer-events: all;
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.home-page .testimonials-carousel .owl-nav button {
    background: var(--hp-accent);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 124, 145, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    outline: none;
}

.home-page .testimonials-carousel .owl-nav button:hover {
    background: #004A5A;
    transform: translateY(-3px);
}

.testimonials-carousel .owl-nav .owl-prev {
    left: auto;
}

.testimonials-carousel .owl-nav .owl-next {
    right: auto;
}

@media (max-width: 768px) {
    /* 768px altında carousel'ın her zaman görünmesi (Owl display:none override) */
    .health-tips-area .testimonials-carousel.owl-carousel {
        display: block !important;
    }
    /* JS yüklenmeden önce kartların dikey listelenmesi (owl-loaded yokken) */
    .health-tips-area .testimonials-carousel.owl-carousel:not(.owl-loaded) {
        display: block !important;
    }
    .health-tips-area .testimonials-carousel.owl-carousel:not(.owl-loaded) .review-card,
    .health-tips-area .testimonials-carousel.owl-carousel:not(.owl-loaded) .testimonial-card {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: none !important;
        margin-bottom: 20px !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
    }
    .health-tips-area .testimonials-carousel.owl-carousel:not(.owl-loaded) .review-card:last-child,
    .health-tips-area .testimonials-carousel.owl-carousel:not(.owl-loaded) .testimonial-card:last-child {
        margin-bottom: 0 !important;
    }

    .health-tips-area .reviews-wrap,
    .health-tips-area .testimonials-carousel {
        width: 100% !important;
        max-width: 100% !important;
    }

        /* Yorum kartlarının gerçekten tam ekran genişliğini kullanması için
           grid/padding ve item boşluklarını tamamen sıfırla */
        .home-page .health-tips-area .row,
        .home-page .health-tips-area .col-12 {
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .home-page .health-tips-area .testimonials-carousel .owl-item {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

    /* Kullanıcı yorum alanında container ve kartlar tam ekran genişliği */
    .home-page .health-tips-area .container {
        padding-left: 0;
        padding-right: 0;
    }

    .testimonials-carousel .owl-stage-outer {
        overflow: hidden !important;
        width: 100% !important;
        -webkit-overflow-scrolling: touch;
    }

    .testimonials-carousel .owl-stage {
        display: flex !important;
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
    }

    .health-tips-area .review-card {
        transition: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .health-tips-area .review-card__text {
        transition: none;
    }

    .testimonials-carousel .owl-item {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* responsive.css tüm .owl-nav'ı gizliyor; testimonials için tekrar göster */
    .health-tips-area .testimonials-carousel .owl-nav {
        display: flex !important;
    }
    .testimonials-carousel .owl-nav {
        position: static;
        top: auto;
        transform: none;
        width: 100%;
        left: auto;
        z-index: 10;
        pointer-events: all;
        text-align: center;
        margin-top: 20px;
        display: flex !important;
        justify-content: center;
        gap: 15px;
    }

    .testimonials-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 14px;
        pointer-events: all;
        position: static;
    }

    .testimonials-carousel .owl-nav .owl-prev {
        left: auto;
    }

    .testimonials-carousel .owl-nav .owl-next {
        right: auto;
    }

    .testimonial-card,
    .review-card {
        margin: 0 !important;
        padding: 20px 15px;
        height: auto !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 15px;
        display: flex !important;
        flex-direction: column !important;
        position: relative;
        box-sizing: border-box !important;
    }

    .home-page .review-card {
        padding: 1.25rem 1rem;
        min-height: auto;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden;
    }

    .home-page .review-card__quote,
    .home-page .review-card__text {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .home-page .health-tips-area {
        padding: 2.5rem 0;
    }

    .home-page .reviews-wrap {
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel .owl-nav {
        margin-top: 15px;
        gap: 10px;
    }

    .testimonials-carousel .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .testimonial-card,
    .review-card {
        padding: 15px 12px;
        min-height: auto;
        border-radius: 12px;
        width: 100% !important;
        max-width: none !important;
    }

    .testimonial-avatar img,
    .testimonial-avatar .avatar-placeholder {
        width: 45px;
        height: 45px;
    }

    .avatar-placeholder {
        font-size: 14px;
    }

    .testimonial-info h5 {
        font-size: 13px;
    }

    .testimonial-content p,
    .testimonial-short,
    .testimonial-full {
        font-size: 12px;
        line-height: 1.5;
    }

    .quote-icon {
        font-size: 22px;
        right: 8px;
    }
}

/* Homepage About Section */
/* ========== HAKKIMIZDA – Split, koyu panel (Serpil’den farklı) ========== */
.home-page .homepage-about-area {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.home-page .homepage-about-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(0, 111, 135, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.home-page .homepage-about-area .container {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.home-page .about-v2 {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.home-page .about-v2__visual {
    flex: 0 0 55%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.home-page .about-v2__visual img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-page .about-v2__visual:hover img {
    transform: scale(1.04);
}

.home-page .about-v2__card {
    flex: 1;
    position: relative;
    z-index: 2;
    margin-left: -80px;
    background: #fff;
    border-radius: 20px;
    padding: 2.75rem 2.5rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-page .about-v2__bar {
    position: absolute;
    top: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-accent) 0%, rgba(0, 111, 135, 0.2) 100%);
    border-radius: 0 0 4px 4px;
}

.home-page .about-v2__label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hp-accent);
    margin-bottom: 1rem;
}

.home-page .about-v2__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--hp-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.home-page .about-v2__subtitle {
    font-size: 0.95rem;
    color: var(--hp-accent);
    font-weight: 600;
    font-style: italic;
    margin: 0 0 1.25rem 0;
    line-height: 1.55;
    padding-left: 1rem;
    border-left: 3px solid var(--hp-accent);
}

.home-page .about-v2__text {
    color: var(--hp-body);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.home-page .about-v2__text #simple-translate{
    display: none;
}

.home-page .about-v2__text p {
    margin-bottom: 0.6rem;
    color: inherit;
}

.home-page .about-v2__text p:last-child {
    margin-bottom: 0;
}

.home-page .about-v2__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.home-page .about-v2__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-page .about-v2__btn i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.home-page .about-v2__btn:hover i {
    transform: translateX(4px);
}

.home-page .about-v2__btn--fill {
    padding: 0.85rem 1.75rem;
    background: var(--hp-accent);
    color: #fff;
    border: 2px solid var(--hp-accent);
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 111, 135, 0.2);
}

.home-page .about-v2__btn--fill:hover {
    background: #005A6E;
    border-color: #005A6E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 111, 135, 0.35);
}

.home-page .about-v2__btn--link {
    color: var(--hp-accent);
    padding: 0;
    background: none;
    border: none;
    position: relative;
}

.home-page .about-v2__btn--link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hp-accent);
    transition: width 0.3s ease;
}

.home-page .about-v2__btn--link:hover {
    color: #005A6E;
}

.home-page .about-v2__btn--link:hover::after {
    width: calc(100% - 1.25rem);
}

/* ── About v2 Responsive ── */
@media (max-width: 992px) {
    .home-page .homepage-about-area {
        padding: 3.5rem 0;
    }

    .home-page .about-v2 {
        flex-direction: column;
        gap: 0;
    }

    .home-page .about-v2__visual {
        flex: none;
        width: 100%;
        border-radius: 20px 20px 0 0;
    }

    .home-page .about-v2__visual img {
        height: 340px;
    }

    .home-page .about-v2__card {
        margin-left: auto;
        margin-right: auto;
        margin-top: -40px;
        border-radius: 20px;
        width: calc(100% - 2rem);
        padding: 2rem 1.75rem;
    }

    .home-page .about-v2__bar {
        left: 1.75rem;
        right: 1.75rem;
    }
}

@media (max-width: 576px) {
    .home-page .homepage-about-area {
        padding: 2.5rem 0;
    }

    .home-page .about-v2__visual img {
        height: 260px;
    }

    .home-page .about-v2__card {
        margin-top: -30px;
        padding: 1.75rem 1.5rem;
        width: calc(100% - 1.5rem);
    }

    .home-page .about-v2__bar {
        left: 1.5rem;
        right: 1.5rem;
    }

    .home-page .about-v2__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.homepage-about-text p {
    margin-bottom: 15px;
}

.homepage-about-text ul,
.homepage-about-text ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.homepage-about-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.homepage-about-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.homepage-about-buttons .btn {
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.homepage-about-image .placeholder-image {
    background: #F4F9FB;
    border: 2px dashed #dee2e6;
    border-radius: 20px;
    padding: 80px 20px;
    text-align: center;
    color: #6c757d;
    position: relative;
    z-index: 2;
}

.homepage-about-image .placeholder-image i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.homepage-about-image .placeholder-image span {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .homepage-about-area {
        padding: 60px 0;
    }

    .homepage-about-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .homepage-about-content h2 {
        font-size: 2rem;
    }

    .homepage-about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .homepage-about-image {
        padding-left: 0;
    }

    .homepage-about-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .homepage-about-area {
        padding: 30px 0 10px 0;
        margin-bottom: 20px;
    }

    .homepage-about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .homepage-about-content h4 {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .homepage-about-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .homepage-about-buttons {
        flex-direction: column;
        width: 100%;
    }

    .homepage-about-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 14px;
    }

    .homepage-about-image::before {
        top: 15px;
    }

    .homepage-about-area .col-lg-6:first-child {
        order: 2;
    }

    .homepage-about-area .col-lg-6:last-child {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .homepage-about-content h2 {
        font-size: 1.5rem;
    }

    .homepage-about-content h4 {
        font-size: 0.9rem;
    }

    .homepage-about-text {
        font-size: 0.9rem;
    }

    .homepage-about-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .homepage-about-image .placeholder-image {
        padding: 60px 15px;
    }

    .homepage-about-image .placeholder-image i {
        font-size: 36px;
    }
}

/* ========== GOOGLE YORUMLARI – Kart yüksekliklerini eşitleme ========== */
.home-page .testimonials-carousel .owl-stage {
    display: flex !important;
    align-items: stretch !important;
}

.home-page .testimonials-carousel .owl-item {
    display: flex !important;
    height: auto !important;
}

.home-page .testimonials-carousel .owl-item .review-card {
    height: 100%;
    width: 100%;
    min-width: 0; /* Mobilde kartın taşmasını önler */
}

/* Owl Carousel varsayılan genişliklerini ezmek için genel kural
   (JS ile inline width verildiği durumlarda da baskın olsun diye) */
@media (max-width: 768px) {
    /* Mobilde dış katmanlar tam genişlikte kalsın */
    .home-page .health-tips-area .container,
    .home-page .health-tips-area .row,
    .home-page .health-tips-area [class^="col-"],
    .home-page .testimonials-carousel.owl-carousel,
    .home-page .testimonials-carousel .owl-stage-outer,
    .home-page .testimonials-carousel .owl-stage {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* Kartları biraz daraltıp aralarında boşluk bırak */
    .home-page .testimonials-carousel .owl-item {
        width: 88% !important;
        max-width: 88% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 6% !important; /* solda ve sağda boşluk */
        box-sizing: border-box !important;
    }

    .home-page .testimonials-carousel .owl-item .review-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
}

.home-page .review-card__text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 0; /* Yatay kesilmeyi önler, metin satıra sarılır */
}

.home-page .review-card.expanded .review-card__text {
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
}

.home-page .review-card__more i {
    transition: transform 0.3s ease;
}

.home-page .review-card.expanded .review-card__more i {
    transform: rotate(180deg);
}

/* ========== BLOG KARTLARI – Modern kart tasarımı ========== */
.home-page .blog-area {
    background: var(--hp-bg);
    padding: 4rem 0;
}

.home-page .blog-area .blog-items .single-item {
    height: 100%;
}

.home-page .blog-area .blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: var(--hp-card);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .blog-area .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
}

.home-page .blog-area .blog-card__image-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.home-page .blog-area .blog-card__image-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.home-page .blog-area .blog-card:hover .blog-card__image-link img {
    transform: scale(1.06);
}

.home-page .blog-area .blog-card__image-link .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.05));
    opacity: 0.9;
    pointer-events: none;
}

.home-page .blog-area .blog-card__body {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.home-page .blog-area .blog-card__body .meta {
    font-size: 0.8rem;
    color: var(--hp-body);
    opacity: 0.9;
    gap: 0.75rem;
}

.home-page .blog-area .blog-card__body .meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.home-page .blog-area .blog-card__body h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.home-page .blog-area .blog-card__body h4 a {
    color: var(--hp-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-page .blog-area .blog-card__body h4 a:hover {
    color: var(--hp-accent);
}

.home-page .blog-area .blog-card__body .btn-read-more {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hp-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.home-page .blog-area .blog-card__body .btn-read-more i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.home-page .blog-area .blog-card__body .btn-read-more:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .home-page .blog-area {
        padding: 3rem 0;
    }

    .home-page .blog-area .blog-card__image-link img {
        height: 200px;
    }
}

.maps-area .google-maps {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0px;
    overflow: hidden;
}

/* v5: tüm mobile kurallar yukarıdaki blokta */



/* ========== BLOG LİSTELEME SAYFASI ========== */
.home-page .blog-listing-area {
    padding: 3rem 0 4rem;
    background: var(--hp-bg);
}

.home-page .bl-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.home-page .bl-header__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--hp-dark);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-page .bl-header__count {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hp-body);
    opacity: 0.7;
    white-space: nowrap;
    padding-bottom: 4px;
}

/* ── Grid: ilk kart büyük, diğerleri 3'lü ── */
.home-page .bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-page .bl-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.home-page .bl-card--featured .bl-card__img {
    height: 100%;
    min-height: 340px;
}

.home-page .bl-card--featured .bl-card__body {
    padding: 2rem 2.25rem;
    justify-content: center;
}

.home-page .bl-card--featured .bl-card__title {
    font-size: 1.4rem;
    -webkit-line-clamp: 3;
}

.home-page .bl-card--featured .bl-card__meta {
    margin-bottom: 0.75rem;
}

/* ── Tek kart ── */
.home-page .bl-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: var(--hp-card);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-page .bl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.14);
    color: inherit;
    text-decoration: none;
}

/* Görsel */
.home-page .bl-card__img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.home-page .bl-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.home-page .bl-card:hover .bl-card__img img {
    transform: scale(1.06);
}

.home-page .bl-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, transparent 50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.home-page .bl-card:hover .bl-card__overlay {
    opacity: 0.7;
}

.home-page .bl-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.home-page .bl-card__badge--warn {
    background: #fbbf24;
    color: #78350f;
}

/* Body */
.home-page .bl-card__body {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.home-page .bl-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    font-size: 0.78rem;
    color: var(--hp-body);
    opacity: 0.75;
}

.home-page .bl-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.home-page .bl-card__meta i {
    font-size: 0.7rem;
    color: var(--hp-accent);
}

.home-page .bl-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hp-dark);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.home-page .bl-card:hover .bl-card__title {
    color: var(--hp-accent);
}

.home-page .bl-card__read {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hp-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.home-page .bl-card__read i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.home-page .bl-card:hover .bl-card__read i {
    transform: translateX(4px);
}

/* ── Pagination ── */
.home-page .bl-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.home-page .bl-pagination__nums {
    display: flex;
    gap: 4px;
}

.home-page .bl-pagination__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hp-body);
    text-decoration: none;
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    transition: all 0.2s ease;
}

.home-page .bl-pagination__num:hover {
    border-color: var(--hp-accent);
    color: var(--hp-accent);
    text-decoration: none;
}

.home-page .bl-pagination__num.active {
    background: var(--hp-accent);
    border-color: var(--hp-accent);
    color: #fff;
}

.home-page .bl-pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--hp-dark);
    text-decoration: none;
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    transition: all 0.2s ease;
}

.home-page .bl-pagination__btn:hover {
    background: var(--hp-accent);
    border-color: var(--hp-accent);
    color: #fff;
    text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .home-page .bl-card--featured {
        grid-template-columns: 1fr;
    }

    .home-page .bl-card--featured .bl-card__img {
        min-height: 240px;
    }

    .home-page .bl-card--featured .bl-card__body {
        padding: 1.4rem 1.5rem 1.5rem;
    }

    .home-page .bl-card--featured .bl-card__title {
        font-size: 1.15rem;
    }

    .home-page .bl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .home-page .blog-listing-area {
        padding: 2rem 0 3rem;
    }

    .home-page .bl-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .home-page .bl-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-page .bl-card {
        border-radius: 14px;
    }

    .home-page .bl-card__img {
        height: 200px;
    }

    .home-page .bl-card--featured .bl-card__img {
        min-height: 200px;
    }

    .home-page .bl-pagination__num,
    .home-page .bl-pagination__btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 0.82rem;
    }
}

/* ========== SSS SAYFASI ========== */
.home-page .faq-page {
    padding: 3rem 0 2rem;
    background: var(--hp-bg);
}

.home-page .faq-page__header {
    max-width: 620px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.home-page .faq-page__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--hp-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-page .faq-page__desc {
    font-size: 0.95rem;
    color: var(--hp-body);
    margin: 0;
    line-height: 1.6;
}

/* ── Liste ── */
.home-page .faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Tek öğe ── */
.home-page .faq-item {
    border-bottom: 1px solid var(--hp-border);
    position: relative;
}

.home-page .faq-item:first-child {
    border-top: 1px solid var(--hp-border);
}

/* Sol accent çizgi */
.home-page .faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--hp-accent);
    border-radius: 2px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .faq-item--open::before {
    transform: scaleY(1);
}

/* ── Başlık butonu ── */
.home-page .faq-item__head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.35rem 0.5rem 1.35rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: padding-left 0.25s ease;
    outline: none;
}

.home-page .faq-item__head:focus-visible {
    outline: 2px solid var(--hp-accent);
    outline-offset: -2px;
    border-radius: 8px;
}

.home-page .faq-item--open .faq-item__head {
    padding-left: 1.5rem;
}

.home-page .faq-item__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--hp-accent);
    background: var(--hp-accent-soft);
    transition: background 0.25s ease, color 0.25s ease;
}

.home-page .faq-item--open .faq-item__num {
    background: var(--hp-accent);
    color: #fff;
}

.home-page .faq-item__question {
    flex: 1;
    font-size: 1.02rem;
    font-weight: 650;
    color: var(--hp-dark);
    line-height: 1.45;
    transition: color 0.2s ease;
}

.home-page .faq-item--open .faq-item__question {
    color: var(--hp-accent);
}

.home-page .faq-item__head:hover .faq-item__question {
    color: var(--hp-accent);
}

.home-page .faq-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--hp-body);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease, background 0.2s ease;
}

.home-page .faq-item--open .faq-item__icon {
    transform: rotate(180deg);
    color: var(--hp-accent);
    background: var(--hp-accent-soft);
}

/* ── Cevap alanı ── */
.home-page .faq-item__body {
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .faq-item--open .faq-item__body {
    display: block;
    max-height: none;
}

.home-page .faq-item__answer {
    padding: 0 1.25rem 1.5rem calc(1.25rem + 36px + 1.25rem);
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--hp-body);
}

.home-page .faq-item__answer p {
    margin-bottom: 0.75rem;
}

.home-page .faq-item__answer p:last-child {
    margin-bottom: 0;
}

.home-page .faq-item__answer ul,
.home-page .faq-item__answer ol {
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
}

.home-page .faq-item__answer li {
    margin-bottom: 0.35rem;
}

.home-page .faq-item__answer a {
    color: var(--hp-accent);
    text-decoration: none;
    font-weight: 500;
}

.home-page .faq-item__answer a:hover {
    text-decoration: underline;
}

.home-page .faq-item__answer strong {
    color: var(--hp-dark);
    font-weight: 650;
}

.home-page .faq-item__answer h1,
.home-page .faq-item__answer h2,
.home-page .faq-item__answer h3,
.home-page .faq-item__answer h4,
.home-page .faq-item__answer h5,
.home-page .faq-item__answer h6 {
    color: var(--hp-dark);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

/* ── Boş durum ── */
.home-page .faq-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--hp-body);
    opacity: 0.6;
}

.home-page .faq-empty i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.home-page .faq-empty p {
    font-size: 1rem;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .home-page .faq-page {
        padding: 2rem 0 1.5rem;
    }

    .home-page .faq-page__header {
        margin-bottom: 1.5rem;
    }

    .home-page .faq-item__head {
        gap: 0.85rem;
        padding: 1.1rem 0.25rem 1.1rem 0.75rem;
    }

    .home-page .faq-item--open .faq-item__head {
        padding-left: 1rem;
    }

    .home-page .faq-item__num {
        width: 32px;
        height: 32px;
        font-size: 0.72rem;
        border-radius: 8px;
    }

    .home-page .faq-item__question {
        font-size: 0.92rem;
    }

    .home-page .faq-item__icon {
        width: 28px;
        height: 28px;
    }

    .home-page .faq-item__icon svg {
        width: 14px;
        height: 14px;
    }

    .home-page .faq-item__answer {
        padding: 0 0.75rem 1.25rem calc(0.75rem + 32px + 0.85rem);
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .home-page .faq-item__answer {
        padding-left: 0.75rem;
    }
}