/* ===== RESET & BASE ===== */
/* Tüm elementler için kutu modeli sıfırlama */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Yumuşak kaydırma ve mobil metin boyutlandırma */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* Arka plan pudra tonu, ana metin rengi kahverengi */
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: #FFF8F0; color: #5D4E37; line-height: 1.7; overflow-x: hidden; }
/* Resimlerin taşmasını engelleme */
img { max-width: 100%; height: auto; display: block; }
/* Link renkleri ve geçiş efekti */
a { color: #C4956A; text-decoration: none; transition: color .3s; }
a:hover { color: #A67B52; }
/* Liste stillerini kaldır */
ul, ol { list-style: none; }
/* Merkez kapsayıcı */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
/* Sadece ekran okuyucular için görünür eleman */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===== PASTEL COLOR SYSTEM ===== */
/* Pastel renk sistemi - pudra tonları ve vurgu renkleri */
:root {
    --pudra: #F5E6D3;
    --pudra-light: #FFF8F0;
    --pudra-dark: #E8D5BC;
    --accent: #D4A574;
    --accent-hover: #C4956A;
    --text: #5D4E37;
    --text-light: #8B7A62;
    --white: #FFFFFF;
    --shadow: rgba(93,78,55,0.08);
    --shadow-hover: rgba(93,78,55,0.15);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== HEADER & NAVIGATION ===== */
/* Sabit üst menü - yarı saydam arka plan ve bulanıklık efekti */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,248,240,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(213,165,116,0.15); transition: var(--transition); }
.header.scrolled { box-shadow: 0 4px 30px var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
/* Logo alanı */
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 700; color: var(--text); }
.logo img { height: 40px; width: auto; }
.logo span { background: linear-gradient(135deg, #D4A574, #C4956A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Navigasyon menüsü */
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { padding: 8px 16px; font-size: 0.9rem; font-weight: 500; color: var(--text); border-radius: 8px; transition: var(--transition); position: relative; }
.nav a:hover, .nav a.active { background: var(--pudra); color: var(--accent-hover); }
/* Alt çizgi animasyonu */
.nav a::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%) scaleX(0); width: 60%; height: 2px; background: var(--accent); transition: transform .3s; border-radius: 1px; }
.nav a:hover::after { transform: translateX(-50%) scaleX(1); }

/* Sipariş butonu - gradyan arka plan */
.order-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; background: linear-gradient(135deg, #D4A574, #C4956A); color: var(--white); border: none; border-radius: 50px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; }
.order-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,165,116,0.3); color: var(--white); }

/* Mobil menü butonu - üç yatay çizgi */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
/* Ana sayfa kahraman bölümü - tam ekran, gradyan arka plan */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; background: linear-gradient(135deg, var(--pudra-light) 0%, var(--pudra) 50%, #F0E0D0 100%); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: var(--text); }
.hero h1 span { background: linear-gradient(135deg, #D4A574, #B8895E); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 32px; max-width: 500px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: absolute; right: -5%; top: 50%; transform: translateY(-50%); width: 50%; max-width: 700px; border-radius: 20px; box-shadow: 0 30px 60px var(--shadow-hover); }
/* Slayt gösterisi - arka plan resimleri */
.hero-slider { position: absolute; inset: 0; z-index: 1; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,248,240,0.85) 0%, rgba(255,248,240,0.6) 50%, rgba(255,248,240,0.3) 100%); z-index: 1; }

/* ===== SECTIONS ===== */
/* Genel bölüm stilleri */
.section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; color: var(--text); margin-bottom: 12px; }
.section-title p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-title .subtitle { display: inline-block; padding: 6px 20px; background: var(--pudra); border-radius: 50px; font-size: 0.85rem; color: var(--accent-hover); font-weight: 600; margin-bottom: 16px; }

/* ===== PRODUCT CARDS ===== */
/* Ürün kartları ızgarası */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px var(--shadow); transition: var(--transition); cursor: pointer; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px var(--shadow-hover); }
.product-card img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s; }
.product-card:hover img { transform: scale(1.05); }
.product-card-body { padding: 20px; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.product-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.product-card .price { font-size: 1.2rem; font-weight: 700; color: var(--accent); }

/* ===== SERVICES ===== */
/* Hizmet kartları */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.service-card { text-align: center; padding: 40px 24px; background: var(--white); border-radius: var(--radius); box-shadow: 0 4px 20px var(--shadow); transition: var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px var(--shadow-hover); }
.service-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: var(--pudra); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--accent); transition: var(--transition); }
.service-card:hover .service-icon { background: var(--accent); color: var(--white); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== STATS ===== */
/* İstatistik bölümü */
.stats { background: linear-gradient(135deg, var(--pudra), #F0E0D0); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; text-align: center; }
.stat-item { padding: 24px; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.stat-label { font-size: 0.95rem; color: var(--text-light); }

/* ===== GALLERY ===== */
/* Galeri ızgarası */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.08); }
/* Büyüteç simgesi - hover'da görünür */
.gallery-item::after { content: '🔍'; position: absolute; inset: 0; background: rgba(93,78,55,0.3); display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: 0; transition: opacity .3s; }
.gallery-item:hover::after { opacity: 1; }

/* ===== LIGHTBOX ===== */
/* Tam ekran resim görüntüleyici */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 8px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: #fff; font-size: 1.5rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: #fff; font-size: 1.5rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ===== BLOG ===== */
/* Blog kartları */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow-hover); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card .meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }

/* ===== REFERENCES ===== */
.references-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.reference-card { text-align: center; padding: 36px 24px; background: var(--white); border-radius: var(--radius); box-shadow: 0 4px 20px var(--shadow); transition: var(--transition); }
.reference-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px var(--shadow-hover); }
.reference-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: var(--pudra); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--accent); transition: var(--transition); }
.reference-card:hover .reference-icon { background: var(--accent); color: var(--white); }
.reference-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.reference-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== CONTENT WITH IMAGE ===== */
.content-with-image { display: flex; align-items: center; gap: 48px; margin-bottom: 40px; }
.content-text { flex: 1; }
.content-image { flex: 0 0 300px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 30px var(--shadow-hover); }
.content-image img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); transition: transform .5s; }
.content-image:hover img { transform: scale(1.05); }
@media (max-width: 768px) { .content-with-image { flex-direction: column; gap: 24px; } .content-image { flex: 0 0 auto; width: 100%; max-width: 300px; } }

/* ===== TESTIMONIALS ===== */
/* Müşteri yorumları */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: 0 4px 20px var(--shadow); }
.testimonial-stars { color: #F4C542; margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-text { font-style: italic; color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ===== FAQ ===== */
/* Sık sorulan sorular - accordion stili */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 12px; box-shadow: 0 2px 10px var(--shadow); overflow: hidden; }
.faq-question { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; font-size: 1rem; transition: var(--transition); border: none; background: none; width: 100%; text-align: left; color: var(--text); }
.faq-question:hover { background: var(--pudra); }
.faq-question .icon { transition: transform .3s; font-size: 1.2rem; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all .3s; }
.faq-item.active .faq-answer { padding: 0 24px 20px; max-height: 500px; }
.faq-answer p { color: var(--text-light); line-height: 1.8; }

/* ===== CTA ===== */
/* Harekete geçirme mesajı bölümü */
.cta { background: linear-gradient(135deg, var(--pudra), #F0E0D0); text-align: center; }
.cta h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; }
.cta p { color: var(--text-light); max-width: 500px; margin: 0 auto 32px; }

/* ===== CONTACT ===== */
/* İletişim sayfası - iki sütunlu düzen */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 8px; display: flex; align-items: center; gap: 12px; }
.contact-info .phone-link { color: var(--text); font-weight: 600; font-size: 1.1rem; }
.contact-info .phone-link:hover { color: var(--accent); }
.whatsapp-icon { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: #25D366; color: #fff; border-radius: 50px; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.whatsapp-icon:hover { background: #1DA851; transform: translateY(-2px); color: #fff; }
/* Form elemanları */
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 14px 18px; border: 2px solid var(--pudra-dark); border-radius: 12px; font-size: 0.95rem; transition: var(--transition); background: var(--white); color: var(--text); font-family: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(212,165,116,0.1); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; }

