/* =========================================
   SEZER ADAK — style.css
   Palette: İslami Yeşil · Beyaz · Gold
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
    --green-dark: #1b4332;
    --green-mid: #2d6a4f;
    --green-light: #40916c;
    --green-pale: #d8f3dc;
    --gold: #c9a84c;
    --gold-light: #f0d080;
    --gold-dark: #9a7626;
    --white: #ffffff;
    --off-white: #f8faf9;
    --text-dark: #1a2c23;
    --text-muted: #5a7060;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, .12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .16);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: .28s cubic-bezier(.4, 0, .2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---- Utility ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold);
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .3);
    border-radius: 50px;
    padding: 4px 16px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 52px;
}

.text-center {
    text-align: center;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 2px solid var(--green-pale);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    box-shadow: 0 4px 16px rgba(45, 106, 79, .3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text span:first-child {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--green-dark);
    letter-spacing: -.01em;
}

.logo-text span:last-child {
    font-size: .72rem;
    font-weight: 500;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* Nav */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    font-size: .93rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green-mid);
    background: var(--green-pale);
}

/* Dropdown */
.main-nav li.has-dropdown {
    position: relative;
}

.main-nav li.has-dropdown>a .fa-chevron-down {
    font-size: .72rem;
    transition: transform .25s ease;
    vertical-align: middle;
    margin-left: 3px;
}

.main-nav li.has-dropdown:hover>a .fa-chevron-down,
.main-nav li.has-dropdown.open>a .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(27, 67, 50, .18);
    border: 1px solid var(--green-pale);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 200;
    flex-direction: column;
    gap: 0;
}

.main-nav li.has-dropdown:hover .dropdown-menu,
.main-nav li.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 0;
    white-space: nowrap;
    transition: color .2s, background .2s;
}

.dropdown-menu a:hover {
    color: var(--green-mid);
    background: var(--green-pale);
}

.dropdown-menu a i {
    color: var(--gold-dark);
    width: 16px;
    text-align: center;
}


/* CTA Group */
.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: var(--white);
    font-size: .88rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 50px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 14px rgba(37, 211, 102, .3);
}

.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: var(--white);
    font-size: .88rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 16px rgba(45, 106, 79, .35);
    white-space: nowrap;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 106, 79, .45);
}


/* Nav Overlay (mobil arkaplan karartma) */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    transition: opacity .3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    z-index: 1100;
    position: relative;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--green-dark);
    border-radius: 3px;
    transition: transform .3s ease, opacity .3s ease, width .3s ease;
    transform-origin: center;
}

/* X animasyonu - açık hali */
.hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
/* ============================================================
   HERO — Koyun görseli arka plan
   ============================================================ */
.hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 80px;
    background-color: #f5f0e8;
}

/* Tüm hero-bg divleri için ortak stil */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    filter: brightness(1.05) saturate(1.1);
    z-index: 0;
}

/* Sol taraf açık overlay — yazıların okunması için — tüm sayfalar */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(245, 240, 232, .98) 0%,
            rgba(245, 240, 232, .94) 42%,
            rgba(245, 240, 232, .55) 63%,
            rgba(245, 240, 232, .00) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Dekoratif container */
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

/* Işıltı topları */
.hero-decor-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-decor-orb--1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -120px;
    background: rgba(64, 145, 108, .12);
}

.hero-decor-orb--2 {
    width: 380px;
    height: 380px;
    bottom: -120px;
    right: 5%;
    background: rgba(201, 168, 76, .10);
}

.hero-decor-orb--3 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 28%;
    background: rgba(40, 120, 70, .06);
    filter: blur(40px);
}

/* Çizgi deseni */
.hero-decor-lines {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(60deg,
            transparent,
            transparent 60px,
            rgba(27, 67, 50, .025) 60px,
            rgba(27, 67, 50, .025) 61px);
}

/* Büyük soluk yarımay ikonu */
.hero-decor-icon {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 340px;
    color: rgba(27, 97, 50, .07);
    line-height: 1;
}

/* Layout: sol içerik + sağ kartlar */
.hero-container {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 620px;
    animation: heroFadeIn .9s ease both;
}

/* İç sayfalarda stats bar üst üste gelmesin */
.hero-bg~.container .hero-content {
    padding-bottom: 150px !important;
}

