/* --- 1. TEMEL AYARLAR & RENK PALETİ --- */
:root {
    --brand-green: #58BA6F;
    /* Ana Kurumsal Renk */
    --brand-dark: #1B5E20;
    /* Footer ve Koyu Alanlar */
    --accent-red: #D32F2F;
    /* Aksiyon / Et Rengi */
    --accent-orange: #E65100;
    /* Sıcaklık / Köz / Kızarmış Nar Rengi - Daha İştah Açıcı */
    --bg-light: #F1F8F3;
    /* Göz yormayan çok açık yeşil/gri */
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
.btn {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- 2. HEADER (Sticky & Clean) --- */
header {
    background: transparent;
    backdrop-filter: none;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease;
}

header .logo img {
    /* margin-top kaldırıldı */
    height: 140px !important;
    width: auto;
    transition: height 0.3s ease;
}

/* Logoyu header dışına taşırmak için */
.logo {
    position: relative;
    top: 35px;
    transition: top 0.3s ease;
    /* Logoyu aşağı indir */
    z-index: 1001;
    /* Üstte kalmasını sağla */
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

header .logo span,
header .nav-menu a {
    transition: color 0.3s ease;
}

/* Default White Text (for dark hero) */
header:not(.header-scrolled) .logo,
header:not(.header-scrolled) .logo span,
header:not(.header-scrolled) .nav-menu a {
    color: white;
}

/* Scrolled State - Logoyu küçült ve yerine oturt */
header.header-scrolled .logo img {
    height: 60px !important;
}

header.header-scrolled .logo {
    top: 0;
}

.header-hidden {
    transform: translateY(-100%);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo span {
    color: var(--accent-red);
}

/* "Döner" kırmızı */

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--brand-green);
}

.header-cta {
    background: var(--accent-red);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.header-cta:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

/* --- 3. HERO SECTION (Görsel Odaklı) --- */
.hero {
    position: relative;
    height: 85vh;
    /* Ekranın %85'i */
    background: url('images/anasayfa-hero-2.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}



/* Yeşil Overlay Katmanı */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.85), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    border: 2px solid var(--accent-orange);
}

.btn-primary:hover {
    background: transparent;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--brand-green);
}

/* --- 4. FLOATING CARDS (Profesyonel Dokunuş) --- */
/* Bu kartlar Hero'nun üzerine binerek derinlik hissi yaratır */
.features-wrapper {
    position: relative;
    margin-top: -60px;
    /* Yukarı çekme hareketi */
    z-index: 10;
    padding: 0 5%;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-red);
}

.f-icon {
    font-size: 40px;
    color: var(--brand-green);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--brand-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* --- 5. SPLIT SECTION (Kurumsal) --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
    background: white;
    max-width: 1400px;
    margin: 60px auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 25px;
    gap: 30px;
    align-items: center;
}

.split-img {
    background: url('images/fabrika-gorseli.png') center/cover;
    height: 100%;
    border-radius: 15px;
}

.split-content {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    color: var(--accent-red);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.split-content h2 {
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.split-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.check-list li {
    list-style: none;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 600;
}

.check-list li i {
    color: var(--brand-green);
    margin-right: 10px;
}

/* --- 6. PRODUCTS (Animated Grid) --- */
.products-section {
    padding: 100px 5%;
    background: var(--bg-light);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy effect */
    position: relative;
    text-align: left;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.p-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    background: var(--accent-orange);
    color: white;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.p-image {
    height: 260px;
    background: #ffffff;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .p-image {
    transform: scale(1.1);
}

.p-details {
    padding: 30px;
    position: relative;
    background: white;
}

.p-title {
    font-size: 1.5rem;
    color: var(--brand-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.p-sub {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 20px;
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.p-price-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--brand-green);
    color: var(--brand-green);
    padding: 12px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
}

.p-price-btn:hover {
    background: var(--brand-green);
    color: white;
    box-shadow: 0 5px 15px rgba(88, 186, 111, 0.4);
}

/* --- FOOTER (Compact Design) --- */
.compact-footer {
    /* REVIZE 1: Arka plan rengi "Zifiri Siyah"tan "Şık Antrasit"e çekildi */
    background-color: #222222;
    border-top: 3px solid #28a745;
    /* Meva Yeşili ince çizgi */
    color: #b0b0b0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    /* Standart font boyutu */
    /* REVIZE 2: Dikey boşluklar (padding) azaltılarak yükseklik düşürüldü */
    padding-top: 50px;
    padding-bottom: 20px;
}

.footer-container {
    max-width: 1100px;
    /* İçerik genişliği standartlaştırıldı */
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* --- 1. Logo Alanı --- */
.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo span {
    color: #28a745;
}

.footer-about {
    line-height: 1.5;
    margin-bottom: 20px;
    color: #999;
}

.social-mini {
    display: flex;
    gap: 10px;
}

.social-mini a {
    width: 32px;
    height: 32px;
    /* İkonlar küçültüldü */
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 13px;
}

.social-mini a:hover {
    background: #28a745;
}

/* --- 2. Başlıklar --- */
.footer-title {
    color: #fff;
    font-size: 16px;
    /* Başlık boyutu standartlaştırıldı */
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: #28a745;
    border-radius: 2px;
}

/* --- 3. Linkler --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #28a745;
    padding-left: 5px;
}

/* --- 4. İletişim (REVIZE: Daha kompakt tasarım) --- */
.contact-compact {
    list-style: none;
    padding: 0;
}

.contact-compact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    color: #28a745;
    font-size: 16px;
    margin-top: 3px;
    /* Metinle hizalama */
}

.contact-text strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-text a,
.contact-text span {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.contact-text a:hover {
    color: #fff;
}

/* --- Alt Bar --- */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom-links a {
    color: #888;
    margin-left: 15px;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Mobil */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* --- 8. DROPDOWN MENU (Animated) --- */
.nav-menu {
    position: relative;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    border-top: 3px solid var(--brand-green);
    border-radius: 0 0 6px 6px;
    top: 100%;
    left: 0;
    padding: 10px 0;
    /* Container animation */
    animation: fadeInDropdown 0.3s ease forwards;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Items inside dropdown */
.dropdown-content a {
    color: var(--text-dark) !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    /* List layout */
    font-size: 14px;
    border-bottom: 1px solid #f9f9f9;
    /* Hidden state for animation */
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

/* Staggered Animation on Hover */
.dropdown:hover .dropdown-content a {
    opacity: 1;
    transform: translateX(0);
}

.dropdown:hover .dropdown-content a:nth-child(1) {
    transition-delay: 0.1s;
}

.dropdown:hover .dropdown-content a:nth-child(2) {
    transition-delay: 0.2s;
}

.dropdown:hover .dropdown-content a:nth-child(3) {
    transition-delay: 0.3s;
}

.dropdown:hover .dropdown-content a:nth-child(4) {
    transition-delay: 0.4s;
}

.dropdown-content a:hover {
    background-color: #f1f8f3;
    color: var(--brand-green);
    padding-left: 25px;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .split-section {
        grid-template-columns: 1fr;
        height: auto;
    }

    .split-img {
        height: 300px;
    }

    .nav-menu {
        display: none;
    }

    .header-cta {
        display: none;
    }

    /* Hamburger button görünür yap */
    .hamburger-menu {
        display: block !important;
    }
}

/* --- 9. SAYFA BAŞLIĞI (Breadcrumb) --- */
.page-header {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
    color: white;
    padding: 120px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15rem;
    background: linear-gradient(to bottom, transparent, var(--bg-light));
    z-index: 1;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* --- 10. İLETİŞİM ALANI & FORMLAR --- */
.contact-section {
    padding: 0;
    /* background: handled by body/section overlay maybe? Or keeping background on the right side only? */
    /* User said left green, right white. Green is info box, White is form box. */
    /* So we just need the grid to fill the screen. */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-info-box {
    background: var(--brand-dark);
    color: white;
    padding: 40px 30px;
    position: relative;
    border-radius: 20px;
    /* Round corners */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-info-box h3 {
    color: white;
    /* Changed from orange */
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    margin-bottom: 35px;
    align-items: flex-start;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 20px;
    color: white;
    /* Changed from orange */
    flex-shrink: 0;
}

.info-text h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.info-text p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-links {
    margin-top: 60px;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

.contact-form-box {
    background: white;
    padding: 40px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-box h2 {
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.contact-form-box p {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: 0.3s;
    background: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(88, 186, 111, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--brand-dark);
}

/* --- 11. HARİTA --- */
.map-section {
    width: 100%;
    height: 450px;
    background: #e0e0e0;
    border-bottom: 5px solid var(--brand-green);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

@media (max-width: 900px) {
    .contact-section {
        padding: 60px 5%;
        /* Mobil uyum için azaltıldı */
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .map-section {
        height: 350px;
    }
}

/* --- 9. SAYFA BAŞLIĞI (Breadcrumb) --- */
.page-header {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
    color: white;
    padding: 60px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* --- 11. HARİTA --- */
.map-section {
    width: 100%;
    height: 450px;
    background: #e0e0e0;
    border-bottom: 5px solid var(--brand-green);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .map-section {
        height: 350px;
    }
}

/* --- 12. S.S.S. (ACCORDION) --- */
.faq-section {
    padding: 80px 5%;
    background: white;
}

/* --- 13. LOJİSTİK HARİTASI --- */
.distribution-section {
    padding: 40px 5% 0 5%;
    text-align: center;
    background: #f9f9f9;
}

.distribution-header h2 {
    color: var(--brand-dark);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.distribution-header p {
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    /* Taşmaları gizle */
}

.turkey-map {
    width: 100%;
    display: block;
    opacity: 0.8;
    mix-blend-mode: multiply;
    /* Beyaz arka planı gizlemek için */
}

/* Istanbul Point */
.istanbul-point {
    position: absolute;
    top: 25%;
    /* İstanbul tahmini konum (düzeltilmeli) */
    left: 28%;
    /* İstanbul tahmini konum */
    color: var(--brand-green);
    font-size: 1.5rem;
    z-index: 10;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(88, 186, 111, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

/* Arrows */
/* SVG Overlay Styles */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.arrow-path {
    fill: none;
    stroke: var(--brand-green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 7s ease-out infinite;
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 1000;
        opacity: 1;
    }

    30% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    80% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    90% {
        stroke-dashoffset: 0;
        opacity: 0;
    }

    100% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
}

.path-ankara {
    animation-delay: 0s;
}

.path-izmir {
    animation-delay: 0.5s;
}

.path-antalya {
    animation-delay: 1s;
}

.path-trabzon {
    animation-delay: 1.5s;
}

.path-gaziantep {
    animation-delay: 2s;
}

.path-mardin {
    animation-delay: 2.5s;
}

/* Istanbul Point (Re-added for visual anchor) */
.istanbul-point {
    position: absolute;
    top: 35%;
    /* Aşağı çekildi */
    left: 27%;
    width: 15px;
    height: 15px;
    background: var(--brand-green);
    /* Kırmızı nokta */
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 0 4px rgba(88, 186, 111, 0.3);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--brand-green);
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}



@keyframes growArrow {
    0% {
        width: 0;
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 0;
    }

    /* width JS ile max-width'e set edilebilir veya burada manuel */
}

/* Arrow width override for simple CSS animation simulation */
.arrow-ankara {
    width: 0;
    animation-name: growAnkara;
}

@keyframes growAnkara {
    to {
        width: 150px;
        opacity: 0;
    }
}

.arrow-izmir {
    width: 0;
    animation-name: growIzmir;
}

@keyframes growIzmir {
    to {
        width: 120px;
        opacity: 0;
    }
}

.arrow-antalya {
    width: 0;
    animation-name: growAntalya;
}

@keyframes growAntalya {
    to {
        width: 160px;
        opacity: 0;
    }
}

.arrow-trabzon {
    width: 0;
    animation-name: growTrabzon;
}

@keyframes growTrabzon {
    to {
        width: 200px;
        opacity: 0;
    }
}

.arrow-gaziantep {
    width: 0;
    animation-name: growGaziantep;
}

@keyframes growGaziantep {
    to {
        width: 250px;
        opacity: 0;
    }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 50px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    padding: 20px;
    background: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--brand-dark);
    transition: 0.3s;
    border-radius: 8px;
}

.faq-question:hover {
    background: #f1f8f3;
    color: var(--brand-green);
}

.faq-question::after {
    content: '\f078';
    /* FontAwesome Chevron Down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: 0.3s;
}

.faq-item.active .faq-question {
    background: var(--brand-green);
    color: white;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
}



/* Contact Page Background */
.contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/fooder.png');
    background-size: cover;
    background-position: center;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Slanted Layout Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    width: 100%;
    min-height: 60vh;
    /* Reduced height for compact look */
    margin: 0;
    gap: 0;
    padding: 30px 10% 30px 0;
    /* Reduced padding */
    align-items: center;
}

.contact-info-box {
    background: transparent;
    /* Background moved to pseudo-element */
    color: white;
    padding: 50px 40px 50px 60px;
    /* Reduced vertical padding */
    position: relative;
    height: 100%;
    /* clip-path removed to allow border-radius on pseudo */
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    /* Ensure text is above background */
}

/* Pseudo-element for the slanted background with soft corners */
.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    /* Start far left to cover edge */
    width: 150%;
    /* width to cover area */
    height: 100%;
    background: var(--brand-dark);
    transform: skewX(-12deg);
    /* Slanted effect */
    transform-origin: top left;
    border-top-right-radius: 30px;
    /* Soft corner */
    border-bottom-right-radius: 30px;
    /* Soft corner */
    z-index: -1;
    /* Behind text */
}

.contact-form-box {
    background: white;
    padding: 25px;
    /* Reduced padding */
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    margin-left: 120px;
    /* Increased gap */
}

.contact-header-content {
    margin-top: 150px;
    /* Push header down to clear nav menu */
}

/* ========================================
   HAMBURGER MENU SYSTEM (Mobile Only)
   ======================================== */

/* Hamburger Button - Hidden on Desktop */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    padding: 10px;
    z-index: 1100;
    position: relative;
    border-radius: 0 !important;
}

.hamburger-menu .bar {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Hamburger Animation when Active - 2 Bar X Shape */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 1050;
    padding-top: 80px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-nav-panel.active {
    right: 0;
}

/* Mobile Navigation Links */
.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links a {
    display: block;
    padding: 16px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.mobile-nav-links a:hover {
    background: var(--bg-light);
    color: var(--brand-green);
    padding-left: 35px;
}

/* Mobile Dropdown */
.mobile-dropdown {
    background: #f9f9f9;
}

.mobile-dropdown a {
    padding-left: 45px !important;
    font-size: 14px;
    color: var(--text-gray);
}

.mobile-dropdown a:hover {
    padding-left: 55px !important;
}

/* Mobile CTA Button */
.mobile-cta {
    margin: 20px 25px;
    display: block;
    background: var(--accent-red);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.mobile-cta:hover {
    background: #b71c1c;
    transform: scale(1.02);
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(3px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Scrolled Header State - Dark Hamburger */
header.header-scrolled .hamburger-menu .bar {
    background-color: var(--text-dark);
}

/* FORCE REMOVE HAMBURGER BACKGROUND - High Specificity */
#hamburger-btn.hamburger-menu {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    padding: 10px !important;
    border-radius: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

/* Mobile Logo Adjustments */
@media (max-width: 991px) {
    .logo {
        top: 10px !important;
        /* Move up more to 10px */
    }

    header .logo img {
        height: 110px !important;
        /* Smaller than desktop 140px */
    }

    /* Adjust scrolled state for mobile */
    header.header-scrolled .logo img {
        height: 50px !important;
    }

    header.header-scrolled .logo {
        top: 0 !important;
    }
}

/* Mobile Menu Customizations */
.mobile-nav-panel .mobile-menu-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid var(--brand-green);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.mobile-nav-panel .mobile-menu-header img {
    height: 80px;
    margin-bottom: 10px;
}

.mobile-nav-panel .mobile-menu-header span {
    color: var(--brand-green);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Force mobile links to be brand green */
.mobile-nav-links a {
    color: var(--brand-green) !important;
}

/* Remove hover effect since links are already green */
.mobile-nav-links a:hover {
    background: #f0f0f0;
    padding-left: 25px !important;
    /* Keep padding stable */
}

/* Force hide hamburger on desktop */
@media (min-width: 992px) {

    .hamburger-menu,
    #hamburger-btn {
        display: none !important;
    }
}

/* Mobile Hero Buttons - Smaller */
@media (max-width: 768px) {
    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-btn {
        padding: 12px 25px !important;
        font-size: 14px !important;
        margin: 5px 0 !important;
        width: 100%;
        max-width: 200px;
        /* Limit width */
        min-width: unset !important;
    }
}

/* Mobile Hero Adjustments (Height & Buttons) */
@media (max-width: 768px) {
    .hero {
        height: 65vh !important;
        /* Shorter hero on mobile */
        min-height: 480px;
    }

    .hero-btns {
        display: flex !important;
        flex-direction: row !important;
        /* Yan yana */
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        gap: 10px !important;
        margin-top: 20px;
    }

    .hero-btn {
        padding: 10px 15px !important;
        font-size: 13px !important;
        margin: 0 !important;
        width: auto !important;
        min-width: 120px !important;
        white-space: nowrap;
    }
}

/* Mobile CTA Button Refinement (Smaller & Neater) */
.mobile-cta {
    padding: 10px !important;
    margin: 15px 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
}

/* FIX MOBILE LAYOUT ISSUES (Logo & Cards) */
@media (max-width: 768px) {

    /* 1. Fix Logo Overlap: Add padding to hero content */
    .hero-content {
        padding-top: 100px !important;
        /* Push text down */
    }

    /* 2. Fix Floating Cards Overlap */
    .features-wrapper {
        margin-top: 0 !important;
        /* Remove negative margin on mobile */
        margin-bottom: 40px !important;
        padding-top: 20px !important;
    }

    .features-grid {
        gap: 20px !important;
    }

    /* Adjust Hero Height to fit padding */
    .hero {
        min-height: 550px !important;
        /* Ensure enough space */
        height: auto !important;
        /* Allow growing */
        padding-bottom: 20px;
    }
}