/* ============================================================
   CLOVER CONSULTING - Premium CSS Design System
   Website: cloverconsulting.com.tr
   Tagline: "Where Talent Meets Opportunity"
   ============================================================
   İK Danışmanlık firması için kapsamlı, modern ve premium
   tasarım sistemi. Tüm sayfa bileşenleri bu dosyada
   tanımlanmıştır.
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   Playfair Display: Başlıklar için serif font
   Inter: Gövde metni için modern sans-serif font
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   2. CSS CUSTOM PROPERTIES (Renk Paleti & Tipografi)
   Marka kimliği renkleri ve tipografi değişkenleri
   ============================================================ */
:root {
    /* Ana Renkler - Primary */
    --clover-green: #1B3B2F;
    --clover-green-light: #2D5A47;
    --clover-green-dark: #0F2A1F;

    /* İkincil Renkler - Secondary (Altın) */
    --clover-gold: #B8975A;
    --clover-gold-light: #D4B87A;
    --clover-gold-dark: #9A7D4A;

    /* Arka Plan Renkleri */
    --clover-cream: #F5F0E8;
    --clover-cream-dark: #E8E0D4;

    /* Nötr & Aksanlar */
    --clover-tan: #C4B49A;
    --clover-white: #FFFFFF;
    --clover-text: #2C2C2C;
    --clover-text-light: #6B6B6B;

    /* Tipografi */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Gölge Sistemleri */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Geçiş Süreleri */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
    --transition-slower: 0.6s ease;
    --transition-slowest: 0.8s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;
}

/* ============================================================
   3. RESET & BASE STYLES
   Tarayıcı varsayılanlarını sıfırla ve temel stilleri uygula
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--clover-cream);
    color: var(--clover-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: var(--font-body);
    border: none;
    background: none;
    cursor: pointer;
}

input, select, textarea {
    font-family: var(--font-body);
}

/* ============================================================
   4. TYPOGRAPHY (Tipografi Sistemi)
   Başlıklar, paragraflar ve özel metin stilleri
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clover-green);
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Bölüm Başlığı - Altın alt çizgi dekorasyonu ile */
.section-title {
    font-size: 2.5rem;
    color: var(--clover-green);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clover-gold), var(--clover-gold-light));
    border-radius: 2px;
}

.section-title.text-left::after {
    left: 0;
    transform: none;
}

/* Bölüm Alt Başlığı - Büyük harflerle, altın renkli */
.section-subtitle {
    color: var(--clover-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    margin-bottom: 0.75rem;
    display: block;
}

/* ============================================================
   5. CONTAINER (Sayfa Konteyneri)
   İçerik genişliğini sınırla ve ortala
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   6. BUTTONS (Buton Stilleri)
   Primary, secondary ve outline buton varyantları
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all var(--transition-base);
    cursor: pointer;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    border: none;
    line-height: 1.4;
}

/* Birincil buton - Altın arka plan */
.btn-primary {
    background-color: var(--clover-gold);
    color: var(--clover-white);
    box-shadow: 0 4px 15px rgba(184, 151, 90, 0.3);
}

.btn-primary:hover {
    background-color: var(--clover-gold-light);
    color: var(--clover-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 151, 90, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(184, 151, 90, 0.3);
}

/* İkincil buton - Yeşil kenarlık */
.btn-secondary {
    border: 2px solid var(--clover-green);
    color: var(--clover-green);
    background-color: transparent;
    padding: 12px 34px;
}

.btn-secondary:hover {
    background-color: var(--clover-green);
    color: var(--clover-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 59, 47, 0.25);
}

/* Altın kenarlık buton */
.btn-outline-gold {
    border: 2px solid var(--clover-gold);
    color: var(--clover-gold);
    background-color: transparent;
    padding: 12px 34px;
}

.btn-outline-gold:hover {
    background-color: var(--clover-gold);
    color: var(--clover-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 151, 90, 0.3);
}

/* Beyaz kenarlık buton (koyu arka planlar için) */
.btn-outline-white {
    border: 2px solid var(--clover-white);
    color: var(--clover-white);
    background-color: transparent;
    padding: 12px 34px;
}

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

/* Buton grubu */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================================
   7. NAVIGATION (Navigasyon Çubuğu)
   Sabit pozisyon, scroll davranışı ve mobil menü
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color var(--transition-slow),
                padding var(--transition-slow),
                box-shadow var(--transition-slow);
    background: transparent;
}

/* Sayfa kaydırıldığında navbar arka planı */
.navbar.scrolled {
    background-color: var(--clover-green-dark);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 70px;
    transition: all var(--transition-base);
}

.navbar.scrolled .nav-logo img {
    height: 50px;
}

/* Navigasyon Linkleri */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: var(--clover-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-base);
    padding: 5px 0;
    display: inline-block;
}