/* Sağ panel - özellik kartları */
.hero-side {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    width: 200px;
    animation: heroFadeIn 1.1s ease both;
}

.hero-side-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .75);
    border: 1.5px solid rgba(27, 97, 50, .15);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-dark);
    font-size: .88rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(27, 67, 50, .08);
    transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
}

.hero-side-card:hover {
    background: rgba(255, 255, 255, .95);
    border-color: var(--green-mid);
    transform: translateX(-4px);
    box-shadow: 0 6px 20px rgba(27, 67, 50, .14);
}

.hero-side-card i {
    font-size: 1.2rem;
    color: var(--gold-light);
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 97, 50, .10);
    border: 1px solid rgba(27, 97, 50, .25);
    border-radius: 50px;
    padding: 6px 16px;
    color: var(--green-dark);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
}

.hero-badge i {
    color: var(--green-mid);
}

.hero h1 {
    font-size: clamp(1.85rem, 4.5vw, 3.1rem);
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.18;
    margin-bottom: 20px;
    text-shadow: 0 1px 8px rgba(245, 240, 232, .8);
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-dark);
    text-shadow: 0 1px 8px rgba(245, 240, 232, .9);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.7;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(201, 168, 76, .4);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    letter-spacing: .02em;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(201, 168, 76, .55);
    filter: brightness(1.08);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .80);
    border: 2px solid rgba(27, 97, 50, .35);
    color: var(--green-dark);
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(27, 67, 50, .10);
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .98);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 67, 50, .16);
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 48px;
    right: 0;
    left: 0;
    z-index: 2;
}

.hero-stats-inner {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(27, 97, 50, .15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(27, 67, 50, .10);
}

.stat-item {
    flex: 1;
    padding: 18px 24px;
    text-align: center;
    border-right: 1px solid rgba(27, 67, 50, .10);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-dark);
    line-height: 1;
}

.stat-item span {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
    padding: 80px 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(216, 243, 220, .6);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-light), var(--gold));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-pale), rgba(201, 168, 76, .12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--green-mid);
    margin: 0 auto 22px;
    transition: transform var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    color: var(--gold-dark);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: 90px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 34px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    border: 1px solid var(--green-pale);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(201, 168, 76, .07));
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 168, 76, .4);
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-light);
    box-shadow: 0 4px 16px rgba(45, 106, 79, .3);
    transition: transform var(--transition);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.08);
}

.service-body h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.service-body p {
    font-size: .91rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.service-badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    color: var(--green-mid);
    background: var(--green-pale);
    border-radius: 50px;
    padding: 4px 12px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
    padding: 90px 0;
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201, 168, 76, .08);
}

.process::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.process .section-title {
    color: var(--white);
}

.process .section-subtitle {
    color: rgba(255, 255, 255, .75);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 168, 76, .3), rgba(201, 168, 76, .7), rgba(201, 168, 76, .3));
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: stepFade .6s ease both;
}

.step-card:nth-child(1) {
    animation-delay: .1s;
}

.step-card:nth-child(2) {
    animation-delay: .25s;
}

.step-card:nth-child(3) {
    animation-delay: .4s;
}

.step-card:nth-child(4) {
    animation-delay: .55s;
}

@keyframes stepFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(201, 168, 76, .4);
    border: 3px solid rgba(255, 255, 255, .3);
    transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(201, 168, 76, .55);
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.step-card p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}

/* ============================================================
   TRUST BANNER
   ============================================================ */
.trust-banner {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    padding: 52px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: '\f6d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 12rem;
    opacity: .06;
    color: var(--white);
    top: -20px;
    right: 60px;
}

.trust-banner-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.trust-banner i.banner-icon {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}

.trust-banner h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.trust-banner p {
    color: rgba(255, 255, 255, .9);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.trust-features {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.trust-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: .9rem;
    font-weight: 600;
}

.trust-feat i {
    font-size: 1rem;
    background: rgba(255, 255, 255, .2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   FOOTER CTA BAND
   ============================================================ */
.footer-cta-band {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    border-top: 3px solid var(--gold);
    padding: 28px 0;
}

.footer-cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-cta-band-text {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-cta-band-text>i {
    font-size: 2rem;
    color: var(--gold-light);
    flex-shrink: 0;
}

.footer-cta-band-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.footer-cta-band-text span {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
}

.footer-cta-band-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, background .2s;
    white-space: nowrap;
}

.footer-cta-btn--call {
    background: var(--white);
    color: var(--green-dark);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .2);
}

.footer-cta-btn--call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
}

.footer-cta-btn--wa {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 18px rgba(37, 211, 102, .35);
}

.footer-cta-btn--wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
}

