/* ==========================================================================
   KAAN FİDANCILIK - ÖZEL & HIZLI STİL DOSYASI (STYLE.CSS)
   ========================================================================== */

:root {
    --primary: #0F4229;
    --primary-dark: #05321D;
    --primary-light: #185a3a;
    --accent: #9CC212;
    --accent-hover: #83a50d;
    --text-color: #383838;
    --text-muted: #68736b;
    --bg-light: #F7FAF7;
    --bg-tint: #E7F3E7;
    --border-color: #E2EBE2;
    --white: #FFFFFF;
    --dark: #121E17;
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Rubik', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(15, 66, 41, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 66, 41, 0.08);
    --shadow-lg: 0 16px 36px rgba(15, 66, 41, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Genel */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
    line-height: 1.25;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(156, 194, 18, 0.3);
}

.btn-dark {
    background-color: var(--primary);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 66, 41, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

/* Rozetler ve Bölüm Başlıkları */
.section-badge {
    display: inline-block;
    background-color: var(--bg-tint);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.3rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background-color: var(--primary-dark);
    color: #cadbce;
    font-size: 0.85rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-left i {
    color: var(--accent);
    margin-right: 6px;
}

.top-bar-left a:hover {
    color: var(--white);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-socials {
    display: flex;
    gap: 12px;
}

.top-bar-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.75rem;
    transition: var(--transition);
}

.top-bar-socials a:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.lang-switch a {
    color: #cadbce;
    font-size: 0.8rem;
}

.lang-switch a.active {
    color: var(--accent);
    font-weight: 700;
}

.lang-switch .divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.site-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--primary);
    padding: 10px 0;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-item.active .nav-link,
.nav-link:hover {
    color: var(--accent);
}

.nav-item.active .nav-link::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-arrow {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: var(--transition);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 240px;
    padding: 12px 0;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-color);
}

.dropdown-menu li a:hover {
    background-color: var(--bg-tint);
    color: var(--primary);
    padding-left: 25px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-btn {
    padding: 10px 20px;
    font-size: 0.92rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================================================
   HERO / BANNER (ANA SAYFA)
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, #F5FAF5 0%, #FFFFFF 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 50px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-tint);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--primary);
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 25px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
}

.hero-feat-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.hero-badge-float {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background-color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--accent);
}

.hero-badge-float .badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-badge-float .badge-txt {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ==========================================================================
   İSTATİSTİKLER / SAYAÇLAR
   ========================================================================== */
.stats-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #e0ece3;
    font-weight: 500;
}

/* ==========================================================================
   HAKKIMIZDA BÖLÜMÜ
   ========================================================================== */
.about-section {
    padding: 90px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.about-experience-card {
    position: absolute;
    top: 30px;
    right: -25px;
    background-color: var(--accent);
    color: var(--white);
    padding: 22px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-experience-card .years {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-card .label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1rem;
}

.about-check-list {
    margin-bottom: 30px;
}

.about-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.about-check-list li i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 4px;
}

/* ==========================================================================
   FİDAN ÇEŞİTLERİ KARTLARI
   ========================================================================== */
.products-section {
    background-color: var(--bg-light);
    padding: 90px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.product-thumb {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: #eef2ee;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.08);
}

.product-altitude-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-pollinizer-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.product-title a:hover {
    color: var(--accent);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.product-order-btn {
    color: #128c7e;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-order-btn:hover {
    color: #075e54;
}

/* ==========================================================================
   ÜRETİM AŞAMALARI (PROCESS)
   ========================================================================== */
.process-section {
    padding: 90px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    transform: translateY(-6px);
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon img {
    max-height: 55px;
    width: auto;
}

.process-step {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(15, 66, 41, 0.15);
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ==========================================================================
   CTA BÖLÜMÜ (HIZLI SİPARİŞ)
   ========================================================================== */
.cta-section {
    background: linear-gradient(rgba(15, 66, 41, 0.9), rgba(5, 50, 29, 0.95)), url('../images/kaan-fidancilik-hakkimizda.png') center/cover no-repeat;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.cta-desc {
    font-size: 1.15rem;
    color: #d1e2d4;
    margin-bottom: 30px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================================================
   İÇ SAYFALAR: HERO & BREADCRUMB
   ========================================================================== */
.page-hero {
    background: linear-gradient(rgba(15, 66, 41, 0.85), rgba(5, 50, 29, 0.9)), url('../images/kaanfidancilik.jpg') center/cover no-repeat;
    padding: 65px 0 50px;
    text-align: center;
    color: var(--white);
}

.page-hero-title {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: #cbd8ce;
}

.breadcrumbs a {
    color: #cbd8ce;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs .separator {
    font-size: 0.75rem;
    opacity: 0.7;
}

.breadcrumbs .current {
    color: var(--accent);
    font-weight: 600;
}

/* ==========================================================================
   FİDAN DETAY SAYFASI (SINGLE VARIETY)
   ========================================================================== */
.variety-detail-section {
    padding: 70px 0;
}

.variety-detail-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 50px;
}

.variety-main-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.variety-main-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.order-box {
    background: linear-gradient(135deg, var(--bg-tint) 0%, #FFFFFF 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.order-box-text h4 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--primary);
}

.order-box-text p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

.variety-content h3 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    border-bottom: 2px solid var(--bg-tint);
    padding-bottom: 8px;
}

.variety-content p {
    margin-bottom: 18px;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

.variety-specs-list {
    margin-bottom: 25px;
}

.variety-specs-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1.02rem;
}

.variety-specs-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Sidebar */
.sidebar-widget {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.variety-nav-list li {
    margin-bottom: 10px;
}

.variety-nav-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background-color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.variety-nav-list a:hover,
.variety-nav-list li.active a {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.sidebar-help-box {
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
}

.sidebar-help-box h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.sidebar-help-box p {
    font-size: 0.92rem;
    color: #cbd8ce;
    margin-bottom: 20px;
}

/* ==========================================================================
   GALERİ SAYFASI
   ========================================================================== */
.gallery-section {
    padding: 70px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 240px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 66, 41, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 1.8rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-img-wrap {
    position: relative;
    max-width: 900px;
    max-height: 85vh;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--accent);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* ==========================================================================
   İLETİŞİM SAYFASI
   ========================================================================== */
.contact-section {
    padding: 70px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.contact-info-text p, .contact-info-text a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info-text a:hover {
    color: var(--primary);
}

.contact-form-wrap {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.contact-form-wrap p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(156, 194, 18, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    display: none;
    font-size: 0.95rem;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.map-container {
    margin-top: 50px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.contact-map-wrap {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    min-height: 480px;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--dark);
    color: #c9d8cd;
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
    gap: 40px;
}

.footer-logo img {
    height: 52px;
    width: auto;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #aebfb2;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
}

.footer-menu li {
    margin-bottom: 11px;
}

.footer-menu a {
    color: #aebfb2;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-menu a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-menu a i {
    font-size: 0.75rem;
    color: var(--accent);
}

.footer-contact-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.92rem;
    color: #aebfb2;
}

.footer-contact-list li i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: #aebfb2;
}

.footer-contact-list a:hover {
    color: var(--white);
}

.footer-bottom {
    background-color: #0c140f;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
    color: #8fa093;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.scroll-top-btn {
    position: fixed;
    bottom: 80px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top-btn:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

/* ==========================================================================
   MOBİL SABİT ALT BAR (ORİJİNAL SİTEDE OLDUĞU GİBİ)
   ========================================================================== */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #25d366;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: var(--font-heading);
}

.bottom-bar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.bottom-bar i {
    margin-right: 8px;
    font-size: 18px;
}

.call-button {
    background-color: #007bff;
    padding: 8px 18px;
    border-radius: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.whatsapp-button {
    background-color: #128c7e;
    padding: 8px 18px;
    border-radius: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ==========================================================================
   RESPONSIVE (MEDYA SORGULARI)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-desc {
        margin: 0 auto 35px;
    }
    .hero-btns, .hero-features {
        justify-content: center;
    }
    .hero-badge-float {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-experience-card {
        right: 20px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .variety-detail-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobil Menü */
    .mobile-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 86px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        padding: 20px 0;
        max-height: calc(100vh - 86px);
        overflow-y: auto;
        display: none;
        border-top: 1px solid var(--border-color);
    }
    .main-nav.active {
        display: block;
    }
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .nav-item {
        width: 100%;
    }
    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 25px;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: var(--bg-light);
        padding: 5px 0;
        display: none;
    }
    .has-dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        padding-left: 40px;
    }
    .header-btn {
        display: none;
    }
    .top-bar-left span:not(.top-bar-phone) {
        display: none;
    }

    /* Mobilde Sabit Alt Bar Açık */
    .bottom-bar {
        display: flex;
    }
    body {
        padding-bottom: 60px; /* Alt bar için boşluk */
    }

    .hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    .order-box {
        flex-direction: column;
        text-align: center;
    }
}