/* Link altı çizgi animasyonu */
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clover-gold);
    transition: width var(--transition-base);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}

.nav-links > li > a:hover {
    color: var(--clover-gold-light);
}

.nav-links > li > a.active {
    color: var(--clover-gold);
}

/* Dropdown Menü (Hizmetlerimiz) */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown > a .dropdown-arrow {
    font-size: 0.7rem;
    transition: transform var(--transition-base);
}

.nav-dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--clover-white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
    border-top: 3px solid var(--clover-gold);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: var(--clover-green) !important;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: var(--clover-cream);
    color: var(--clover-gold) !important;
    padding-left: 30px;
}

/* Hamburger Menü Butonu (Mobil) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--clover-white);
    transition: all var(--transition-base);
    display: block;
    border-radius: 1px;
}

/* Hamburger aktif animasyonu */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   8. HERO SECTION (Ana Sayfa Kahraman Alanı)
   Tam ekran, degrade arka plan, animasyonlu içerik
   ============================================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg,
        var(--clover-green-dark) 0%,
        var(--clover-green) 50%,
        var(--clover-green-light) 100%);
    overflow: hidden;
}

/* Altın tonlu radyal desen - zarif doku efekti */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(184, 151, 90, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 151, 90, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(184, 151, 90, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 70% 60%, rgba(212, 184, 122, 0.05) 0%, transparent 35%);
    z-index: 1;
}

/* Dekoratif alt köşe kesimi */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--clover-cream);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--clover-white);
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease forwards;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--clover-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.15;
}

.hero .tagline {
    font-size: 1.3rem;
    color: var(--clover-gold-light);
    font-style: italic;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--clover-gold);
    margin: 1.5rem auto;
    border-radius: 1px;
}

/* Hero giriş animasyonu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero buton grubu */
.hero .btn-group {
    justify-content: center;
    margin-top: 2rem;
}

/* ============================================================
   9. PAGE HERO (Alt Sayfa Kahraman Alanı)
   Alt sayfalar için daha kısa başlık alanı
   ============================================================ */
.page-hero {
    padding: 160px 0 80px;
    background: var(--clover-green);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dekoratif arka plan deseni */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(184, 151, 90, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(184, 151, 90, 0.04) 0%, transparent 40%);
    z-index: 1;
}

/* Açılı alt kenar */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--clover-cream);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