/* ============================================================
   FOOTER MAIN
   ============================================================ */
.site-footer {
    background: #0f2519;
    color: rgba(255, 255, 255, .8);
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(45, 106, 79, .18), transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 0.9fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .58);
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-brand p strong {
    color: var(--gold-light);
}

/* Trust pills */
.footer-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.footer-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--gold-light);
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 50px;
    padding: 4px 11px;
    white-space: nowrap;
}

.footer-pill i {
    font-size: .7rem;
}

/* Social */
.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: rgba(255, 255, 255, .7);
    transition: background var(--transition), transform var(--transition), color var(--transition), border-color var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.social-link--wa:hover {
    background: #25D366;
    border-color: #25D366;
}

/* Column headings */
.footer-col h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-col h4 i {
    color: var(--gold);
    font-size: .8rem;
}

/* Quick links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links li a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: color .2s, gap .2s;
    position: relative;
}

.footer-links li a::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .2s;
}

.footer-links li a:hover {
    color: var(--white);
    gap: 8px;
}

.footer-links li a:hover::before {
    opacity: 1;
}

/* Contact */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .65);
}

.footer-contact-list i {
    color: var(--gold);
    font-size: .95rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: color .2s;
}

.footer-contact-list a:hover {
    color: var(--gold-light);
}

/* Hours */
.footer-hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: .855rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    gap: 12px;
}

.footer-hours span.day {
    color: rgba(255, 255, 255, .55);
}

.footer-hours span.time {
    color: var(--gold-light);
    font-weight: 600;
}

.footer-hours-note {
    border-bottom: none !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    color: var(--gold-light);
    font-size: .8rem;
    font-weight: 600;
    padding-top: 14px !important;
    opacity: .85;
}

.footer-hours-note i {
    color: var(--gold-light);
}

/* Bottom bar */
.footer-bottom {
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    color: rgba(255, 255, 255, .35);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: var(--gold-light);
}

