@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lalezar&display=swap');


:root {
    --poppins: "Poppins", sans-serif;
    --islamic: "El Messiri", sans-serif;
    --title: "Lalezar", sans-serif;

    --main: #2B633C;
    --dark: #093314;
    --a2: #75bb3c;
    --light: #fff5e4;
    --bg: #f9fcf7;

}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body {
    font-family: var(--poppins) !important;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg);
}

a {
    text-decoration: none;
}

.container-lg {
    max-width: 1550px;
}

header {
    margin: 0;
    padding: 0;
    position: fixed;
    left: 50%;
    top: 1rem;
    transform: translateX(-50%);
    width: 100%;
    z-index: 999999999999;
}

header nav {
    position: fixed;
    top: 0rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff91;
    border: 1px solid #09331415;
    backdrop-filter: blur(25px);
    border-radius: 10rem;
}

/* .slide-area {
    background: linear-gradient(to right, #2a673e, #75bb3c);
    width: 1250px;
    height: 800px;
    border-radius: 0 50px 50px 0;
    position: absolute;
    left: 0;
    top: 0rem;
    z-index: -2;
} */

header .nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--dark);
    font-family: var(--poppins);
    font-size: .9rem;
    font-weight: 500;

}

.nav-link:focus-visible {
    box-shadow: none !important;
    border: none;
    outline: 0;
}



.btn-success {
    padding: .75rem 1.5rem;
    border-radius: 10rem;
    background-color: var(--main);
    border-color: var(--main);
    box-shadow: 0 .25rem 10px 1px #041a0a36;
}

main {
    margin-top: 10rem;
}



/* HERO SLIDE */
#heroSplide {
    position: relative;
    z-index: 0;
    overflow: hidden !important;
    border-radius: 50px;
}

#heroSplide .splide__slide {
    border-radius: 50px;
    overflow: hidden !important;
}

.hero-slide {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden !important;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: var(--main);
    height: 100%;
    border-radius: 50px;
    overflow: hidden !important;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 5rem;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hs-cont {
    width: 550px;
}

.hero-slide__content img {
    width: 500px;
    height: 500px;
    object-fit: contain;
}

.hero-slide__content h2 {
    font-family: var(--islamic);
    font-size: 4rem;
    line-height: 5rem;
    margin-bottom: 2rem;
}

.hero-slide__content p {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: .1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Splide dots + arrows küçük dokunuş */
.splide__pagination__page {
    transform: scale(1.05);
}

.splide__arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    opacity: 1;
    background-color: #fff;
}

.splide__arrow svg {
    fill: var(--dark);
}

.slidelogo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: .1;
    overflow: hidden;
}

.slidelogo img {
    object-fit: cover !important;
    width: 100%;
    height: 100%;
    overflow: hidden !important;
}


/* Başlangıç: içerikler görünmez */
.hero-slide__content .hs-cont>*,
.hero-slide__content img {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    will-change: transform, opacity, filter;
}

/* Görsel biraz farklı başlangıç */
.hero-slide__content img {
    transform: translate3d(28px, 0, 0) scale(0.985);
}

/* Eğer motion azaltma isteyen kullanıcı varsa */
@media (prefers-reduced-motion: reduce) {

    .hero-slide__content .hs-cont>*,
    .hero-slide__content img {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

.indic-area {
    margin-top: 4rem;
}

/* Ana scroll alanı */
.icon-scroll {
    display: flex;
    gap: 2.5rem;
    padding: 1rem 0 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;

    /* Modern scroll hissi */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Scrollbar – modern & ince */
.icon-scroll::-webkit-scrollbar {
    height: 6px;
}

.icon-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.icon-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 999px;
}

.icon-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

/* Kart */
.card-icon {
    flex: 0 0 auto;
    min-width: 100px;
    text-align: center;
    scroll-snap-align: center;
    cursor: pointer;
}

/* Icon */
.card-icon .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--main);
    font-size: 2.1rem;
    transition: transform .35s ease, color .35s ease;
}

