/**
 * Genel CSS - Ana Stil DosyasÄ±
 * Adana KurbanlÄ±k - ÃœstÃ¼nkaya Besicilik
 * Premium TasarÄ±m - YeÅŸil, AltÄ±n, Beyaz Tema
 */

/* ==========================================
   CSS DEÄžÄ°ÅžKENLERÄ°
   ========================================== */
:root {
    /* Ana Renkler */
    --primary: #1e4d2b;
    /* Orman YeÅŸili */
    --primary-dark: #153a20;
    --primary-light: #2a6639;
    --primary-rgb: 30, 77, 43;

    /* Vurgu Renkleri */
    --accent: #c98a1a;
    /* AltÄ±n */
    --accent-dark: #a87214;
    --accent-light: #dba02e;
    --accent-rgb: 201, 138, 26;

    /* Arka Plan Renkleri */
    --bg-primary: #faf8f5;
    /* SÄ±cak Beyaz */
    --bg-secondary: #f5f2ed;
    --bg-tertiary: #ebe7e0;
    --bg-card: #ffffff;

    /* Metin Renkleri */
    --text-primary: #1a3321;
    --text-secondary: #4a5e4d;
    --text-muted: #6b7c6e;
    --text-light: #9aaa9d;
    --text-white: #ffffff;

    /* Durum Renkleri */
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* WhatsApp */
    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;

    /* KenarlÄ±klar */
    --border-color: #e5e0d8;
    --border-light: #f0ebe3;

    /* GÃ¶lgeler */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(30, 77, 43, 0.08);
    --shadow-lg: 0 12px 40px rgba(30, 77, 43, 0.12);
    --shadow-xl: 0 24px 60px rgba(30, 77, 43, 0.16);
    --shadow-gold: 0 8px 30px rgba(201, 138, 26, 0.25);

    /* Gradyanlar */
    --gradient-hero: linear-gradient(135deg, rgba(30, 77, 43, 0.92) 0%, rgba(26, 51, 33, 0.85) 50%, rgba(45, 60, 40, 0.8) 100%);
    --gradient-forest: linear-gradient(135deg, #1e4d2b 0%, #2a6639 100%);
    --gradient-gold: linear-gradient(135deg, #c98a1a 0%, #a87214 100%);
    --gradient-earth: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);

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

    /* Ã–lÃ§Ã¼ler */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* GeÃ§iÅŸler */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-Index */
    --z-dropdown: 100;
    --z-header: 1000;
    --z-modal: 2000;
    --z-tooltip: 3000;
}

/* ==========================================
   RESET & TEMEL STÄ°LLER
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
}

p {
    margin-bottom: 1rem;
}

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

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

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

ul,
ol {
    list-style: none;
}

/* ==========================================
   CONTAINER
   ========================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ==========================================
   ÃœST BANT
   ========================================== */
.ustband {
    background: var(--gradient-forest);
    color: var(--text-white);
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.ustband-icerik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ustband-sol,
.ustband-sag {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ustband-sol span,
.ustband-sag a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.ustband-sag a:hover {
    color: var(--accent-light);
}

.ustband i {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .ustband {
        display: none;
    }
}

/* ==========================================
   ÃœST YEÅžÄ°L ÅžERÄ°T
   ========================================== */
.ust-serit {
    height: 30px;
    background: var(--gradient-forest);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition-base);
    padding: 0.5rem 0;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-icerik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-ikon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.logo-ikon span {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--text-white);
}

.logo-yazi {
    display: flex;
    flex-direction: column;
}

.logo-baslik {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-slogan {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Logo Resim (yÃ¼klenen logo iÃ§in) */
.logo-resim {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-logo-resim {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigasyon */
.nav-desktop {
    display: flex;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: var(--primary);
    background: rgba(30, 77, 43, 0.05);
}

.nav-menu>li>a i {
    font-size: 0.625rem;
    transition: transform var(--transition-fast);
}

/* Dropdown */
.dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: rgba(30, 77, 43, 0.05);
    color: var(--primary);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobil MenÃ¼ Butonu */
.mobil-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger {
    top: 50%;
    margin-top: -1px;
}

.hamburger::before {
    content: '';
    top: -7px;
}

.hamburger::after {
    content: '';
    bottom: -7px;
}

.mobil-menu-btn.active .hamburger {
    background: transparent;
}

.mobil-menu-btn.active .hamburger::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.mobil-menu-btn.active .hamburger::after {
    bottom: 0;
    transform: translateX(-50%) rotate(-45deg);
}

/* Mobil MenÃ¼ */
.mobil-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.mobil-menu.active {
    max-height: 100vh;
}

.mobil-nav {
    padding: 1rem;
}

.mobil-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobil-nav ul li a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobil-nav ul li a:hover {
    background: rgba(30, 77, 43, 0.05);
    color: var(--primary);
}

.mobil-menu-cta {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.mobil-menu-cta .btn {
    flex: 1;
    justify-content: center;
}

@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobil-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobil-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .header-icerik {
        height: 70px;
    }

    .logo-yazi {
        display: none;
    }
}

/* ==========================================
   BUTONLAR
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Boyutlar */
.btn-sm {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

/* Varyantlar */
.btn-primary {
    background: var(--gradient-forest);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-accent {
    background: var(--gradient-gold);
    color: var(--text-white);
    box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
    color: var(--text-white);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(30, 77, 43, 0.05);
    color: var(--primary);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    color: var(--text-white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

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

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
}

.btn-hero-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-white);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--text-white);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--gradient-forest);
    color: var(--text-white);
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

/* Dekoratif Ã¼st Ã§izgi */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

/* Dekoratif desen */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 138, 26, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-ust {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-bolum h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(201, 138, 26, 0.3);
    display: inline-block;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-ikon {
    background: var(--text-white);
}

.footer-logo .logo-ikon span {
    color: var(--primary);
}

.footer-logo .logo-baslik {
    color: var(--text-white);
}

.footer-logo .logo-slogan {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Logo Resmi */
.footer-logo-resim {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-aciklama {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-devami-oku {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #e6a832 50%, var(--accent) 100%);
    background-size: 200% 200%;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(201, 138, 26, 0.4);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.footer-devami-oku::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.footer-devami-oku:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 138, 26, 0.5);
    color: #1a1a1a;
}

.footer-devami-oku:hover::before {
    left: 100%;
}

.footer-devami-oku i {
    transition: transform var(--transition-fast);
}

.footer-devami-oku:hover i {
    transform: translateX(4px);
}

/* Sosyal Medya */
.sosyal-medya {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.sosyal-medya a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: all var(--transition-base);
}

.sosyal-medya a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(201, 138, 26, 0.4);
}

/* Footer Linkler */
.footer-linkler li {
    margin-bottom: 0.875rem;
    position: relative;
    padding-left: 1rem;
}

.footer-linkler li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.footer-linkler li:hover::before {
    opacity: 1;
}

.footer-linkler a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.footer-linkler a:hover {
    color: var(--accent-light);
    padding-left: 0.25rem;
}

/* Footer Ä°letiÅŸim */
.iletisim-bilgileri li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.iletisim-bilgileri li i {
    width: 20px;
    color: var(--accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.iletisim-bilgileri li span,
.iletisim-bilgileri li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.iletisim-bilgileri li a:hover {
    color: var(--accent-light);
}

.telefonlar {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Footer Alt */
.footer-alt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.footer-alt-sol p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.footer-alt-sag {
    display: flex;
    gap: 2rem;
}

.footer-alt-sag a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    position: relative;
    transition: all var(--transition-fast);
}

.footer-alt-sag a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition-fast);
}

.footer-alt-sag a:hover {
    color: var(--accent-light);
}

.footer-alt-sag a:hover::after {
    width: 100%;
}

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

@media (max-width: 640px) {
    .footer-ust {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-alt {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================
   SABÄ°T BUTONLAR (Telefon + WhatsApp)
   ========================================== */
.sabit-butonlar {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
}

.telefon-sabit,
.whatsapp-sabit {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-white);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.telefon-sabit {
    background: var(--primary);
    box-shadow: 0 4px 20px rgba(30, 77, 43, 0.4);
}

.telefon-sabit:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(30, 77, 43, 0.5);
    color: var(--text-white);
}

.whatsapp-sabit {
    background: var(--whatsapp);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

.whatsapp-sabit:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: var(--text-white);
}

.telefon-sabit i,
.whatsapp-sabit i {
    font-size: 1.5rem;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 640px) {
    .sabit-butonlar {
        bottom: 1rem;
        right: 1rem;
    }

    .telefon-sabit,
    .whatsapp-sabit {
        width: 52px;
        height: 52px;
    }

    .telefon-sabit i,
    .whatsapp-sabit i {
        font-size: 1.375rem;
    }
}

/* ==========================================
   ALERT MESAJLARI
   ========================================== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #15803d;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #b91c1c;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #1d4ed8;
}

/* ==========================================
   FORM STÄ°LLERÄ°
   ========================================== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 77, 43, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

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

/* ==========================================
   KARTLAR
   ========================================== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.card-resim {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-resim img {
    transform: scale(1.05);
}

.card-icerik {
    padding: 1.5rem;
}

.card-baslik {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.card-aciklama {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==========================================
   BÃ–LÃœM STÄ°LLERÄ°
   ========================================== */
.section {
    padding: 5rem 0;
}

.section-bg {
    background: var(--gradient-earth);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(30, 77, 43, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

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

/* ==========================================
   SAYFA BANNER
   ========================================== */
.sayfa-banner {
    background: var(--gradient-forest);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sayfa-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.sayfa-banner-icerik {
    position: relative;
    z-index: 1;
}

.sayfa-banner h1 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.sayfa-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin: 0;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.9375rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--text-white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .aktif {
    color: var(--accent-light);
}

/* ==========================================
   GRÄ°D SÄ°STEMÄ°
   ========================================== */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

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

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

@media (max-width: 640px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   YARDIMCI SINIFLAR
   ========================================== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.text-muted {
    color: var(--text-muted);
}

.text-white {
    color: var(--text-white);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* AltÄ±n Gradient Metin */
.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ana Ä°Ã§erik */
.main-icerik {
    min-height: calc(100vh - 180px);
}

/* ==========================================
   ANÄ°MASYONLAR
   ========================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeup {
    animation: fadeUp 0.6s ease-out forwards;
}

.animate-fadein {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-scalein {
    animation: scaleIn 0.4s ease-out forwards;
}
/* ==========================================
   YUKARI ÇIK BUTONU
   ========================================== */
.yukari-cik {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a6639 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 77, 43, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.yukari-cik.gorunur {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.yukari-cik:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 77, 43, 0.4);
}

.yukari-cik i {
    font-size: 1.25rem;
    color: white;
    transition: transform 0.3s ease;
}

.yukari-cik:hover i {
    transform: translateY(-2px);
}