.footer-dot {
    color: rgba(255, 255, 255, .2);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .footer-cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta-band-actions {
        width: 100%;
    }

    .footer-cta-btn {
        flex: 1;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   ARTICLE IMAGES
   ============================================================ */
.article-img-wrap {
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
}

.article-img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.article-img-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.article-img-item img,
.article-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.article-img-item:hover img,
.article-img-wrap:hover img {
    transform: scale(1.04);
}

.article-img-caption {
    display: block;
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-align: center;
    font-style: italic;
}

@media (max-width: 600px) {
    .article-img-pair {
        grid-template-columns: 1fr;
    }

    .article-img-item img,
    .article-img-wrap img {
        height: 200px;
    }
}


@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Header - Mobil menü: sağdan slide-in panel */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background: var(--white);
        z-index: 1000;
        transform: translateX(100%);
        transition: transform .32s cubic-bezier(.4, 0, .2, 1);
        overflow-y: auto;
        padding: 80px 0 32px;
        box-shadow: -8px 0 32px rgba(27, 67, 50, .18);
        display: block !important;
    }

    .main-nav.nav-open {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 16px;
    }

    .main-nav>ul>li {
        border-bottom: 1px solid var(--green-pale);
    }

    .main-nav>ul>li>a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 8px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--green-dark);
    }

    .main-nav>ul>li>a:hover {
        color: var(--gold-dark);
        background: transparent;
    }

    /* Dropdown mobilde accordion */
    .main-nav .dropdown-menu {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: var(--green-pale);
        border-radius: 10px;
        margin: 0 0 8px 0;
        padding: 6px 0;
        display: none;
    }

    .main-nav .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .main-nav .dropdown-menu a {
        padding: 10px 16px;
        font-size: .9rem;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
    }



    /* WhatsApp butonu mobilde sadece ikon */
    .btn-whatsapp .wa-text {
        display: none;
    }

    .btn-whatsapp {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .header-cta {
        gap: 8px;
    }

    .header-inner {
        gap: 10px;
        padding: 12px 0;
    }

    .header-cta .btn-call {
        display: none;
    }

    .site-header {
        position: relative;
    }

    /* Hero */
    .hero {
        min-height: 88vh;
        padding-bottom: 160px;
    }

    .hero-stats {
        bottom: 0;
    }

    .hero-stats-inner {
        flex-wrap: nowrap;
        border-radius: 12px 12px 0 0;
        max-width: 100%;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
        padding: 14px 10px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, .15);
    }

    .stat-item:last-child {
        border-right: none;
    }

    .stat-item strong {
        font-size: 1.25rem;
    }

    .stat-item span {
        font-size: .68rem;
    }

    /* Grids */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 1.55rem;
    }

    .hero-desc {
        font-size: .93rem;
    }

    .hero-badge {
        font-size: .75rem;
        padding: 5px 12px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: .92rem;
        padding: 12px 22px;
        width: 100%;
        justify-content: center;
    }

    .service-card {
        flex-direction: column;
    }

    .service-icon-wrap {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .trust-features {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   ARTICLE SECTION
   ============================================================ */
.article-section {
    padding: 90px 0;
    background: var(--off-white);
}

.article-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* ---- Sticky TOC Sidebar ---- */
.article-toc {
    position: sticky;
    top: 100px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--green-pale);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.toc-header {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: var(--white);
    padding: 16px 20px;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-header i {
    color: var(--gold-light);
}

.toc-list {
    padding: 16px 20px;
    list-style: none;
    counter-reset: toc-counter;
}

.toc-list li {
    counter-increment: toc-counter;
    margin-bottom: 10px;
}

.toc-list a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .855rem;
    color: var(--text-muted);
    line-height: 1.45;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}

.toc-list a::before {
    content: counter(toc-counter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: .72rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.toc-list a:hover {
    background: var(--green-pale);
    color: var(--green-dark);
}

/* ---- Article Body ---- */
.article-body {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(216, 243, 220, .5);
    box-shadow: var(--shadow-sm);
    padding: 48px 52px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--green-pale);
    flex-wrap: wrap;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.article-meta-item i {
    color: var(--gold-dark);
}

.article-body h2.article-h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--green-dark);
    margin: 44px 0 18px;
    padding-left: 16px;
    border-left: 4px solid var(--gold);
    line-height: 1.3;
    scroll-margin-top: 100px;
}

.article-body h2.article-h2:first-of-type {
    margin-top: 0;
}

.article-body h3.article-h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-mid);
    margin: 28px 0 12px;
}

.article-body p {
    font-size: .97rem;
    line-height: 1.85;
    color: #374b42;
    margin-bottom: 18px;
}

/* Callout / Highlight box */
.article-callout {
    display: flex;
    gap: 16px;
    background: linear-gradient(135deg, var(--green-pale), rgba(201, 168, 76, .1));
    border: 1px solid rgba(45, 106, 79, .2);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 28px 0;
    align-items: flex-start;
}

.article-callout.gold {
    background: linear-gradient(135deg, rgba(201, 168, 76, .12), rgba(201, 168, 76, .05));
    border-color: rgba(201, 168, 76, .35);
}

.article-callout-icon {
    font-size: 1.4rem;
    color: var(--green-mid);
    margin-top: 2px;
    flex-shrink: 0;
}

.article-callout.gold .article-callout-icon {
    color: var(--gold-dark);
}

.article-callout-text strong {
    display: block;
    font-size: .92rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.article-callout-text p {
    font-size: .9rem;
    margin: 0;
    color: var(--text-muted);
}

/* Quote block */
.article-quote {
    border-left: 4px solid var(--gold);
    padding: 16px 24px;
    margin: 28px 0;
    background: rgba(201, 168, 76, .06);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--green-dark);
    font-weight: 500;
    line-height: 1.7;
}

/* Checklist */
.article-checklist {
    list-style: none;
    margin: 18px 0 26px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.article-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .91rem;
    color: #374b42;
    line-height: 1.5;
}