/* Hover efekti */
.card-icon:hover .icon {
    transform: translateY(-6px) scale(1.05);
    color: var(--main-dark, #0f5132);
}

/* Title */
.card-icon .title {
    margin-top: 0.75rem;
    color: var(--dark);
    font-family: var(--islamic);
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Mobilde biraz daha sıkı */
@media (max-width: 768px) {
    .icon-scroll {
        gap: 2.2rem;
    }

    .card-icon {
        min-width: 90px;
    }

    .card-icon .icon {
        font-size: 2rem;
    }
}

.category-area {
    margin-top: 2.5rem;
}

.card-cate {
    display: block;
    /* anchor olduğu için şart */
    position: relative;
    overflow: hidden;
    /* kırpma */
    border-radius: 16px;
    /* kırpma radiusu */
    aspect-ratio: 1 / 1;
    /* kare */
    width: 100%;
    background: #f3f5f7;
    /* görsel yüklenmezse */
}

.card-cate img {
    display: block;
    /* inline img boşluk yapmasın */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transform-origin: center;
    transition: transform 1s cubic-bezier(.2, .8, .2, 1);
}

.card-cate:hover img {
    transform: scale(1.1);
}

.title-main {
    margin-top: 5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    position: relative;
}

.title-main img {
    width: 2.5rem;
    height: 100%;
}

.title-main h2 {
    text-align: start;
    margin-bottom: 1rem;
    color: #093314;
    font-family: var(--islamic);
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
}

.title-main h2::after {
    content: "";
    width: 5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    border: .1px solid var(--dark);
}



/* Card */
.proj-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 290px;
    padding: 22px 20px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    /* background image */
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease;
}

/* overlay (text okunabilirliği) */
.proj-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .10) 0%,
            rgba(0, 0, 0, .55) 65%,
            rgba(0, 0, 0, .75) 100%);
    pointer-events: none;
}

/* status glow (çok hafif) */
.proj-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(700px 260px at 18% 0%, rgba(34, 197, 94, .25), transparent 60%);
    opacity: .9;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Content üstte kalsın */
.proj-card>* {
    position: relative;
    z-index: 2;
}

/* Badge */
.proj-badge {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .2px;

    background: rgba(4, 146, 4, 0.14);
    border: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
}

/* Title & text */
.proj-card h3 {
    margin: 6px 0 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.proj-card p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    line-height: 1.45;
    font-size: 1rem;
    max-width: 92%;
}

/* Button – hepsinde Bağış Yap */
.proj-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;

    padding: 11px 16px;
    border-radius: 999px;
    text-decoration: none;
    background: rgba(31, 122, 69, .95);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 14px 45px rgba(0, 0, 0, .22);

    transition: transform .35s ease, filter .35s ease, background .35s ease;
}

.proj-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* status accent */
.proj-card.is-done::before {
    background: radial-gradient(700px 260px at 18% 0%, rgba(34, 197, 94, .25), transparent 60%);
}

.proj-card.is-live::before {
    background: radial-gradient(700px 260px at 18% 0%, rgba(255, 193, 7, .22), transparent 60%);
}

.proj-card.is-plan::before {
    background: radial-gradient(700px 260px at 18% 0%, rgba(59, 130, 246, .22), transparent 60%);
}

.video-area,
.project-area {
    margin-top: 5rem;
}

.video-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 1.2rem;
}

.video-head h2 {
    font-weight: 900;
    margin: 0;
}

.video-all {
    text-decoration: none;
    font-weight: 800;
    color: var(--main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.video-feature {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 560px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .78)),
        url('img/videos/featured.jpg') center/cover no-repeat;
    box-shadow: 0 24px 85px rgba(0, 0, 0, .16);
}

.video-info {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: #fff;
    max-width: 720px;
}

.video-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .20);
    backdrop-filter: blur(10px);
    font-weight: 900;
    margin-bottom: 10px;
}

.video-info h3 {
    font-weight: 950;
    margin: 0 0 6px;
    font-size: clamp(20px, 2.6vw, 34px);
}

.video-info p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
}

.video-play {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.video-play i {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 28px;
    background: rgba(31, 122, 69, .92);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .14);
}