.page-hero h1 {
    color: var(--clover-white);
    font-size: 3rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-hero .breadcrumb {
    color: var(--clover-gold-light);
    font-size: 0.9rem;
    font-weight: 400;
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.page-hero .breadcrumb a:hover {
    color: var(--clover-gold-light);
}

.page-hero .breadcrumb span {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.page-hero .page-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* ============================================================
   10. SECTION STYLES (Bölüm Stilleri)
   Sayfa bölümleri için padding, arka plan renkleri
   ============================================================ */
.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--clover-white);
}

.section-cream {
    background-color: var(--clover-cream);
}

.section-dark {
    background-color: var(--clover-green);
    color: var(--clover-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--clover-white);
}

.section-dark .section-subtitle {
    color: var(--clover-gold-light);
}

.section-dark .section-title::after {
    background: linear-gradient(90deg, var(--clover-gold), var(--clover-gold-light));
}

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

.section-header p {
    max-width: 650px;
    margin: 1rem auto 0;
    color: var(--clover-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   11. CARDS (Kart Bileşenleri)
   Genel amaçlı kart stilleri
   ============================================================ */
.card {
    background: var(--clover-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--clover-green), var(--clover-green-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--clover-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card h3 {
    color: var(--clover-green);
    margin-bottom: 1rem;
}

.card p {
    color: var(--clover-text-light);
    line-height: 1.7;
}

/* ============================================================
   12. SERVICE CARDS GRID (Hizmet Kartları Izgarası)
   Ana sayfadaki hizmet kartları düzeni
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--clover-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Üst kenardaki altın çizgi */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clover-gold), var(--clover-gold-light));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card .service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--clover-cream-dark);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-card .card-icon {
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: var(--clover-green);
}

.service-card p {
    color: var(--clover-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card .service-link {
    color: var(--clover-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    font-size: 0.95rem;
}

.service-card .service-link:hover {
    gap: 1rem;
    color: var(--clover-gold-dark);
}

/* ============================================================
   13. INFO CARDS (Hizmet Detay Sayfaları İçin Bilgi Kartları)
   Hizmet Kapsamı, Yaklaşım ve Kazanımlar bölümleri
   ============================================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-column {
    background: var(--clover-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-slow);
}

.info-column:hover {
    box-shadow: var(--shadow-md);
}

.info-column h3 {
    color: var(--clover-green);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--clover-gold);
}

.info-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-column li {
    padding: 1rem 1rem 1rem 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--clover-cream-dark);
    color: var(--clover-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Altın renkli madde işareti */
.info-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--clover-gold);
    border-radius: var(--radius-full);
}

.info-column li:last-child {
    border-bottom: none;
}

/* ============================================================
   14. ECOSYSTEM SECTION (Bütünsel Yetenek Ekosistemi)
   Ana sayfadaki süreç akışı bölümü
   ============================================================ */
.ecosystem {
    position: relative;
    padding: 100px 0;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.ecosystem-item {
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
}

.ecosystem-item:hover {
    background: var(--clover-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Adım numarası dairesi */
.ecosystem-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--clover-gold);
    color: var(--clover-white);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(184, 151, 90, 0.3);
}

.ecosystem-item h4 {
    color: var(--clover-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ecosystem-item p {
    color: var(--clover-text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Adımlar arası bağlantı çizgisi */
.ecosystem-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 2.5rem;
    color: var(--clover-gold);
    font-size: 1.2rem;
    opacity: 0.6;
}

/* ============================================================
   15. STATS SECTION (İstatistikler)
   Sayısal veriler bölümü
   ============================================================ */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    padding: 3rem 0;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--clover-gold);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item p {
    color: var(--clover-text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Koyu arka plan versiyonu */
.section-dark .stat-item h3 {
    color: var(--clover-gold-light);
}

.section-dark .stat-item p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   16. CTA SECTION (Harekete Geçirici Alan)
   İletişim çağrısı bölümü
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--clover-green-dark), var(--clover-green));
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(184, 151, 90, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(184, 151, 90, 0.06) 0%, transparent 50%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--clover-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-group {
    justify-content: center;
}

/* ============================================================
   17. FOOTER (Alt Bilgi)
   4 sütunlu bilgi alanı ve telif hakkı çubuğu
   ============================================================ */
.footer {
    background-color: var(--clover-green-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* Marka sütunu */
.footer-brand .footer-logo img {
    height: 45px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand .tagline {
    color: var(--clover-gold);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer başlıkları */
.footer h4 {
    color: var(--clover-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--clover-gold);
}

/* Footer listeler */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 0.9rem;
}

.footer a:hover {
    color: var(--clover-gold);
    padding-left: 5px;
}

/* İletişim bilgileri */
.footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer .contact-item .icon {
    color: var(--clover-gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Alt çubuk */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--clover-gold);
    padding-left: 0;
}

/* ============================================================
   18. CONTACT FORM (İletişim Formu)
   Form alanları ve doğrulama stilleri
   ============================================================ */
.contact-form {
    max-width: 600px;
}

.contact-form-centered {
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--clover-green);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--clover-cream-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-base);
    background: var(--clover-white);
    outline: none;
    color: var(--clover-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--clover-tan);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clover-gold);
    box-shadow: 0 0 0 3px rgba(184, 151, 90, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8.825L.35 3.175l.7-.7L6 7.425l4.95-4.95.7.7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 42px;
}

/* Form mesajları (başarı/hata) */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    display: none;
}

.form-message.show {
    display: block;
}

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

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

/* ============================================================
   19. BLOG STYLES (Blog Kartları ve Detay Sayfası)
   Blog listesi ve makale detay stilleri
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--clover-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-image-wrapper {
    overflow: hidden;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--clover-text-light);
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card h3 {
    font-size: 1.2rem;
    color: var(--clover-green);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--clover-green);
    transition: color var(--transition-base);
}

.blog-card h3 a:hover {
    color: var(--clover-gold);
}

.blog-card p {
    color: var(--clover-text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card .read-more {
    color: var(--clover-gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-base);
}

.blog-card .read-more:hover {
    gap: 0.75rem;
}

/* Blog Detay Sayfası */
.blog-detail {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-header {
    margin-bottom: 2rem;
}

.blog-detail-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--clover-text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-detail-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
}

.blog-detail-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-detail-content h2 {
    color: var(--clover-green);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.blog-detail-content h3 {
    color: var(--clover-green);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
    color: var(--clover-text);
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--clover-gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--clover-cream);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--clover-green);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* Blog navigasyon (önceki/sonraki) */
.blog-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clover-cream-dark);
}

/* ============================================================
   20. SCROLL ANIMATIONS (Kaydırma Animasyonları)
   IntersectionObserver ile tetiklenen animasyonlar
   ============================================================ */

/* Aşağıdan yukarı kayma */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slowest) ease,
                transform var(--transition-slowest) ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Soldan sağa kayma */
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity var(--transition-slowest) ease,
                transform var(--transition-slowest) ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Sağdan sola kayma */
.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity var(--transition-slowest) ease,
                transform var(--transition-slowest) ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Ölçekleme ile belirme */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--transition-slower) ease,
                transform var(--transition-slower) ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Gecikme yardımcı sınıfları */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   21. UTILITIES (Yardımcı Sınıflar)
   Hızlı düzenleme için yardımcı CSS sınıfları
   ============================================================ */

/* Metin hizalama */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Margin Bottom */
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }

/* Margin Top */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }

/* Altın çizgi dekorasyonu */
.gold-line {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--clover-gold);
    margin: 1rem 0;
    border-radius: 1px;
}