.article-checklist li i {
    color: var(--green-light);
    font-size: .9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Info cards row */
.article-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.article-info-card {
    background: var(--off-white);
    border: 1px solid var(--green-pale);
    border-radius: var(--radius);
    padding: 20px 18px;
    text-align: center;
}

.article-info-card i {
    font-size: 1.6rem;
    color: var(--green-mid);
    margin-bottom: 10px;
    display: block;
}

.article-info-card strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.article-info-card span {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* FAQ */
.faq-list {
    margin: 20px 0;
}

.faq-item {
    border: 1px solid var(--green-pale);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background: var(--white);
    font-size: .95rem;
    font-weight: 600;
    color: var(--green-dark);
    gap: 12px;
    transition: background var(--transition);
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: var(--green-pale);
}

.faq-question i {
    color: var(--gold-dark);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.75;
    border-top: 1px solid var(--green-pale);
    background: rgba(216, 243, 220, .15);
}

.faq-item.open .faq-answer {
    display: block;
}

/* Article section divider */
.article-divider {
    border: none;
    border-top: 1px dashed var(--green-pale);
    margin: 36px 0;
}

/* ---- Responsive article ---- */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-toc {
        position: static;
    }

    .article-body {
        padding: 32px 28px;
    }

    .article-checklist {
        grid-template-columns: 1fr;
    }

    .article-info-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .article-body {
        padding: 24px 18px;
    }

    .article-info-cards {
        grid-template-columns: 1fr;
    }

    .article-body h2.article-h2 {
        font-size: 1.2rem;
    }
}

/* ============================================================
   PAGE-SPECIFIC HERO BACKGROUNDS — Tümü aynı görsel
   ============================================================ */
.hero-bg--anasayfa,
.hero-bg--hakkimizda,
.hero-bg--adak-kurban,
.hero-bg--adak-koyun,
.hero-bg--adak-keci,
.hero-bg--adak-kuzu,
.hero-bg--adak-fiyat,
.hero-bg--iletisim {
    background-image: url('assets/hero-anasayfa-new.jpg');
    background-position: center center;
}

/* ============================================================
   ILETISIM SAYFASI
   ============================================================ */
.iletisim-section {
    padding: 80px 0 90px;
}

.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.ilet-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ilet-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 4px 20px rgba(27, 67, 50, .08);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    color: inherit;
    border: 1.5px solid transparent;
}

.ilet-card--link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(27, 67, 50, .14);
    border-color: var(--green-mid);
}

.ilet-card--wa .ilet-card-icon {
    background: #25D366;
}

.ilet-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.ilet-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ilet-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-muted);
}

.ilet-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.35;
}

.ilet-hint {
    font-size: .8rem;
    color: var(--text-muted);
}

.map-wrapper {
    border-radius: 18px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 8px 40px rgba(27, 67, 50, .13);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 860px) {
    .iletisim-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 300px;
    }
}


/* ============================================================
   FİYAT SAYFASI
   ============================================================ */
.fiyat-section {
    padding-top: 80px;
}

.fiyat-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(27, 67, 50, .1);
    margin-bottom: 48px;
    transition: transform .3s, box-shadow .3s;
}

.fiyat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 56px rgba(27, 67, 50, .15);
}

.fiyat-card--reverse {
    grid-template-columns: 1.2fr 1fr;
}

.fiyat-card--reverse .fiyat-card-img {
    order: 2;
}

.fiyat-card--reverse .fiyat-card-body {
    order: 1;
}

.fiyat-card-img img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.fiyat-card:hover .fiyat-card-img img {
    transform: scale(1.04);
}

.fiyat-card-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.fiyat-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-dark);
    color: var(--white);
    font-size: .78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    width: fit-content;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fiyat-card-badge--gold {
    background: var(--gold-dark);
}

.fiyat-card-badge--dark {
    background: #1a1a2e;
}

.fiyat-card-body h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-dark);
    margin: 0;
}

.fiyat-desc {
    color: var(--text-muted);
    font-size: .96rem;
    line-height: 1.65;
    margin: 0;
}

.fiyat-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fiyat-specs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--text-dark);
}

.fiyat-specs li i {
    color: var(--green-mid);
    font-size: .85rem;
}

.fiyat-price-box {
    background: var(--green-pale);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-left: 4px solid var(--green-mid);
}

.fiyat-label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
}

.fiyat-kg {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--green-dark);
}

.fiyat-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Fiyat Tablosu */
.fiyat-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(27, 67, 50, .1);
    font-size: .92rem;
}

.fiyat-table thead tr {
    background: var(--green-dark);
    color: var(--white);
}

.fiyat-table th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.fiyat-table tbody tr {
    transition: background .2s;
}