.video-rail {
    margin-top: 1rem;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.video-rail::-webkit-scrollbar {
    height: 6px;
}

.video-rail::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .18);
    border-radius: 999px;
}

.video-card {
    flex: 0 0 auto;
    width: 240px;
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
}

.video-card .thumb {
    height: 150px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .00), rgba(0, 0, 0, .35)),
        var(--thumb) center/cover no-repeat;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .10);
}

.video-card .meta {
    padding: 10px 4px 0;
}

.video-card .t {
    font-weight: 900;
    color: #0b2e1a;
    line-height: 1.2;
}

.video-card .s {
    margin-top: 6px;
    font-weight: 700;
    color: rgba(0, 0, 0, .55);
    font-size: .92rem;
}

.video-card:hover .thumb {
    transform: translateY(-3px);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.video-feature {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 560px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .78)),
        var(--featured) center/cover no-repeat;
    box-shadow: 0 24px 85px rgba(0, 0, 0, .16);
}

/* Modal premium */
.video-modal {
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
}

.video-modal-desc {
    margin-top: 4px;
    color: rgba(0, 0, 0, .60);
    font-weight: 600;
    font-size: .95rem;
}

/* Video responsive 16:9 */
.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}


.news-area {
    margin-top: 5rem;
}

.news-shell {
    display: flex;
    gap: 22px;
    align-items: stretch;
}

/* Sol panel */
.news-intro {
    flex: 0 0 320px;
    border-radius: 22px;
    padding: 22px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(15, 81, 50, .08);
    backdrop-filter: blur(10px);
}

.news-kicker {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 900;
    font-size: .85rem;
    background: rgba(31, 122, 69, .10);
    color: #1f7a45;
}

.news-intro h2 {
    margin: 12px 0 8px;
    font-weight: 950;
    color: #0b2e1a;
}

.news-intro p {
    margin: 0 0 14px;
    color: rgba(0, 0, 0, .62);
    font-weight: 600;
    line-height: 1.45;
}

.news-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 900;
    color: #1f7a45;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(31, 122, 69, .08);
    transition: transform .35s ease, background .35s ease;
}

.news-all:hover {
    transform: translateY(-2px);
    background: rgba(31, 122, 69, .12);
}

/* Slider side */
.news-splide {
    flex: 1 1 auto;
    min-width: 0;
    /* flex içinde taşmayı engeller */
}

/* Card */
.news-card {
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(0, 0, 0, .06);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 95px rgba(0, 0, 0, .14);
}

.news-thumb {
    position: relative;
    display: block;
    height: 250px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .00), rgba(0, 0, 0, .45)),
        var(--thumb) center/cover no-repeat;
}

.news-date {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: .85rem;
    color: rgba(255, 255, 255, .95);
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
}

.news-body {
    padding: 16px 16px 18px;
}

.news-body h3 {
    margin: 0 0 8px;
    font-weight: 950;
    font-size: 1.1rem;
    line-height: 1.2;
}

.news-body h3 a {
    text-decoration: none;
    color: #0b2e1a;
}

.news-body p {
    margin: 0 0 12px;
    color: rgba(0, 0, 0, .62);
    font-weight: 600;
    line-height: 1.45;

    /* 2 satır clamp */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 900;
    color: #1f7a45;
}

/* Splide oklar */
.news-splide .splide__arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .10);
}

/* Responsive */
@media (max-width: 992px) {
    .news-shell {
        flex-direction: column;
    }

    .news-intro {
        flex: 1 1 auto;
    }
}

/* =========================
   MODERN FOOTER (2026)
   ========================= */

.site-footer {
    --f-bg1: rgba(43, 99, 60, .92);
    --f-bg2: rgba(9, 51, 20, .96);
    --f-border: rgba(255, 255, 255, .12);
    --f-soft: rgba(255, 255, 255, .08);
    --f-muted: rgba(255, 255, 255, .72);

    position: relative;
    overflow: hidden;

    border-radius: 56px 56px 0 0;
    margin-top: 5rem;
    padding: 5.5rem 0 2.5rem;
    color: rgba(255, 255, 255, .88);

    /* Daha premium arkaplan */
    background:
        radial-gradient(900px 420px at 12% 15%, rgba(117, 187, 60, .28), transparent 62%),
        radial-gradient(900px 420px at 90% 10%, rgba(43, 99, 60, .26), transparent 60%),
        linear-gradient(180deg, var(--f-bg1), var(--f-bg2));
}

