/* ═══════════════════════════════════════════════════════════════════════════
   custom.css — Hasene Özel Stiller
   main.css (orijinal anasayfa.html CSS) üzerine yazar.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── MARKA RENKLERİ (tek noktadan yönetim) ─────────────────────────────────
   İkincil rengi değiştirmek için sadece --color-secondary değerini güncelleyin.
   ─────────────────────────────────────────────────────────────────────────── */
:root {
  --color-primary:   #00a9a6;   /* Ana yeşil */
  --color-secondary: #0f7077;   /* İkincil teal — altın rozetler, progress bar, vb. */
}


/* ─── Base ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

a { text-decoration: none; }

/* img'nin height: auto ile logonun fixed height'ini ezmemesi için */
img { max-width: 100%; }

/* ─── GLOBAL CONTAINER — Header ile tam hizalı ──────────────────────────────
   Header .container kullandığı için aynı max-width'i tüm siteye uyguluyoruz.
   Bootstrap breakpoint'leri korunuyor; sadece padding sabitleniyor.
   ─────────────────────────────────────────────────────────────────────────── */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    padding-left:  2rem !important;
    padding-right: 2rem !important;
}

/* Breakpoint'lerde max-width admin settings'den gelir (--site-width) */
@media (min-width: 576px)  { .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { max-width: 100% !important; } }
@media (min-width: 768px)  { .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { max-width: 100% !important; } }
@media (min-width: 992px)  { .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { max-width: 100% !important; } }
@media (min-width: 1200px) { .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { max-width: var(--site-width, 1500px) !important; } }
@media (min-width: 1400px) { .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { max-width: var(--site-width, 1500px) !important; } }