.fiyat-table tbody tr:nth-child(even) {
    background: var(--green-pale);
}

.fiyat-table tbody tr:hover {
    background: #d1fae5;
}

.fiyat-table td {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(27, 67, 50, .07);
    color: var(--text-dark);
}

.badge-yes {
    background: #d1fae5;
    color: #065f46;
    font-weight: 700;
    font-size: .78rem;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.badge-mustehap {
    background: #fef3c7;
    color: #92400e;
    font-weight: 700;
    font-size: .78rem;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.badge-free {
    background: var(--green-dark);
    color: var(--white);
    font-weight: 700;
    font-size: .78rem;
    padding: 3px 10px;
    border-radius: 50px;
}

@media (max-width: 900px) {

    .fiyat-card,
    .fiyat-card--reverse {
        grid-template-columns: 1fr;
    }

    .fiyat-card--reverse .fiyat-card-img,
    .fiyat-card--reverse .fiyat-card-body {
        order: unset;
    }

    .fiyat-card-img img {
        min-height: 220px;
    }

    .fiyat-card-body {
        padding: 28px 24px;
    }
}


.breadcrumb {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-muted);
    animation: heroFadeIn .7s ease both;
}

.breadcrumb a {
    color: var(--green-mid);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--green-dark);
}

.breadcrumb .sep {
    color: rgba(27, 67, 50, .3);
    font-size: .75rem;
}

.breadcrumb .crumb-current {
    color: var(--gold-dark);
    font-weight: 600;
}

/* Hero responsive */
@media (max-width: 960px) {
    .hero-container {
        flex-direction: column;
        gap: 32px;
    }

    .hero-side {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .hero-side-card {
        flex: 1 1 160px;
        max-width: 200px;
    }

    .hero-decor-icon {
        font-size: 200px;
        right: -20px;
        opacity: .5;
    }
}

@media (max-width: 600px) {
    .hero-side {
        display: none;
    }

    .hero-decor-orb--1 {
        width: 260px;
        height: 260px;
    }

    .hero-decor-orb--2 {
        width: 200px;
        height: 200px;
    }
}

/* ============================================================
   MOBIL STATS BAR — Ekran altına sabit
   ============================================================ */
@media (max-width: 960px) {
    .hero {
        padding: 56px 0 100px;
    }

    .hero-stats {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .hero-stats-inner {
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 -4px 20px rgba(27, 67, 50, .15);
        border-bottom: none;
    }

    /* Sayfa içeriği bar'ın altına gizlenmesin */
    body {
        padding-bottom: 80px;
    }
}

/* ============================================================
   SEMT LİNKLERİ BÖLÜMÜ
   ============================================================ */
.semt-section {
    padding: 80px 0 90px;
    background: var(--off-white);
}

.semt-section-head {
    text-align: center;
    margin-bottom: 52px;
}

.semt-tabs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Panel kartı */
.semt-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(45, 106, 79, .15);
    box-shadow: 0 4px 20px rgba(27, 67, 50, .07);
    overflow: hidden;
    transition: box-shadow .25s;
}

.semt-panel:hover {
    box-shadow: 0 8px 36px rgba(27, 67, 50, .13);
}

/* Panel başlığı */
.semt-panel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px 16px;
    border-bottom: 1.5px solid var(--green-pale);
}

/* İkon yuvarlak arka plan */
.semt-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.semt-panel--green .semt-panel-icon {
    background: var(--green-pale);
    color: var(--green-dark);
}

.semt-panel--gold .semt-panel-icon {
    background: rgba(201, 168, 76, .15);
    color: var(--gold-dark);
}

.semt-panel--teal .semt-panel-icon {
    background: rgba(20, 150, 140, .12);
    color: #0d9488;
}

.semt-panel-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--green-dark);
    margin: 0;
    flex: 1;
}

.semt-panel-count {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--green-pale);
    padding: 3px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Pill ızgarası */
.semt-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 24px 24px;
}

/* Semt pill link */
.semt-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--green-dark);
    background: var(--green-pale);
    border: 1.5px solid transparent;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s, transform .15s;
    white-space: nowrap;
}

.semt-pill i {
    font-size: .72rem;
    color: var(--green-mid);
    flex-shrink: 0;
    transition: color .2s;
}

.semt-panel--gold .semt-pill {
    background: rgba(201, 168, 76, .1);
    color: #7a5c00;
}