/* Soft grain overlay */
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(255, 255, 255, .10) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .08;
    mix-blend-mode: overlay;
}

/* üstte ince highlight çizgisi */
.site-footer::after {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    opacity: .7;
}

/* Top layout */
.footer-top {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
    gap: 28px;

    padding: 22px 22px 26px;
    border: 1px solid var(--f-border);
    border-radius: 26px;

    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

/* Brand */
.footer-brand {
    padding-right: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;

    /* daha “soft” */
    font-weight: 750;
    letter-spacing: -.01em;
}

.footer-desc {
    margin: 14px 0 16px;
    color: rgba(255, 255, 255, .76);
    font-weight: 550;
    line-height: 1.65;
    max-width: 440px;
}

/* Social: modern glass */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(255, 255, 255, .92);

    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .20);
}

/* Columns */
.footer-col h6 {
    margin: 6px 0 12px;
    color: #fff;
    font-weight: 750;
    /* 950 yerine */
    letter-spacing: -.01em;
}

.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s ease, transform .2s ease;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(2px);
}

/* Contact */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, .78);
}

.footer-contact i {
    margin-top: 2px;
    color: var(--dark);
    opacity: .95;
}

/* Bottom: daha minimal */
.footer-bottom {
    padding-top: 18px;
    margin-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;

    /* top container’a bağlayan ince çizgi */
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-copy {
    color: rgba(255, 255, 255, .70);
    font-weight: 600;
}

.footer-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-mini a {
    color: rgba(255, 255, 255, .70);
    text-decoration: none;
    font-weight: 650;
}

.footer-mini a:hover {
    color: #fff;
}

.footer-mini .dot {
    color: rgba(255, 255, 255, .32);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .site-footer {
        border-radius: 34px 34px 0 0;
        padding: 4.5rem 0 2.2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding: 18px 16px 22px;
        border-radius: 22px;
    }
}

.footer-logo img {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .22));
}


.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Ortak FAB */
.fab {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 24px;
    cursor: pointer;
    border: none;

    color: #fff;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .22);
    transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

.fab:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 75px rgba(0, 0, 0, .28);
}

/* WhatsApp */
.fab-whatsapp {
    background: #25D366;
}

/* Yukarı çık */
.fab-top {
    background: rgba(31, 122, 69, .95);
    opacity: 0;
    pointer-events: none;
}

/* Görünür olduğunda */
.fab-top.show {
    opacity: 1;
    pointer-events: auto;
}

/* Mobilde biraz küçült */
@media (max-width: 576px) {
    .fab {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

.fab-whatsapp::after {
    content: "WhatsApp";
    position: absolute;
    right: 64px;
    background: #25D366;
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 700;
    opacity: 0;
    transform: translateX(6px);
    transition: .3s ease;
    white-space: nowrap;
}

.fab-whatsapp:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Header küçük iyileştirmeler */
.nav-ico {
    color: rgba(0, 0, 0, .55);
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    transition: background .25s ease, transform .25s ease, color .25s ease;
}

.nav-ico:hover {
    background: rgba(31, 122, 69, .10);
    color: #1f7a45;
    transform: translateY(-1px);
}

/* ---------- DESKTOP DROPDOWN (MODERN) ---------- */
.dropdown-menu-modern {
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 10px;
    min-width: 240px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .12);
    backdrop-filter: blur(12px);
}

.dropdown-menu-modern .dropdown-item {
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 700;
}

.dropdown-menu-modern .dropdown-item:hover {
    background: rgba(31, 122, 69, .10);
    color: #1f7a45;
}




/* ---------- MOBILE FULLSCREEN OFFCANVAS ---------- */
.mobile-menu {
    height: 100vh !important;
    z-index: 9999999999999999;
    border: 0;
    background:
        radial-gradient(900px 380px at 20% 0%, rgba(34, 197, 94, .14), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .92));
    backdrop-filter: blur(14px);
}