/* ─── HEADER LOGO ─────────────────────────────────────────────────────────── */
.Header__logo,
a.Header__logo {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* ─── SLIDER ARROWS ───────────────────────────────────────────────────────── */
.HomeSlider__arrow {
    background: var(--secondary-color) !important;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.HomeSlider__arrow svg,
.HomeSlider__arrow path {
    fill: #fff !important;
}

.HomeSlider__arrow:hover {
    background: var(--primary-color) !important;
    opacity: 0.9;
}


.Header__logo img,
a.Header__logo img {
    height: 4.5rem !important;
    width: auto !important;
    max-width: none !important;
    min-height: 4.5rem !important;
    display: block !important;
    flex-shrink: 0 !important;
    margin-left: 14px;
}

/* ─── HEADER NAV LINK RENKLERİ ────────────────────────────────────────────── */
.Desktop-menu .Header__nav--link a,
.Desktop-menu .Header__nav--link > a {
    color: #fff !important;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.Desktop-menu .Header__nav--link:hover > a,
.Desktop-menu .Header__nav--link > a:hover {
    color: #fff !important;
    opacity: 0.85;
}

.Desktop-login-link a {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: .05em;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 6px;
}

.Desktop-menu .Header__nav--link {
    margin: 0 4px;
}

/* ─── MAIN CONTENT ─────────────────────────────────────────────────────────── */
#main-content { min-height: 60vh; }

/* ═══════════════════════════════════════════════════════════════════════════
   DİL SEÇİCİ DROPDOWN
   ═══════════════════════════════════════════════════════════════════════ */

/* Orijinal Vue kalıntı dropdown'ları gizle */
.Header__nav--langs { display: none !important; }

/* Wrapper tıklanabilir */
.Header__nav--lang-right {
    cursor: pointer;
    user-select: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 6px;
    transition: background .2s;
    color: #fff !important; /* White text */
}

/* Globe icon color */
.Header__nav--lang-right svg {
    color: #fff !important;
    fill: currentColor !important;
}

.Header__nav--lang-name {
    font-weight: 700;
    font-size: 1.2rem;
}

.Header__nav--lang-right:hover {
    background: rgba(255,255,255,0.15);
}

/* Dropdown listesi — gizli başlangıç */
.hs-lang-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: -4px;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    min-width: 160px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

/* Ok işareti */
.hs-lang-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 18px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

/* Açık durum */
.hs-lang-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Her dil seçeneği */
.hs-lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .2s, color .2s;
}
.hs-lang-item:hover    { background: #f5f5f5; color: var(--secondary-color); }
.hs-lang-item.is-active { background: #e8f5e9; color: #2e7d32; }

/* Bayrak badge */
.hs-lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}
.flag-tr { background: radial-gradient(circle, #ff4b2b, #E30A17); }
.flag-en { background: radial-gradient(circle, #00247D, #00529B); }

.hs-lang-label {
    flex: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRE-FOOTER CTA SECTION (b7dab506)
   ═══════════════════════════════════════════════════════════════════════ */

/* index.php'deki section için özel stiller */
[data-v-b7dab506].Footer-wrapper {
    background: #f8f9fa; /* Açık renk arka plan */
    border-radius: 20px;
    padding: 4rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

[data-v-b7dab506] .Footer-wrapper-hero {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

[data-v-b7dab506] .Footer-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

[data-v-b7dab506] .green-title {
    color: var(--secondary-color);
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

[data-v-b7dab506] .brown-title {
    color: #8d6e63;
    font-size: 3.2rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
}

[data-v-b7dab506] .desc {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.reverse-radius {
    border-top-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.Market__icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER (9adfc4c0) — Asıl Navigasyon Footer'ı
   ═══════════════════════════════════════════════════════════════════════ */

.Footer-wrapper:not([data-v-b7dab506]) {
    background: #2d3630;
    padding-top: 4rem;
    color: #fff;
}

.Footer {
    max-width: var(--site-width, 1500px);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.Footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    margin-bottom: 3rem;
}

.Footer__head {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.Footer__head img {
    height: 50px;
    width: auto;
}

.Footer__head span {
    color: #c8c8c0;
    font-size: 1.5rem;
    font-style: italic;
    font-family: serif;
}

.Footer__call {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: right;
}

.Footer__call--phone {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f0c040 !important;
}

.Footer-content:not([data-v-b7dab506]) {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.Footer-content-item {
    flex: 1;
    min-width: 15rem;
}

.Footer-content-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.8rem;
}

.Footer-content-link a {
    color: rgba(255,255,255,0.7) !important;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    display: inline-block;
    transition: color 0.3s;
}

.Footer-content-link a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.Footer__social {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.Footer__social--link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.Footer__bottom {
    background: rgba(0,0,0,0.2);
    padding: 2.5rem 0;
    margin-top: 5rem;
    text-align: center;
}

.Footer__bottom p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.5);
    margin: 0.5rem 0;
}

.Footer_bg-helper, .Footer_bg-helper-2 {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
}
.Footer_bg-helper { right: 0; top: 0; width: 300px; }
.Footer_bg-helper-2 { left: 10%; bottom: 0; width: 200px; }

/* ─── Header Responsive Overrides ────────────────────────────────────── */
@media (min-width: 1251px) {
    .Header__wrapper {
        background: var(--primary-color);
        padding: 0 2rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BREADCRUMB + PAGE HERO — Tek kaynak, tüm iç sayfalar
   ═══════════════════════════════════════════════════════════════════════ */

/* Teal şerit: header'a yapışık, içerik alanından önce */
.breadcrumb-band {
    background: var(--primary-color);
    margin: 0;
    padding: 0;  /* band sıfır, hızalamayı container sağlıyor */
}
/* Container'a header Bootstrap padding’ı ile birebir eşle */
.breadcrumb-band > .container {
    padding-left:  2rem;
    padding-right: 2rem;
    max-width: 100%;
}
@media (min-width: 1200px) {
    .breadcrumb-band > .container {
        max-width: var(--site-width, 1500px);
        padding-left:  2rem;
        padding-right: 2rem;
    }
}


@media (min-width: 1200px) {
    .ct-page .container,
    .cs-page .container,
    .coming-soon-page .container { max-width: var(--site-width, 1500px); }
}
/* Breadcrumb navigasyon satırı */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255,255,255,.65);
    padding: 10px 0 0;
    margin: 0;
    list-style: none;
}
.breadcrumb-nav a {
    color: rgba(255,255,255,.9) !important;
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}
.breadcrumb-nav a:hover { color: #fff !important; text-decoration: underline; }
.breadcrumb-sep,
.breadcrumb-nav span { color: rgba(255,255,255,.45); }

/* Eski class isimleri de aynı stili alsın */
.ct-breadcrumb, .cs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255,255,255,.65);
    padding: 10px 0 0;
    margin: 0;
    background: transparent;
}
.ct-breadcrumb a, .cs-breadcrumb a { color: rgba(255,255,255,.9) !important; font-weight: 600; }
.ct-breadcrumb span, .cs-breadcrumb span { color: rgba(255,255,255,.45); }

/* İki kolonlu hero satırı: Sol metin | Sağ süsleme */
.page-hero {
    display: flex;
    align-items: center;
    padding: 30px 0 42px;
    gap: 0;
    position: relative;   /* breadcrumb absolute konumlandırma için */
}

/* Breadcrumb — sağ-alt köşe, zarif ve geri planda */
.breadcrumb-nav--bottom-right {
    position: absolute;
    bottom: 12px;
    right: 0;
    padding: 0 !important;
    font-size: 1.15rem !important;
    opacity: .65;
    transition: opacity .25s;
}
.breadcrumb-nav--bottom-right:hover { opacity: 1; }


/* Sol: içerik */
.page-hero__content {
    flex: 0 0 auto;
    max-width: 500px;
}
.page-hero__badge {
    display: inline-block;
    background: rgba(255,255,255,.18);
    color: rgba(255,255,255,.95);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.25);
    margin-bottom: 12px;
}
.page-hero__title {
    font-family: 'Georgia', serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.15;
}
.page-hero__desc {
    font-size: 1.4rem;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
    margin: 0;
}

/* İçerik bölgesi boşluğu */
.ct-page, .cs-page, .coming-soon-page {
    padding-top: 40px !important;
}

/* ─── İSLAMİ GEOMETRİK SÜSLEMESİ (CSS only) ──────────────────────────────── */
.islamic-deco {
    flex: 1;
    position: relative;
    height: 180px;
    overflow: hidden;
    pointer-events: none;
}

/* 8 köşeli yıldız: iki üst üste kare */
.istar {
    position: absolute;
    background: rgba(255,255,255,.16);
}
.istar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform: rotate(45deg);
}

/* Altıgen: border tabanlı */
.ihex {
    position: absolute;
    border: 1.5px solid rgba(255,255,255,.22);
    border-radius: 4px;
}
.ihex::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border: inherit;
    border-radius: inherit;
    transform: rotate(30deg);
}
.ihex::after {
    content: '';
    position: absolute;
    inset: -1.5px;
    border: inherit;
    border-radius: inherit;
    transform: rotate(60deg);
}

/* Nokta */
.idot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
}

/* Pozisyon ve boyutlar */
.istar.s1 { width:52px; height:52px; top:28px; right:12%;  animation: iSpin 14s linear infinite; }
.istar.s2 { width:34px; height:34px; top:90px; right:28%;  animation: iSpin 10s linear infinite reverse; opacity:.7; }
.istar.s3 { width:68px; height:68px; top:14px; right:38%;  animation: iSpin 18s linear infinite; opacity:.5; }
.istar.s4 { width:26px; height:26px; top:118px;right:18%;  animation: iSpin 8s  linear infinite; opacity:.6; }
.istar.s5 { width:44px; height:44px; top:60px; right:50%;  animation: iSpin 12s linear infinite reverse; opacity:.4; }

.ihex.h1  { width:48px; height:48px; top:20px; right:6%;   animation: iFloat 7s ease-in-out infinite; }
.ihex.h2  { width:32px; height:32px; top:108px;right:42%;  animation: iFloat 9s ease-in-out infinite 1s; opacity:.6; }

.idot.d1  { width:8px;  height:8px;  top:52px; right:22%;  animation: iPulse 3s ease-in-out infinite; }
.idot.d2  { width:5px;  height:5px;  top:135px;right:35%;  animation: iPulse 4s ease-in-out infinite .8s; }
.idot.d3  { width:6px;  height:6px;  top:30px; right:55%;  animation: iPulse 5s ease-in-out infinite 1.5s; }

@keyframes iSpin  { to { transform: rotate(360deg); } }
@keyframes iFloat {
    0%,100% { transform: translateY(0)   rotate(0deg); }
    50%      { transform: translateY(-8px) rotate(15deg); }
}
@keyframes iPulse {
    0%,100% { opacity:.25; transform:scale(1); }
    50%      { opacity:.7;  transform:scale(1.4); }
}

@media (max-width: 768px) {
    .islamic-deco { display: none; }
    .page-hero__content { max-width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   DONATION BOX & SEARCH PANEL
   ═══════════════════════════════════════════════════════════════════════ */

/* Donation Box Toggle Button */
.Header__donation-box-wrapper {
    position: relative;
    z-index: 1001;
}

.Desktop-donate-btn {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 0 20px !important;
    height: 48px;
    background: #bb9a62 !important; /* Tan/Gold color from screenshot */
    border: none !important;
    border-radius: 8px !important;
    font-weight: 800 !important;
    font-size: 1.2rem !important;
    cursor: pointer;
}

.donation-count {
    background: #fff !important;
    color: #bb9a62 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 6px !important;
    font-size: 1.4rem !important;
    font-weight: 900 !important;
    width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
    line-height: 1 !important;
    text-align: center !important;
}

/* Donation Dropdown */
.Donation-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 10px;
}

/* Hover-to-Open Logic via CSS for Desktop */
@media (min-width: 1251px) {
    .Header__donation-box-wrapper:hover .Donation-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.Donation-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dn-items {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.dn-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.dn-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.dn-item-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    margin-top: 4px;
}

.dn-total {
    padding: 15px;
    background: #f5f5f0;
    border-radius: 8px;
    margin-bottom: 15px;
}

.dn-total span {
    font-weight: 800;
    color: #333;
}

.dn-total strong {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.btn-full {
    width: 100%;
    margin-bottom: 8px;
    display: flex !important;
    justify-content: center;
    border-radius: 8px !important;
}

/* Search Panel */
.Header__search-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    z-index: 2000;
    display: flex;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.Header__search-panel.is-open {
    transform: translateY(0);
}

.search-input {
    flex: 1;
    border: 2px solid #eee;
    padding: 15px 25px;
    font-size: 1.6rem;
    border-radius: 30px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: var(--primary-color);
}

.search-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 30px;
    height: 56px;
    border-radius: 30px;
    margin-left: 15px;
    font-weight: 800;
    cursor: pointer;
}

.search-close {
    font-size: 3rem;
    background: none;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    color: #999;
}



/* ═══════════════════════════════════════════════════════════════════════════
   HOME PROJECTS SLIDER & CARDS SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.HomeProjects {
    background-color: #f7f3ec;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.HomeProjects__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.HomeProjects__top {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
}

.HomeProjects__title {
    position: relative;
    border-bottom: 1px solid rgba(203, 171, 116, 0.3);
    padding-bottom: 20px;
    display: inline-block;
}

.HomeProjects__title p {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 0px;
    font-family: 'Inter', sans-serif;
}

.HomeProjects__title span {
    display: block;
    font-size: 3.8rem;
    color: #0f7077;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    margin-top: 5px;
}

.HomeProjects-desc p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #555;
    margin: 25px 0;
}

.HomeProjects-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 10px;
    transition: opacity 0.3s;
}
.HomeProjects-link:hover {
    opacity: 0.8;
}

.HomeProjects__bottom {
    flex: 1;
    min-width: 0;
    position: relative;
}

/* Dropdown */
.HomeProjects .multiselect {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    cursor: pointer;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    font-size: 1.4rem;
}

/* Slider Cards */
.Desktop-Project {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.Desktop-Project-bg {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.6s ease;
}
.Desktop-Project:hover .Desktop-Project-bg {
    transform: scale(1.08); /* slight zoom on hover */
}
.Desktop-Project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

.Desktop-Project-name {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 60px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    z-index: 2;
    line-height: 1.3;
    font-family: 'Playfair Display', Georgia, serif;
    text-transform: uppercase;
}

.Desktop-Project-button {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #0f7077; /* Gold */
    border-top-left-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.Desktop-Project-button img {
    filter: invert(100%); /* Makes arrow purely white */
}

/* Progress bar inside cards */
.Desktop-Project-progress {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    z-index: 2;
    overflow: hidden;
}
.Desktop-Project-inner {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
}
.Desktop-Project-percent {
    position: absolute;
    top: 32px;
    left: 20px;
    color: #fff;
    font-weight: 400;
    z-index: 3;
    font-size: 2.2rem;
}

/* Green line under slider */
.custom-proj-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 4px;
    background: var(--primary-color);
    z-index: 10;
}

/* Swiper Outer Buttons */
.HomeProjects > .swiper-button-next,
.HomeProjects > .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    z-index: 100;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.HomeProjects > .swiper-button-next:hover,
.HomeProjects > .swiper-button-prev:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.05);
}
.HomeProjects > .swiper-button-next:hover svg path,
.HomeProjects > .swiper-button-prev:hover svg path {
    fill: #fff !important;
}

/* Default Arrow Colors */
.HomeProjects > .swiper-button-next svg path,
.HomeProjects > .swiper-button-prev svg path {
    fill: var(--primary-color);
}

.HomeProjects > .swiper-button-next { right: 20px; }
.HomeProjects > .swiper-button-prev { left: 20px; }

/* Tam genişlik harita */
.ct-map--full {
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
    height: 320px;
    margin-top: 32px;
    box-shadow: 0 4px 25px rgba(0,0,0,.10);
    width: 100%;
}
.ct-map--full iframe { width: 100%; height: 100%; border: none; display: block; }


/* ── Container genişliği — Header ile tam eşit ──────────────────────────────
   Header: .Header__wrapper { padding: 0 2rem } > .Header.container (Bootstrap)
   Çözüm: ct-page .container da aynı davranışı alıyor                         */
.ct-page .container,
.cs-page .container,
.coming-soon-page .container {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.ct-page,
.cs-page,
.coming-soon-page {
    padding-left:  2rem !important;
    padding-right: 2rem !important;
}
@media (min-width: 1200px) {
    .ct-page, .cs-page, .coming-soon-page {
        padding-left:  calc((100% - var(--site-width, 1500px)) / 2 + 2rem) !important;
        padding-right: calc((100% - var(--site-width, 1500px)) / 2 + 2rem) !important;
    }
}





@media (max-width: 1250px) {
    .QuickDonation__banner,
    .QuickDonation__banner[data-v-5a6eb928] {
        height: 330px !important;
    }
    
    /* Force mobile styles for QuickDonation */
    .QuickDonation[data-v-5a6eb928],
    .QuickDonation {
        display: block !important;
        margin: 0 0 3rem 6rem !important;
        padding: 3rem 2rem 1.5rem !important;
        border-bottom-left-radius: 0 !important;
    }
    
    .QuickDonation__banner[data-v-5a6eb928],
    .QuickDonation__banner {
        position: absolute !important;
        top: -15% !important;
        left: 0 !important;
        transform: translateX(-100%) !important;
        width: 80px !important;
        height: 330px !important;
        border-top-right-radius: 30px !important;
        border-bottom-left-radius: 30px !important;
        padding: 0 !important;
        justify-content: center !important;
    }
    
    .QuickDonation__banner--logo[data-v-5a6eb928],
    .QuickDonation__banner--logo {
        position: absolute !important;
        top: 7% !important;
        left: 50% !important;
        transform: translate(-50%) !important;
    }
    
    .QuickDonation__banner--logo img {
        transform: rotate(270deg) !important;
    }
    
    .QuickDonation__banner--title[data-v-5a6eb928],
    .QuickDonation__banner--title {
        transform: rotate(270deg) !important;
        width: max-content !important;
        font-size: 2.2rem !important;
    }
    
    .QuickDonation__banner--desc[data-v-5a6eb928],
    .QuickDonation__banner--desc {
        display: none !important;
    }
    
    .QuickDonation__type[data-v-5a6eb928],
    .QuickDonation__type {
        width: 100% !important;
        margin-bottom: 1.5rem !important;
        border-bottom: 1px solid hsla(0,0%,74.9%,.23) !important;
        padding: 0 0 1rem 0 !important;
    }
    
    .QuickDonation__amount[data-v-5a6eb928],
    .QuickDonation__amount {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .QuickDonation__amount--buttons[data-v-5a6eb928],
    .QuickDonation__amount--buttons {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        padding: 1rem !important;
        background-color: #f3f2ee !important;
        border-radius: 8px !important;
    }
    
    .QuickDonation .Button[data-v-5a6eb928],
    .QuickDonation .Button {
        width: 100% !important;
        margin-top: 1.5rem !important;
        height: auto !important;
        padding: 14px !important;
    }
    
    .multiselect__select[data-v-5a6eb928] {
        top: 0 !important;
    }
}

@media (min-width: 1251px) {
    .QuickDonation__banner[data-v-5a6eb928] {
        margin: 0px 0px 0px 127px;
    }
    .QuickDonation__banner,
    .QuickDonation__banner[data-v-5a6eb928] {
        height: 100px !important;
    }
}

/* PREMIUM TOAST NOTIFICATION */
.premium-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100000;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 112, 119, 0.95); /* matching Hasene primary color #0f7077 */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 112, 119, 0.25), 0 1px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.45rem;
    font-weight: 700;
    transform: translateY(100px) scale(0.9);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    pointer-events: none;
}
.premium-toast.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.premium-toast.hide {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.premium-toast__icon {
    font-size: 2rem;
    animation: bounce-toast 1s infinite alternate;
}
@keyframes bounce-toast {
    from { transform: translateY(0); }
    to { transform: translateY(-3px); }
}

/* Quick Donation layers & z-index clickability fix */
.QuickDonation__type {
    position: relative !important;
    z-index: 100 !important;
}
#qd-submit-btn,
.QuickDonation__amount {
    position: relative !important;
    z-index: 10 !important;
}

/* Slider button, links, and contents z-index fix */
.HomeSlider__button,
.HomeSlider__proje-link,
.HomeSlider__item--top {
    position: relative !important;
    z-index: 99 !important;
}

/* Slider navigation arrows z-index fix */
.HomeSlider__arrow {
    z-index: 99 !important;
}

/* Shift slider button wrapper down by 180px on mobile and center it */
@media (max-width: 1250px) {
    .HomeSlider__bottom--wrapper {
        margin-top: 180px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    .HomeSlider__button {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Premium Touch & Click instant visual feedback on mobile */
    .Button:active,
    button:active,
    .btn-pay:active,
    .HomeSlider__button:active,
    .Categories__item:active,
    .hp-dropdown:active,
    .swiper-button-next:active,
    .swiper-button-prev:active,
    .QuickDonation__banner:active,
    #qd-submit-btn:active,
    .qty-btn:active,
    .Header__nav--lang-right:active,
    .Desktop-donate-btn:active,
    a.Button:active {
        transform: scale(0.96) !important;
        opacity: 0.85 !important;
        transition: transform 0.05s ease !important;
    }

    /* Remove slow default highlight on mobile */
    a, button, input, select, textarea, div[onclick], .Categories__item, .multiselect, .QuickDonation__banner {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    }
}

/* WhatsApp Floating Button Z-Index Overrides */
.floatWhatsapp[data-v-52dd26d2], 
.floatWhatsapp {
    z-index: 999999 !important;
}

/* Header Min-Height override */
.Header {
    min-height: 65px;
}

/* Card Quantity Selector Styles */
.d-card__qty-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    height: 48px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}
.d-card__qty-btn {
    width: 28px;
    height: 100%;
    border: none;
    background: #fdfcf9;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    color: #555;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.d-card__qty-btn:hover {
    background: #f0f0f0;
}
.d-card__qty-input {
    width: 28px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
}
.d-card__qty-input::-webkit-outer-spin-button,
.d-card__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ─── Header Mobile Breakpoint Display Overrides (1250px) ─── */
@media (max-width: 1250px) {
    .Mobile-header-view {
        display: flex !important;
    }
    .Header__logo,
    a.Header__logo {
        display: none !important;
    }
}