.semt-panel--gold .semt-pill i {
    color: var(--gold-dark);
}

.semt-panel--teal .semt-pill {
    background: rgba(20, 150, 140, .09);
    color: #0f766e;
}

.semt-panel--teal .semt-pill i {
    color: #0d9488;
}

.semt-pill:hover {
    transform: translateY(-2px);
    border-color: var(--green-mid);
    background: var(--white);
    color: var(--green-dark);
}

.semt-panel--gold .semt-pill:hover {
    border-color: var(--gold-dark);
    background: var(--white);
    color: #7a5c00;
}

.semt-panel--teal .semt-pill:hover {
    border-color: #0d9488;
    background: var(--white);
    color: #0f766e;
}

/* Alt CTA */
.semt-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--white);
    border: 1.5px solid rgba(45, 106, 79, .15);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-top: 12px;
    box-shadow: 0 4px 18px rgba(27, 67, 50, .07);
    flex-wrap: wrap;
}

.semt-bottom-cta-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.semt-bottom-cta-text i {
    font-size: 1.6rem;
    color: var(--green-mid);
    flex-shrink: 0;
}

.semt-bottom-cta-text strong {
    display: block;
    font-size: .98rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 2px;
}

.semt-bottom-cta-text span {
    font-size: .85rem;
    color: var(--text-muted);
}

.semt-bottom-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .semt-panel-header {
        padding: 16px 20px 14px;
        gap: 10px;
    }

    .semt-pill-grid {
        padding: 16px 18px 20px;
        gap: 7px;
    }

    .semt-pill {
        font-size: .79rem;
        padding: 6px 11px;
    }

    .semt-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 22px;
    }

    .semt-bottom-cta-actions {
        width: 100%;
    }

    .semt-bottom-cta-actions .btn-primary,
    .semt-bottom-cta-actions .btn-secondary {
        flex: 1;
        justify-content: center;
    }
}

/* ============================================================
   İLETİŞİM FORMU
   ============================================================ */
.contact-form-section {
    padding: 80px 0 90px;
    background: var(--white);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

/* Sol intro */
.contact-form-intro p {
    color: var(--text-muted);
    font-size: .97rem;
    line-height: 1.75;
    margin: 16px 0 28px;
}

.contact-form-promises {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form-promises li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form-promises li i {
    color: var(--green-light);
    font-size: .95rem;
    flex-shrink: 0;
}

/* Form kartı */
.contact-form {
    background: var(--off-white);
    border: 1.5px solid var(--green-pale);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    box-shadow: 0 8px 40px rgba(27, 67, 50, .08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cf-row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cf-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cf-group label {
    font-size: .83rem;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: .02em;
}

.cf-group label span {
    color: var(--gold-dark);
}

.cf-group input,
.cf-group select,
.cf-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(45, 106, 79, .2);
    border-radius: var(--radius);
    font-size: .93rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    box-sizing: border-box;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
    color: rgba(55, 75, 66, .4);
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, .12);
}

.cf-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232d6a4f' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.cf-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* Radio grubu */
.cf-contact-pref>label:first-child {
    font-size: .83rem;
    font-weight: 700;
    color: var(--green-dark);
}

.cf-radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.cf-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cf-radio input {
    display: none;
}

.cf-radio span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: .87rem;
    font-weight: 600;
    border: 1.5px solid rgba(45, 106, 79, .25);
    background: var(--white);
    color: var(--text-muted);
    transition: all .2s;
    cursor: pointer;
    width: auto !important;
}

.cf-radio input:checked+span {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(27, 67, 50, .2);
}

/* Submit */
.cf-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 1rem;
    padding: 14px 32px;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .2s;
}

.cf-submit:hover {
    transform: translateY(-2px);
}

/* Not altı */
.cf-note {
    font-size: .8rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
}

.cf-note i {
    color: #25D366;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-form {
        padding: 28px 24px;
    }
}

@media (max-width: 600px) {
    .cf-row--2 {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FOTORAF GALERS & LIGHTBOX
   ============================================================ */
.gallery-section {
    padding: 80px 0;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    background: var(--white);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 67, 50, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 25, 20, 0.95);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 10000;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: opacity 0.15s ease-in-out;
}

/* Modal Butonları */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
    transform: scale(1.1);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}