.mobile-menu .offcanvas-header {
    padding: 18px 18px 10px;
}

.mobile-menu .offcanvas-body {
    padding: 12px 18px 18px;
    display: grid;
    gap: 14px;
    align-content: start;
}

.mobile-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.m-ico {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(31, 122, 69, .10);
    color: #1f7a45;
    text-decoration: none;
    font-size: 1.2rem;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.m-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    color: #0b2e1a;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(0, 0, 0, .06);
}

.m-sublink {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    color: rgba(0, 0, 0, .70);
    background: rgba(31, 122, 69, .06);
    margin-bottom: 8px;
}

.m-sublink:hover {
    background: rgba(31, 122, 69, .10);
    color: #1f7a45;
}

/* Accordion görünümü modernleştir */
.m-acc,
.m-acc-inner {
    border: 0;
    background: transparent;
}

.m-acc .accordion-button,
.m-acc-inner .accordion-button {
    border-radius: 16px !important;
    padding: 14px 14px;
    font-weight: 900;
    color: #0b2e1a;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: none;
}

.m-acc .accordion-button:not(.collapsed) {
    background: rgba(31, 122, 69, .10);
    color: #1f7a45;
}

.m-acc .accordion-body {
    padding: 12px 6px 6px;
}

.inner-acc {
    margin: 10px 0 4px;
}

@media (min-width: 992px) {

    .dropdown-menu-modern {
        border-radius: 18px;
        border: 1px solid rgba(0, 0, 0, .06);
        padding: 10px;
        min-width: 260px;
        box-shadow: 0 24px 80px rgba(0, 0, 0, .12);
        backdrop-filter: blur(12px);
    }

    /* ✅ Bootstrap sadece .show olunca display:block yapar.
     Biz display:block zorlamıyoruz. */
    .dropdown-menu-modern {
        opacity: 0;
        transform: translateY(10px);
        visibility: hidden;
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    /* ✅ Bootstrap menüye .show class'ı basar */
    .dropdown-menu-modern.show {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    /* 2. seviye */
    .dropend>.dropdown-menu-modern {
        top: -6px;
        left: 100%;
        margin-left: 10px;
        transform: translateX(10px);
    }

    .dropend>.dropdown-menu-modern.show {
        transform: translateX(0);
    }

    /* kesilmesin */
    header,
    .navbar,
    .menu-area,
    .container {
        overflow: visible !important;
    }
}

.accordion-item.m-acc-inner {
    margin-bottom: 8px;
}

.navbar-toggler {
    box-shadow: none !important;
    border: none !important;
    outline: 0 !important;
}

.absolute-slideimg img {
    width: 1000px;
    height: auto;
    min-height: 100%;
}

.absolute-slideimg {
    position: absolute;
    right: 0;
    top: 0;
}

.hero-slide {
    height: 100%;
}

.nav-ico {
    position: relative;
    font-size: 20px;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #2B633C;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(43, 99, 60, .35);
}

.footer-modern {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, .06);
    padding: 70px 0 30px;
    font-family: var(--poppins);
    margin-top: 5rem;
    border-radius: 5rem 5rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #111;
    letter-spacing: -.3px;
}

.footer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 18px 0 24px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: all .25s ease;
}

.footer-links a:hover {
    color: #2B633C;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.footer-contact a {
    color: #666;
    text-decoration: none;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all .25s ease;
}

.footer-socials a:hover {
    background: #2B633C;
    color: #fff;
}

.footer-divider {
    height: 1px;
    background: rgba(0, 0, 0, .06);
    margin: 40px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copy {
    font-size: 13px;
    color: #888;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: .2s;
}

.footer-legal a:hover {
    color: #2B633C;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-modern {
        border-radius: 2.5rem 2.5rem 0 0;
    }
}

.btn-success.btn-light {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: var(--main) !important;
}

.no-drop-icon .dropdown-toggle::after {
    display: none !important;
}