/* ===== Tırtıl Nakliyat - Ana Stil Dosyası ===== */
/* Mobil öncelikli, dokunmatik uyumlu */

:root {
    /* Ana tema: beyaz, yeşil, sarı */
    --green-lime: #84cc16;
    --green-bright: #22c55e;
    --green-primary: #16a34a;
    --green-emerald: #047857;
    --green-dark: #064e3b;
    --yellow-accent: #fbbf24;
    --yellow-curve: #fcd34d;
    --yellow-soft: #fef3c7;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --shadow: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -2px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.08);
    --header-height: 88px;
    --touch-min: 44px;
    --radius: 12px;
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Header — beyaz zemin, logo öne çıkar ===== */
.header {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(6, 78, 59, .12);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 env(safe-area-inset-right) 0 env(safe-area-inset-left);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-height);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: var(--touch-min);
    padding: 0.25rem 0;
}

/* Logo büyük ve belirgin */
.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.header .logo-img {
    filter: drop-shadow(0 2px 8px rgba(6, 78, 59, .15));
}

/* Logo yanı "Tırtıl Nakliyat" yazısı — site fon ve temasına uyumlu */
.logo-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--green-dark);
    line-height: 1.2;
}

@media (min-width: 769px) {
    .header .logo-img { height: 88px; }
    .logo-text {
        font-size: 1.35rem;
        letter-spacing: -0.025em;
    }
}

/* Mobil: hamburger butonu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: var(--touch-min);
    height: var(--touch-min);
    padding: 10px;
    border-radius: var(--radius);
    color: var(--green-dark);
    transition: background var(--transition), color var(--transition);
}

.menu-toggle:hover,
.menu-toggle:focus {
    background: var(--gray-100);
    color: var(--green-primary);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Navigasyon */
.nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    flex-direction: column;
    gap: 0.25rem;
}

.nav.is-open {
    display: flex;
    animation: navSlide 0.3s ease;
}

@keyframes navSlide {
    from { opacity: 0; }
    to { opacity: 1; }
}

.nav a {
    padding: 0.875rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    min-height: var(--touch-min);
    display: flex;
    align-items: center;
}

.nav a:hover {
    color: var(--green-primary);
    background: var(--gray-50);
}

.cta-header {
    background: var(--green-primary);
    color: var(--white) !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 10px;
    box-shadow: 0 4px 0 0 var(--yellow-accent);
    margin-top: 0.5rem;
}

.cta-header:hover {
    background: var(--green-emerald) !important;
    box-shadow: 0 4px 0 0 var(--yellow-curve);
}

/* Masaüstü: yatay menü */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .nav {
        position: static;
        display: flex;
        flex-direction: row;
        padding: 0;
        background: transparent;
        overflow: visible;
    }

    .nav a {
        min-height: auto;
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }

    .cta-header {
        margin-top: 0;
    }
}

/* ===== Hero — beyaz zemin, yeşil + sarı vurgu ===== */
.hero {
    background: linear-gradient(180deg, var(--white) 0%, var(--yellow-soft) 50%, var(--white) 100%);
    color: var(--gray-900);
    padding: 3rem 1.25rem 4rem;
    padding-bottom: calc(4rem + env(safe-area-inset-bottom));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(1.65rem, 4.5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-banner {
    display: inline-block;
    background: var(--green-primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 0 0 var(--yellow-accent);
}

.hero p {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 1.75rem;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(6, 78, 59, .15);
}

.trust-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-emerald);
}

/* ===== İstatistikler ===== */
.stats-section {
    background: var(--green-dark);
    color: var(--white);
    padding: 2.5rem 1.25rem;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .stats-inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.stat-suffix {
    font-size: 1.25rem;
    font-weight: 700;
    opacity: .95;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.35rem;
    opacity: .9;
}

@media (min-width: 769px) {
    .stat-number { font-size: 2.5rem; }
    .stat-suffix { font-size: 1.5rem; }
    .stat-label { font-size: 0.9rem; }
}

/* ===== Nasıl Çalışıyoruz ===== */
.how-section {
    background: var(--gray-50);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .how-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.how-step {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--green-primary);
    transition: transform var(--transition), box-shadow var(--transition);
}

.how-step:hover {
    box-shadow: var(--shadow-lg);
}

.how-step__num {
    width: 44px;
    height: 44px;
    background: var(--green-primary);
    color: var(--white);
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.how-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-emerald);
    margin-bottom: 0.5rem;
}

.how-step p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.55;
}