/* ===== MAP ===== */
/* Google Harita kapsayıcısı */
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px var(--shadow); }
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* ===== VIDEO BANNER ===== */
.video-banner { position: relative; overflow: hidden; min-height: 500px; display: flex; align-items: center; justify-content: center; padding: 0; }
.video-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.video-banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(93,78,55,0.6), rgba(93,78,55,0.3)); }
.video-banner-content { position: relative; z-index: 2; text-align: center; max-width: 700px; padding: 60px 20px; }
.video-play-btn { width: 80px; height: 80px; border-radius: 50%; background: var(--accent); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; transition: var(--transition); }
.video-play-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(212,165,116,0.4); }
.play-icon { font-size: 2rem; color: #fff; }
.video-banner-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: #fff; margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.video-banner-content p { font-size: 1.1rem; color: rgba(255,255,255,0.9); max-width: 500px; margin: 0 auto; line-height: 1.8; }

/* ===== BREADCRUMB ===== */
/* Sayfa konum göstergesi (örn: Anasayfa / Galeri) */
.breadcrumb { padding: 16px 0; font-size: 0.85rem; color: var(--text-light); background: var(--pudra-light); border-bottom: 1px solid rgba(213,165,116,0.1); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }
.breadcrumb .sep { margin: 0 8px; }

/* ===== PAGE HEADER ===== */
/* Sayfa başlık bölümü (iç sayfalar için) */
.page-header { padding: 140px 0 60px; background: linear-gradient(135deg, var(--pudra-light), var(--pudra)); text-align: center; }
.page-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* ===== SITEMAP ===== */
/* Site haritası ızgarası */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.sitemap-category h3 { font-size: 1.2rem; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--pudra); }
.sitemap-category ul li { margin-bottom: 8px; }
.sitemap-category ul li a { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; transition: var(--transition); }
.sitemap-category ul li a:hover { background: var(--pudra); }
.sitemap-category ul li a img { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; }

/* ===== FOOTER ===== */
/* Alt bilgi - koyu arka plan */
.footer { background: var(--text); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer h3, .footer h4 { color: #fff; margin-bottom: 16px; font-size: 1.1rem; }
.footer p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 8px; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--accent); }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 0.85rem; }
.footer-bottom a { color: var(--accent); }
.footer .phone-link { color: var(--accent); font-weight: 600; }
/* Sosyal medya ikonları */
.footer .social-links { display: flex; gap: 12px; margin-top: 16px; }
.footer .social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 1.1rem; }
.footer .social-links a:hover { background: var(--accent); color: #fff; }

/* ===== SCROLL ANIMATIONS ===== */
/* Sayfa kaydırma animasyonları - Intersection Observer ile */
.animate-on-scroll { opacity: 1; transform: translateY(0); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.js .animate-on-scroll { opacity: 0; transform: translateY(30px); }
.js .animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ===== KEYFRAMES ===== */
/* CSS animasyonları - anahtar kareler */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ===== RESPONSIVE ===== */
/* Tablet için düzenleme */
@media (max-width: 1024px) {
    .hero-image { position: relative; right: auto; top: auto; transform: none; width: 100%; max-width: 500px; margin: 40px auto 0; }
    .hero { flex-direction: column; text-align: center; }
    .hero p { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .video-banner { min-height: 350px; }
    .video-banner-content { padding: 40px 20px; }
    .nav { display: none; }
    .nav.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--pudra-light); padding: 20px; box-shadow: 0 20px 40px var(--shadow); border-bottom: 1px solid rgba(213,165,116,0.15); }
    .mobile-toggle { display: flex; }
    .section { padding: 60px 0; }
    .products-grid, .services-grid, .blog-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .hero { min-height: auto; padding: 100px 0 60px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Küçük mobil ekranlar için */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}