.gold-line-center {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--clover-gold);
    margin: 1rem auto;
    border-radius: 1px;
}

/* Flex yardımcıları */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* Görünürlük */
.d-none { display: none; }
.d-block { display: block; }

/* About page - İki sütunlu layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Değerler kartları */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--clover-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-card .value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--clover-green);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--clover-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* İletişim sayfası layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--clover-white);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-info-card .icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--clover-green), var(--clover-green-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clover-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    color: var(--clover-green);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-info-card p {
    color: var(--clover-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.contact-info-card a {
    color: var(--clover-gold);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--clover-gold-dark);
}

/* ============================================================
   22. RESPONSIVE BREAKPOINTS (Duyarlı Tasarım)
   Farklı ekran boyutları için uyarlamalar
   ============================================================ */

/* Tablet ve küçük ekranlar (1024px) */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.3rem; }

    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ecosystem-item:nth-child(3)::after {
        display: none;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .about-grid {
        gap: 2.5rem;
    }

    .contact-grid {
        gap: 2.5rem;
    }
}

/* Mobil cihazlar (768px) */
@media (max-width: 768px) {
    html { font-size: 15px; }

    .container { padding: 0 1.5rem; }

    .section { padding: 70px 0; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .section-title {
        font-size: 1.75rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Mobil Navigasyon */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--clover-green-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right var(--transition-slow);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        padding: 2rem;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links > li > a {
        font-size: 1.15rem;
        padding: 8px 0;
    }

    /* Mobil dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-md);
        box-shadow: none;
        padding: 0.5rem 0;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
        border-top: none;
        margin-top: 0.5rem;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--clover-gold) !important;
        padding-left: 20px;
    }

    /* Mobil overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

    .hero .hero-description {
        font-size: 1rem;
    }

    .hero .btn-group {
        flex-direction: column;
        align-items: center;
    }

    /* Page Hero */
    .page-hero {
        padding: 130px 0 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    /* Izgaralar tek sütuna */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .ecosystem-item::after {
        content: '↓' !important;
        position: static !important;
        display: block;
        margin-top: 0.5rem;
        font-size: 1rem;
    }

    .ecosystem-item:last-child::after {
        display: none !important;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    /* Buton boyutları mobilde */
    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

/* Küçük mobil (480px) */
@media (max-width: 480px) {
    html { font-size: 14px; }

    .container { padding: 0 1rem; }

    .section { padding: 50px 0; }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .section-title {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 1.75rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    .info-column {
        padding: 1.75rem;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .nav-links {
        width: 100%;
        max-width: 100%;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ============================================================
   23. PRINT STYLES (Yazdırma Stilleri)
   Sayfa yazdırma optimizasyonları
   ============================================================ */
@media print {
    .navbar,
    .hamburger,
    .cta-section,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .hero {
        height: auto;
        padding: 2rem 0;
        background: none;
        color: black;
    }

    .hero h1 {
        color: black;
        text-shadow: none;
    }

    .section {
        padding: 2rem 0;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}

/* === ABOUT SECTION IMAGE STYLES === */
.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: visible; /* To allow the badge to float outside slightly */
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--clover-white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    border-left: 4px solid var(--clover-gold);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.badge-icon {
    font-size: 2rem;
    color: var(--clover-gold);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clover-green);
    line-height: 1;
}

.badge-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--clover-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .about-image-wrapper {
        min-height: 300px;
        margin-top: 2rem;
    }
    .about-experience-badge {
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        justify-content: center;
        animation: none; /* Disable float on mobile to prevent overflow issues */
    }
}

/* === REDESIGNED ECOSYSTEM STYLES === */
.ecosystem-grid {
    position: relative;
    z-index: 1;
}

/* Yüzen arka plan bağlantı çizgisi */
.ecosystem-connector {
    position: absolute;
    top: 60px; /* Adım dairelerinin ortasına hizalı */
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, rgba(184,151,90,0.1) 0%, rgba(184,151,90,0.8) 50%, rgba(184,151,90,0.1) 100%);
    z-index: -1;
    border-radius: 4px;
}

/* Eski okları gizle */
.ecosystem-item::after {
    display: none !important;
}

.ecosystem-item {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(184, 151, 90, 0.1);
    backdrop-filter: blur(10px);
}

.ecosystem-item:hover {
    transform: translateY(-10px);
    border-color: rgba(184, 151, 90, 0.4);
}

/* Adım numarası z-index yükseltme (çizginin üstünde dursun) */
.ecosystem-step {
    position: relative;
    z-index: 2;
    border: 4px solid var(--clover-cream); /* Çizginin üstünde temiz durması için */
}

/* Modern İkon Stili */
.card-icon-modern {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clover-green), var(--clover-green-light));
    color: var(--clover-white);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(27, 59, 47, 0.15);
    transition: all 0.4s ease;
}

.ecosystem-item:hover .card-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(27, 59, 47, 0.25);
    background: linear-gradient(135deg, var(--clover-gold), var(--clover-gold-light));
}

.ecosystem-item:hover h3 {
    color: var(--clover-gold-dark);
}

@media (max-width: 1024px) {
    .ecosystem-connector {
        top: 60px;
        left: 15%;
        right: 15%;
    }
}

@media (max-width: 768px) {
    .ecosystem-connector {
        /* Mobilde dikey çizgiye dönüşür */
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 4px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(184,151,90,0.1) 0%, rgba(184,151,90,0.6) 50%, rgba(184,151,90,0.1) 100%);
    }
}

/* === HEADER WHITE THEME OVERRIDES === */
.navbar {
    background: var(--clover-white) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    background-color: var(--clover-white) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

.nav-links a {
    color: var(--clover-green) !important;
    font-weight: 600;
}

.nav-links a::after {
    background: var(--clover-gold) !important;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--clover-gold) !important;
}

.hamburger span {
    background: var(--clover-green) !important;
}

/* Dropdown menü renk düzeltmeleri */
.dropdown-menu {
    background: var(--clover-white) !important;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu a {
    color: var(--clover-green) !important;
}

.dropdown-menu a:hover {
    color: var(--clover-gold) !important;
    background: var(--clover-cream) !important;
}

/* Mobil menü açıkken arkaplanı beyaz yap */
@media (max-width: 768px) {
    .nav-links.active {
        background: var(--clover-white) !important;
    }
}

/* === MOBİL TASARIM DÜZELTMELERİ === */
html, body {
    overflow-x: hidden; /* Sağa sola taşmayı (yatay kaydırmayı) engeller */
    width: 100%;
}

@media (max-width: 768px) {
    /* Mobil menü hizalama ve üst boşluk düzeltmesi */
    .nav-links {
        justify-content: flex-start !important;
        padding-top: 100px !important; 
        align-items: flex-start !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        width: 100% !important; /* Sağdan tam açılsın */
        max-width: 320px !important;
    }
    
    .nav-links > li {
        width: 100%;
        text-align: left;
    }
    
    /* Mobil Açılır Menü (Dropdown) Şıklaştırması */
    .dropdown-menu {
        padding: 0 !important;
        margin-top: 10px !important;
        border: none !important;
        background: transparent !important; 
        box-shadow: none !important;
        width: 100%;
        display: none; /* JS ile açılıyorsa varsayılanı gizle veya CSS hover ile açılsın */
    }
    
    /* Eğer mobil dropdown CSS ile görünüyorsa */
    li:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 0 10px 1.5rem !important; 
        font-size: 1rem !important;
        border-left: 2px solid var(--clover-gold);
        margin-left: 0.5rem;
        display: block;
        color: var(--clover-text-light) !important;
    }
    
    .dropdown-menu li a:hover {
        background: transparent !important;
        color: var(--clover-gold) !important;
    }
}

@media (max-width: 768px) {
    /* Mobil dropdown pozisyon taşma hatasının kesin çözümü */
    .nav-links > li.nav-dropdown {
        position: relative;
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        left: 0 !important;
        top: 0 !important;
        min-width: 100% !important;
        display: none;
    }
    
    li:hover > .dropdown-menu,
    li.nav-dropdown.open > .dropdown-menu {
        display: block !important;
        position: relative !important;
    }
}

/* === Hakkımızda: 4 Kolonlu Değerlerimiz Alanı === */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