/* ===== Müşteri Yorumları ===== */
.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--gray-50);
    padding: 1.75rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--green-primary);
    margin: 0;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author strong {
    color: var(--green-dark);
}

.testimonial-author span {
    display: block;
    color: var(--gray-700);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

/* ===== SSS (FAQ) ===== */
.faq-section {
    background: var(--gray-50);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.is-open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ===== Hızlı Teklif (WhatsApp) ===== */
.quick-quote {
    background: rgba(255,255,255,.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.quick-quote h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.quick-quote-desc {
    font-size: 0.9rem;
    opacity: .95;
    margin-bottom: 1.25rem;
}

.quick-quote-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.quick-quote-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.quick-quote-row input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--gray-900);
}

.quick-quote-row input:focus {
    outline: none;
    border-color: var(--yellow-accent);
}

.quick-quote-form .btn {
    margin-top: 0.5rem;
}

/* Footer trust line */
.footer-trust {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: .9;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    min-height: var(--touch-min);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--green-primary);
    color: var(--white);
    box-shadow: 0 4px 0 0 var(--yellow-accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 var(--yellow-accent);
    background: var(--green-emerald);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ===== Bölümler ===== */
section {
    padding: 3rem 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, var(--green-lime) 0%, var(--green-emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: var(--gray-700);
    font-size: 1rem;
}

.section-intro {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Görünürlük / scroll animasyon (JS ile .is-visible verilir) */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Hizmetler ===== */
.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border-top: 4px solid var(--green-primary);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card .icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(180deg, var(--green-lime), var(--green-emerald));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-emerald);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Hizmetler — kurumsal detay kartları */
.services-grid--corporate {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .services-grid--corporate {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid--corporate {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card--detail {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.service-card__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-card__head .icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-card__lead {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-card__list {
    list-style: none;
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.service-card__list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-primary);
}

@media (min-width: 1200px) {
    .services-grid--corporate {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ===== Galeri ===== */
.gallery-section {
    background: var(--white);
    padding: 3rem 1.25rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(to top, rgba(6, 78, 59, .9), transparent);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== Neden Biz — kapsamlı grid ===== */
.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.why-grid--extended {
    grid-template-columns: 1fr;
}

@media (min-width: 480px) {
    .why-grid--extended {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .why-grid--extended {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.why-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: box-shadow var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow);
}

.why-card .num {
    width: 44px;
    height: 44px;
    background: var(--green-primary);
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-emerald);
    margin-bottom: 0.4rem;
}

.why-card p {
    color: var(--gray-700);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== Google Harita ===== */
.map-section {
    padding: 3rem 1.25rem;
    background: var(--gray-50);
}

.map-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 100%;
    margin: 0 auto;
}

.map-iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

@media (min-width: 769px) {
    .map-iframe {
        height: 400px;
    }
}

.map-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--green-primary);
    font-size: 0.95rem;
}

.map-link:hover {
    color: var(--green-emerald);
    text-decoration: underline;
}

/* ===== İletişim: WhatsApp + butonlar ===== */
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    min-height: var(--touch-min);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    background: #25d366;
    color: var(--white);
    transition: transform var(--transition), background var(--transition);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Mobil: sağ alt yanıp sönen Teklif Al butonu ===== */
.float-cta {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    bottom: calc(1.25rem + env(safe-area-inset-bottom));
    right: calc(1.25rem + env(safe-area-inset-right));
    z-index: 90;
    padding: 0.875rem 1.25rem;
    min-height: var(--touch-min);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    background: var(--green-primary);
    color: var(--white);
    box-shadow: 0 4px 0 0 var(--yellow-accent), 0 4px 20px rgba(6, 78, 59, .4);
    align-items: center;
    justify-content: center;
    animation: float-cta-pulse 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .float-cta {
        display: inline-flex;
    }
}

@keyframes float-cta-pulse {
    0%, 100% {
        box-shadow: 0 4px 0 0 var(--yellow-accent), 0 4px 20px rgba(6, 78, 59, .4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 0 0 var(--yellow-accent), 0 4px 28px rgba(6, 78, 59, .55);
        transform: scale(1.02);
    }
}

/* ===== Teklif Formu (isteğe bağlı alan) ===== */
.teklif-form {
    background: rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.teklif-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--white);
}

.teklif-form input,
.teklif-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 1rem;
    background: var(--white);
    color: var(--gray-900);
    -webkit-appearance: none;
    appearance: none;
}

.teklif-form input:focus,
.teklif-form textarea:focus {
    outline: none;
    border-color: var(--yellow-accent);
}

.teklif-form textarea {
    min-height: 90px;
    resize: vertical;
}

.form-feedback {
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    display: none;
}

.form-feedback.is-success {
    display: block;
    background: var(--green-emerald);
    color: var(--white);
}

.form-feedback.is-error {
    display: block;
    background: var(--green-dark);
    color: var(--white);
}

/* ===== İletişim Banner — yeşil + sarı ===== */
.contact-banner {
    background: var(--green-primary);
    color: var(--white);
    padding: 2.5rem 1.25rem;
    border-radius: 20px;
    text-align: center;
    margin: 0 1.25rem 3rem;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    box-shadow: 0 8px 0 0 var(--yellow-accent);
}

.contact-banner h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.contact-banner p {
    opacity: .95;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.contact-banner .btn {
    background: var(--white);
    color: var(--green-dark);
}

.contact-banner .btn:hover {
    background: var(--yellow-soft);
    color: var(--green-dark);
}

.tel-link {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 800;
    color: var(--yellow-curve);
    margin-top: 0.5rem;
    display: inline-block;
    padding: 0.25rem 0;
    min-height: var(--touch-min);
    display: inline-flex;
    align-items: center;
}

.tel-link:hover {
    text-decoration: underline;
}

/* ===== Footer — yeşil zemin, beyaz metin, sarı vurgu ===== */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 2.5rem 1.25rem 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
    .footer-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.footer-brand .logo-img {
    height: 56px;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.2));
}

.footer-brand p {
    font-size: 0.875rem;
    opacity: .9;
    line-height: 1.5;
}

.footer h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.4rem;
}

.footer a {
    color: var(--gray-200);
    font-size: 0.9rem;
    transition: color var(--transition);
    padding: 0.25rem 0;
    display: inline-block;
    min-height: var(--touch-min);
    display: inline-flex;
    align-items: center;
}

.footer a:hover {
    color: var(--yellow-curve);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.15);
    text-align: center;
    font-size: 0.85rem;
    opacity: .9;
}

.footer-bottom a {
    color: var(--yellow-curve);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== PWA Install Banner — yeşil tema ===== */
.install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--green-dark);
    color: var(--white);
    padding: 1rem 1.25rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
    z-index: 99;
}

.install-banner.is-visible {
    display: flex;
    flex-wrap: wrap;
}

.install-banner p {
    font-size: 0.9rem;
    flex: 1 1 200px;
}

.install-banner .install-actions {
    display: flex;
    gap: 0.5rem;
}

.install-banner .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.install-banner .btn-outline {
    background: transparent;
    color: var(--yellow-curve);
    border: 2px solid var(--yellow-curve);
}

.install-banner .btn-outline:hover {
    background: rgba(252,211,77,.2);
}

.install-banner .btn-primary {
    background: var(--yellow-accent);
    color: var(--green-dark);
    box-shadow: 0 2px 0 0 var(--green-emerald);
}

/* Body scroll lock (mobil menü açıkken) */
body.menu-open {
    overflow: hidden;
}

body.menu-open .nav {
    display: flex;
}
