/* ============================================================
   DENTAL UTS YAZILIM - style.css (Tam ve Derlenmiş Sürüm)
   ============================================================ */

/* --- DEĞİŞKENLER --- */
:root {
    --primary: #c5a059;
    --primary-light: #d4b46e;
    --accent: #0f4c81;
    --accent-light: #1a6aa8;
    --dark: #1b2631;
    --light: #f8f9fa;
    --white: #ffffff;
    --text-gray: #566573;
    --whatsapp: #25D366;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
body { line-height: 1.6; color: var(--dark); background-color: var(--light); overflow-x: hidden; }
body[data-page="404"], body[data-page="403"] { display: flex; flex-direction: column; min-height: 100vh; }

/* ============================================================
   HEADER & NAVBAR
   ============================================================ */
header { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: fixed; width: 100%; top: 0; z-index: 1000; height: 100px; display: flex; align-items: center; }
.navbar { display: flex; justify-content: space-between; align-items: center; width: 90%; max-width: 1400px; margin: 0 auto; }
.menu-toggle { display: none; }
.logo img { height: 70px; width: auto; transition: 0.3s; }
.nav-links { display: flex; list-style: none; gap: 2rem; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 1rem; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* ============================================================
   ORTAK BUTONLAR VE BAŞLIKLAR
   ============================================================ */
.btn { padding: 1rem 2.5rem; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; }
.btn-primary { background-color: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.btn-primary:hover { background-color: var(--primary-light); border-color: var(--primary-light); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid #ddd; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; color: var(--accent); margin-bottom: 0.5rem; font-weight: 700; }
.section-header p { color: var(--text-gray); font-size: 1.1rem; }

/* ============================================================
   FLOATING BUTTONS VE MODAL
   ============================================================ */
.whatsapp-btn { position: fixed; bottom: 30px; left: 30px; width: 55px; height: 55px; background-color: var(--whatsapp); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 15px rgba(37,211,102,0.3); z-index: 2000; text-decoration: none; transition: all 0.3s; }
.whatsapp-btn:hover { transform: scale(1.1); }
.scroll-top-btn { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background: var(--accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 1999; }
.scroll-top-btn.show { opacity: 1; visibility: visible; }
.modal { display: none; position: fixed; z-index: 2001; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); align-items: center; justify-content: center; }
.modal-content { position: relative; width: 80%; max-width: 900px; background-color: #000; border-radius: 10px; }
.close-modal { position: absolute; top: -40px; right: 0; color: #fff; font-size: 35px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--primary); }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 10px; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ============================================================
   HERO BÖLÜMÜ (3D Ekranlar, Gradyan Yazılar ve İkonlar)
   ============================================================ */
.hero-new { min-height: 100vh; background: var(--light); display: flex; flex-direction: column; justify-content: center; padding-top: 100px; overflow: hidden; }
.hero-new-inner { display: flex; align-items: center; gap: 4rem; max-width: 1400px; width: 90%; margin: 0 auto; padding: 4rem 0; }
.hero-new-text { flex: 1; z-index: 10;}
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: #fff3e0; color: var(--primary); font-size: 0.8rem; font-weight: 700; padding: 8px 18px; border-radius: 50px; margin-bottom: 2rem; letter-spacing: 1px; text-transform: uppercase; }
.hero-tag-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }
.hero-new-text h1 { font-size: 3.8rem; font-weight: 800; color: var(--dark); line-height: 1.15; margin-bottom: 1.5rem; }
.hero-new-text h1 em { font-style: normal; background: linear-gradient(135deg, var(--primary) 0%, #f3d58a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; padding-right: 5px; }
.hero-new-text p { font-size: 1.15rem; color: var(--text-gray); max-width: 550px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-new-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-new-visual { flex: 1; display: flex; justify-content: center; position: relative; }

/* Hero Giriş Animasyonları */
.hero-new-text > * { opacity: 0; animation: slideUpFade 0.8s ease forwards; }
.hero-new-text .hero-tag { animation-delay: 0.1s; }
.hero-new-text h1 { animation-delay: 0.3s; }
.hero-new-text p { animation-delay: 0.5s; }
.hero-new-buttons { animation-delay: 0.7s; }
@keyframes slideUpFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Hero 3D Kapsayıcı */
.dual-screen-composition { position: relative; width: 100%; max-width: 700px; height: 560px; perspective: 1200px; margin: 0 auto; }
.anim-float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* Yüzen Yazılar (ÜTS ve Yeni ÜTS!) */
.hero-floating-text { position: absolute; font-weight: 900; font-style: italic; text-transform: uppercase; z-index: 5; animation: floatText 6s ease-in-out infinite; }
.hero-text-uts { font-size: 4rem; top: 5%; right: -5%; transform: translateZ(10px); animation-delay: 0.5s; color: var(--accent); }
.hero-text-yeni { font-size: 3rem; bottom: 25%; left: -10%; transform: translateZ(50px); animation-delay: 1s; }
.hero-text-yeni span { background: linear-gradient(135deg, var(--primary) 0%, #f3d58a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
@keyframes floatText { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

/* Etrafı Saran Net Sektörel İkonlar */
.surrounding-icons { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 4; }
.s-icon { position: absolute; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15)); animation: floatIcon 6s ease-in-out infinite; }
.s-icon-1 { top: 5%; left: -8%; color: var(--accent); font-size: 3rem; animation-delay: 0.2s; }
.s-icon-2 { top: -5%; left: 35%; color: var(--primary); font-size: 2.5rem; animation-delay: 0.8s; }
.s-icon-3 { bottom: 15%; left: -12%; color: var(--accent); font-size: 3.2rem; animation-delay: 0.5s; }
.s-icon-4 { top: 15%; right: -12%; color: var(--primary); font-size: 3rem; animation-delay: 1.2s; }
.s-icon-5 { bottom: -5%; left: 25%; color: var(--primary); font-size: 2.5rem; animation-delay: 0.4s; }
.s-icon-6 { top: -8%; right: 15%; color: var(--accent); font-size: 2.8rem; animation-delay: 0.9s; }
@keyframes floatIcon { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-12px) rotate(8deg); } 100% { transform: translateY(0px) rotate(0deg); } }

/* Bilgisayar Monitör Mockup'ları */
.monitor-mockup { position: absolute; transform-style: preserve-3d; box-shadow: 0 20px 50px rgba(0,0,0,0.15); border-radius: 12px; }
.monitor-frame { background: #2a2d34; border: 8px solid #2a2d34; border-radius: 10px; overflow: hidden; position: relative; aspect-ratio: 16 / 10; }
.monitor-screen-content { width: 100%; height: 100%; object-fit: contain; display: block; background: #e2e8f0; }
.monitor-stand { width: 60px; height: 10px; background: #2a2d34; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); border-radius: 5px; }

/* Eski ÜTS Mockup'ı */
.old-uts { width: 85%; top: -10px; left: -5%; transform: rotateY(-15deg) rotateX(5deg) scale(0.95); z-index: 1; }
.old-uts .monitor-frame { aspect-ratio: 1918 / 953; }
.screen-label { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(0,0,0,0.6); color: var(--white); padding: 10px; text-align: center; font-size: 0.8rem; font-weight: 700; }

/* Yeni Panel Mockup'ı */
.new-uts { width: 75%; bottom: -40px; right: -5%; background: var(--white); z-index: 2; transform: translateZ(40px); }
.new-uts .monitor-frame { border-color: rgba(255,255,255,0.9); }
.modern-panel-features { padding: 20px; background: var(--white); position: relative; overflow: hidden; height: 100%; }
.screen-label-new { color: var(--dark); font-weight: 800; font-size: 0.95rem; padding-bottom: 10px; text-align: center; text-transform: uppercase; }

/* Panel Özellik Kartları (Trafik Lambasız) */
.floating-feature-cards { display: flex; flex-direction: column; gap: 12px; }
.feat-card-item { background: var(--light); padding: 12px 15px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: 12px; border-left: 4px solid var(--accent); box-shadow: 0 2px 10px rgba(0,0,0,0.02); transition: transform 0.3s ease, background 0.3s ease; cursor: default; }
.feat-card-item:hover { transform: translateX(5px); background: var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.feat-card-item i { color: var(--accent); font-size: 1.1rem; width: 20px; text-align: center; }
.m-badge { margin-left: auto; background: rgba(37, 211, 102, 0.12); color: #17a34a; font-size: 0.7rem; padding: 4px 8px; border-radius: 4px; font-weight: 700; }
.feat-card-item.special-support { border-left-color: var(--accent); background: rgba(15, 76, 129, 0.04); }
.feat-card-item.special-support i { color: var(--accent); }
.feat-card-item.special-support .support-badge { background: var(--accent); color: var(--white); }

/* Scroll Hint (KAYDIR KEŞFET) */
.hero-scroll-hint { text-align: center; padding-bottom: 2rem; }
.hero-scroll-hint span { display: block; font-size: 0.75rem; letter-spacing: 3px; color: var(--text-gray); margin-bottom: 10px; text-transform: uppercase; }
.scroll-mouse { width: 24px; height: 38px; border: 2px solid var(--text-gray); border-radius: 12px; margin: 0 auto; position: relative; }
.scroll-dot { width: 4px; height: 8px; background: var(--text-gray); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollAnim 1.5s ease-in-out infinite; }
@keyframes scrollAnim { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 22px; } }

/* ============================================================
   HAKKIMIZDA BÖLÜMÜ (Yan Yana Kartlar ve Dinamik Metin)
   ============================================================ */
.about-new-section { padding: 6rem 2rem; background: var(--light); }
.about-new-inner { display: flex; align-items: center; gap: 5rem; max-width: 1400px; margin: 0 auto; }

/* Çift Kart Kompozisyonu (Side-by-Side Flexbox Düzeni) */
.about-new-visual { flex: 1; display: flex; justify-content: center; }
.dual-cards-wrapper { display: flex; gap: 20px; width: 100%; max-width: 750px; align-items: stretch; justify-content: center; }

/* Karanlık Kart (Profesyonel Destek) */
.about-dark-card { flex: 1; background: linear-gradient(145deg, #1b2631 0%, #2c3e50 100%); border-radius: 20px; padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.05); box-shadow: 0 30px 60px rgba(15, 76, 129, 0.2); }
.adc-glow { position: absolute; top: 50%; left: 50%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%); border-radius: 50%; animation: slowBreath 4s ease-in-out infinite alternate; }
.adc-icon { width: 90px; height: 90px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.pulse-anim { color: var(--primary); background: rgba(197, 160, 89, 0.1); box-shadow: 0 0 20px rgba(197, 160, 89, 0.2); animation: heartbeat 2s infinite; }
.adc-label { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; position: relative; z-index: 1; }
.adc-status { color: var(--primary); font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 8px; position: relative; z-index: 1; }
.status-dot { width: 10px; height: 10px; background-color: #27c93f; border-radius: 50%; display: inline-block; }
.blinking { animation: blinkLight 1.5s infinite; box-shadow: 0 0 10px #27c93f; }

/* Aydınlık Kart (Otomasyon Sistemi) */
.about-light-card { flex: 1; background: var(--white); border-radius: 20px; padding: 2.5rem 2rem; position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 20px 40px rgba(0,0,0,0.05); display: flex; flex-direction: column; justify-content: center; }
.alc-glow { position: absolute; top: -20px; right: -20px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(15, 76, 129, 0.08) 0%, transparent 70%); border-radius: 50%; animation: slowBreath 6s ease-in-out infinite alternate; }
.alc-header { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid #f0f0f0; padding-bottom: 15px; position: relative; z-index: 1; }
.alc-icon { width: 50px; height: 50px; background: rgba(15, 76, 129, 0.08); color: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.spin-slow { animation: slowSpin 8s linear infinite; }
.alc-label { font-size: 0.9rem; font-weight: 800; color: var(--dark); letter-spacing: 1px; }
.alc-status { font-size: 0.75rem; font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 6px; margin-top: 5px; }
.status-dot-blue { width: 8px; height: 8px; background-color: var(--accent); border-radius: 50%; display: inline-block; }
.blinking-slow { animation: blinkLightBlue 2s infinite; }
.alc-details { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.alc-detail-item { display: flex; flex-direction: column; font-size: 0.8rem; background: var(--light); padding: 10px 15px; border-radius: 8px; border-left: 3px solid var(--accent); }
.alc-detail-item span { color: var(--text-gray); display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.alc-detail-item span i { color: var(--primary); }
.alc-detail-item strong { color: var(--dark); font-weight: 700; font-size: 0.9rem; }

/* Hakkımızda Sağ Metinler */
.about-new-text { flex: 1; }
.section-tag { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; display: block; }
.about-new-text h2 { font-size: 2.8rem; color: var(--dark); font-weight: 800; margin-bottom: 1.5rem; line-height: 1.2; }
.about-new-text h2 em { font-style: italic; text-decoration: underline; text-decoration-color: var(--primary); text-underline-offset: 5px; }
.about-new-text > p { color: var(--text-gray); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }
.about-feature-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-feat-card { background: var(--white); border-radius: 15px; padding: 2rem; border: 2px solid transparent; transition: all 0.4s ease; cursor: default; }
.about-feat-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 15px 30px rgba(197, 160, 89, 0.1); }
.afc-icon { width: 50px; height: 50px; background: #fff3e0; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.3rem; margin-bottom: 1rem; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.about-feat-card:hover .afc-icon { background: var(--primary); color: var(--white); transform: scale(1.15) rotate(-5deg); }
.about-feat-card h4 { font-size: 1.1rem; color: var(--dark); margin-bottom: 0.5rem; font-weight: 700; }
.about-feat-card p { font-size: 0.9rem; color: var(--text-gray); margin: 0; line-height: 1.5; }

/* Animasyon Keyframeleri */
@keyframes slowBreath { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; } 100% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; } }
@keyframes heartbeat { 0%, 20%, 40%, 100% { transform: scale(1); } 10%, 30% { transform: scale(1.15); } }
@keyframes blinkLight { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); box-shadow: 0 0 2px #27c93f; } }
@keyframes blinkLightBlue { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); box-shadow: 0 0 5px var(--accent); } }
@keyframes slowSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ============================================================
   STATS BAR (Sayaçlar)
   ============================================================ */
.stats-bar-section { padding: 4rem 2rem; background: var(--white); border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; }
.stats-bar-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 2rem; max-width: 1200px; margin: 0 auto; }
.stats-bar-item { text-align: center; transition: transform 0.3s ease; flex: 1; min-width: 200px; }
.stats-bar-item:hover { transform: scale(1.08); }
.sbi-value { font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 5px; background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.stats-bar-item.accent .sbi-value { background: linear-gradient(135deg, var(--primary) 0%, #f3d58a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.sbi-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; color: var(--text-gray); text-transform: uppercase; margin-top: 5px; }

/* ============================================================
   ÖZELLİKLER (SERVICES)
   ============================================================ */
.services-section { padding: 6rem 2rem; background: #f4f7fa; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.service-card { background: var(--white); padding: 2.5rem 1.5rem; border-radius: 20px; text-align: center; transition: all 0.4s; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.03); position: relative; overflow: hidden; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0; background: linear-gradient(to top, var(--accent) 0%, transparent 100%); opacity: 0.05; transition: height 0.3s; z-index: -1; }
.service-card:hover::after { height: 100%; }
.service-card:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(197,160,89,0.15); }
.service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #fff8ee 0%, #ffffff 100%); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.5rem; transition: all 0.4s; box-shadow: 0 10px 20px rgba(0,0,0,0.05); border: 1px solid rgba(197,160,89,0.15); }
.service-card:hover .service-icon { background: var(--primary); color: var(--white); transform: rotateY(180deg); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 1rem; color: var(--dark); font-weight: 700; min-height: 55px; display: flex; align-items: center; justify-content: center; }
.service-card p { font-size: 0.9rem; color: var(--text-gray); line-height: 1.6; }

/* ============================================================
   FİYAT LİSTESİ
   ============================================================ */
.pricing-section { padding: 6rem 2rem; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.pricing-card { background: var(--white); border-radius: 20px; padding: 3rem 2rem; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05); transition: all 0.4s; position: relative; overflow: hidden; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(197,160,89,0.15); }
.pricing-card.featured { border: 2px solid var(--primary); transform: scale(1.05); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.pricing-badge { background: var(--accent); color: var(--white); padding: 8px 25px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; display: inline-block; margin-bottom: 1.5rem; }
.pricing-card.featured .pricing-badge { background: var(--primary); }
.pricing-price { margin-bottom: 2rem; }
.price-currency { font-size: 1.5rem; color: var(--accent); font-weight: 700; vertical-align: top; }
.price-amount { font-size: 3rem; color: var(--accent); font-weight: 800; }
.price-period { font-size: 1rem; color: var(--text-gray); }
.pricing-features { list-style: none; padding: 0; margin-bottom: 2rem; text-align: left; }
.pricing-features li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.95rem; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.pricing-features li i { color: var(--primary); font-size: 0.85rem; width: 20px; text-align: center; }
.pricing-features li.disabled { color: #ccc; }
.pricing-features li.disabled i { color: #ccc; }
.pricing-btn { width: 100%; justify-content: center; }
/* Paket Süre Başlığı */
.package-duration { font-size: 1.8rem; color: var(--dark); margin-bottom: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }

/* İndirim Rozeti ve Animasyonlar */
.discount-badge { position: absolute; top: -15px; right: -85px; background: var(--primary); color: white; font-size: 0.75rem; padding: 4px 10px; border-radius: 5px; font-weight: 700; white-space: nowrap; }
.pulse-anim-blue { background: var(--accent) !important; animation: heartbeat 2s infinite; }

/* Fiyatlandırma düzenlemesi */
.pricing-card p { margin-top: -1rem; font-size: 0.9rem; }
/* ============================================================
   FİYATLANDIRMA ESTETİK DÜZENLEMELERİ
   ============================================================ */
/* Fiyatlandırma Arkaplanı (Şık ve hafif degrade dikdörtgen alan) */
.pricing-section {
    background: linear-gradient(135deg, #f4f7fa 0%, #eef2f7 100%) !important;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

/* Paket Süre Başlığı (Şık hap/kutu tasarımı) */
.package-duration {
    display: inline-block;
    background: rgba(15, 76, 129, 0.05); /* Accent renginin yumuşatılmış hali */
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 30px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(15, 76, 129, 0.1);
}

/* Ortadaki (Avantajlı) paketin kutusu daha belirgin olsun */
.pricing-card.featured .package-duration {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Fiyatlandırma Kartlarının kendi arkaplanı bembeyaz kalarak öne çıksın */
.pricing-card {
    background: #ffffff;
}
/* ============================================================
   SSS
   ============================================================ */
.faq-wrapper { padding: 6rem 2rem; background: var(--white); }
.faq-section { max-width: 1000px; margin: 0 auto; }
details { background: white; margin-bottom: 1.5rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02); overflow: hidden; transition: all 0.3s; }
details:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(197,160,89,0.08); }
details[open] { border-color: var(--primary); box-shadow: 0 10px 30px rgba(197,160,89,0.1); }
summary h3 { font-size: 1.1rem; font-weight: 600; margin: 0; flex: 1; display: flex; align-items: center; }
summary { padding: 1.8rem 2rem; cursor: pointer; color: var(--dark); display: flex; align-items: center; justify-content: space-between; transition: background-color 0.3s; user-select: none; }
summary::-webkit-details-marker { display: none; }
.question-text { display: flex; align-items: center; gap: 15px; width: 100%; }
.question-icon { color: var(--primary); font-size: 1.2rem; background: rgba(197,160,89,0.1); width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; margin-right: 15px; }
.toggle-icon { font-size: 1.2rem; color: var(--text-gray); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
details[open] .toggle-icon { transform: rotate(180deg); color: var(--accent); }
details[open] summary { border-bottom: 1px solid #f9f9f9; }
.faq-answer-wrapper { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s ease-out, opacity 0.5s ease-out; opacity: 0; }
details[open] .faq-answer-wrapper { grid-template-rows: 1fr; opacity: 1; }
.faq-inner { overflow: hidden; padding: 0 2rem; }
.faq-content-text { padding: 2rem 0; color: var(--text-gray); font-size: 1rem; line-height: 1.8; }

/* ============================================================
   REFERANSLAR MARQUEE
   ============================================================ */
.referanslar-marquee-section { padding: 6rem 2rem; background: #f4f7fa; overflow: hidden; }
.marquee-wrapper { overflow: hidden; position: relative; width: 100%; }
.marquee-wrapper::before, .marquee-wrapper::after { content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; pointer-events: none; }
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, #f4f7fa, transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, #f4f7fa, transparent); }
.marquee-track { display: flex; gap: 4rem; animation: marqueeScroll 40s linear infinite; width: max-content; align-items: center; padding: 20px 0; }

/* Kartların Ana Taşıyıcısı (Genişletildi) */
.marquee-item { display: flex; flex-direction: column; align-items: center; gap: 15px; min-width: 200px; flex-shrink: 0; cursor: default; }

/* Yuvarlak İkon Alanı (Büyütüldü ve Renklendirildi) */
.marquee-item .marquee-logo { width: 90px; height: 90px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 2px solid rgba(197, 160, 89, 0.3); transition: all 0.4s ease; }
.marquee-item:hover .marquee-logo { border-color: var(--primary); background: var(--primary); box-shadow: 0 10px 25px rgba(197, 160, 89, 0.2); transform: translateY(-5px); }

/* İkonun Kendisi (Büyütüldü ve Vurgulandı) */
.marquee-item .marquee-logo i { font-size: 2.5rem; color: var(--accent); transition: all 0.4s ease; }
.marquee-item:hover .marquee-logo i { color: var(--white); transform: scale(1.1); }

/* Kurum İsmi (Büyütüldü ve Okunaklı Hale Getirildi) */
.marquee-item span.marquee-name { font-size: 0.95rem; color: var(--dark); font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.4; max-width: 220px; white-space: normal; }

@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
/* Referanslar (Mobil) */
    .referanslar-marquee-section { padding: 3rem 1rem; }
    .marquee-track { gap: 2rem; }
    .marquee-item { min-width: 150px; }
    .marquee-item .marquee-logo { width: 70px; height: 70px; }
    .marquee-item .marquee-logo i { font-size: 1.8rem; }
    .marquee-item span.marquee-name { font-size: 0.8rem; }
/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact-section { padding: 6rem 2rem; max-width: 1300px; margin: 0 auto; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 2rem; margin-bottom: 4rem; }
.info-card { background: white; padding: 2.5rem; text-align: center; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; border-bottom: 4px solid var(--primary); height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.info-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.info-icon { width: 70px; height: 70px; background: #fff8ee; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--primary); font-size: 1.8rem; transition: 0.3s; }
.info-card:hover .info-icon { background: var(--primary); color: white; }
.info-card h3 { margin-bottom: 1rem; font-size: 1.3rem; color: var(--dark); font-weight: 700; }
.info-card p, .info-card a { color: var(--text-gray); font-size: 0.95rem; text-decoration: none; transition: 0.3s; }
.info-card a:hover { color: var(--primary); }
.contact-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 30px rgba(0,0,0,0.05); min-height: 500px; }
.contact-text-wrapper { padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.contact-text-wrapper h2 { color: var(--accent); margin-bottom: 1rem; font-size: 2.2rem; font-weight: 700; line-height: 1.2; }
.contact-text-wrapper p { margin-bottom: 2.5rem; color: var(--text-gray); font-size: 1rem; line-height: 1.7; }
.action-buttons { display: flex; flex-direction: column; gap: 1rem; }
.action-btn { display: flex; align-items: center; justify-content: center; padding: 1.2rem; border-radius: 10px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; font-size: 1.1rem; gap: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.btn-whatsapp-large { background-color: var(--whatsapp); color: white; border: 2px solid var(--whatsapp); }
.btn-whatsapp-large:hover { background-color: #1ebc57; transform: translateY(-3px); }
.btn-call-large { background-color: var(--accent); color: white; border: 2px solid var(--accent); }
.btn-call-large:hover { background-color: var(--accent-light); transform: translateY(-3px); }
.btn-email-large { background-color: transparent; color: var(--text-gray); border: 2px solid #e0e0e0; }
.btn-email-large:hover { border-color: var(--primary); color: var(--primary); background: #fffaf0; }
.map-wrapper { height: 100%; width: 100%; min-height: 400px; background: #eee; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #111827; color: #d1d5db; padding-top: 4rem; font-size: 0.95rem; }
.footer-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr; gap: 2rem; padding: 0 2rem 4rem; }
.footer-col h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 1.2rem; font-weight: 600; border-bottom: 2px solid var(--primary); display: inline-block; padding-bottom: 5px; }
.footer-socials { display: flex; gap: 10px; margin-top: 1rem; }
.footer-socials a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: var(--white); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; text-decoration: none; }
.footer-socials a:hover { background: var(--primary); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #9ca3af; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--white); padding-left: 5px; }
.video-thumbnail { display: block; position: relative; width: 100%; height: 0; padding-bottom: 56.25%; background-color: #000; border-radius: 10px; overflow: hidden; cursor: pointer; border: 1px solid rgba(255,255,255,0.2); }
.video-thumbnail img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: opacity 0.3s; pointer-events: none; }
.video-thumbnail:hover img { opacity: 0.6; }
.play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; background: rgba(255,0,0,0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; }
.copyright { background: #0b101b; text-align: center; padding: 20px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; }
.copyright-content { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.copyright-content a { color: #9ca3af; text-decoration: none; transition: 0.3s; }
.copyright-content a:hover { color: var(--white); text-decoration: underline; }
.copyright-content span { color: #6b7280; }

/* ============================================================
   ALT SAYFALAR (Page Header, 404, 403, Gizlilik vb.)
   ============================================================ */
.page-header { padding-top: 160px; padding-bottom: 60px; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/images/gorsel.webp'); background-size: cover; background-position: center; color: white; text-align: center; }
.page-header h1 { font-size: 3rem; font-weight: 700; margin-bottom: 10px; }
.page-header p { font-size: 1.1rem; opacity: 0.9; }
body[data-page="gizlilik"] .page-header h1, body[data-page="kvkk"] .page-header h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.legal-content { max-width: 1000px; margin: 3rem auto; padding: 2rem; background: white; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.legal-content h1 { font-size: 2rem; color: var(--accent); margin-bottom: 1.5rem; border-bottom: 2px solid var(--primary); padding-bottom: 10px; }
.legal-content h2 { font-size: 1.4rem; color: var(--dark); margin-top: 2rem; margin-bottom: 1rem; font-weight: 700; }
.legal-content p { color: var(--text-gray); margin-bottom: 1rem; text-align: justify; }
.legal-content ul { padding-left: 20px; margin-bottom: 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; color: var(--text-gray); }

/* 404 & 403 */
body[data-page="404"] .error-section, body[data-page="403"] .error-section { flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; padding: 180px 20px 100px; background-size: cover; }
body[data-page="404"] .error-section { background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('/images/gorsel.webp'); }
body[data-page="404"] .error-content h1 { font-size: 8rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 10px; text-shadow: 2px 2px 0px var(--primary); }
body[data-page="404"] .error-content h2 { font-size: 2rem; color: var(--dark); margin-bottom: 1.5rem; }
body[data-page="404"] .error-content p { color: var(--text-gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2.5rem; }
body[data-page="404"] .btn-home { background: var(--accent); color: white; padding: 15px 40px; border-radius: 50px; font-weight: 600; }
body[data-page="404"] .btn-home:hover { background: var(--primary); transform: translateY(-3px); }

body[data-page="403"] .error-section { background: linear-gradient(rgba(248,249,250,0.93), rgba(248,249,250,0.95)), url('/images/gorsel.webp'); }
body[data-page="403"] .error-content { background: var(--white); padding: 50px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-top: 5px solid var(--primary); max-width: 700px; }
.shield-icon { font-size: 4.5rem; color: var(--primary); margin-bottom: 15px; animation: shieldPulse 2s infinite ease-in-out; }
body[data-page="403"] .error-content h1 { font-size: 6rem; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 5px; }
body[data-page="403"] .error-content h2 { font-size: 1.8rem; color: var(--accent); margin-bottom: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
body[data-page="403"] .error-content p { color: var(--text-gray); font-size: 1.1rem; margin: 0 auto 2.5rem; }
body[data-page="403"] .btn-home { background: var(--dark); color: white; padding: 15px 40px; border-radius: 50px; font-weight: 600; }
body[data-page="403"] .btn-home:hover { background: var(--accent); transform: translateY(-3px); }
@keyframes shieldPulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); opacity: 0.8; } 100% { transform: scale(1); } }

/* ============================================================
   MOBİL (max-width: 900px) UYUMLULUKLARI
   ============================================================ */
@media (max-width: 900px) {
    /* Header */
    header { position: relative !important; height: auto; padding: 10px 0; }
    .navbar { flex-wrap: wrap; padding: 0 15px; }
    .menu-toggle { display: block; order: 1; font-size: 1.5rem; color: var(--accent); cursor: pointer; padding: 5px; }
    .logo { order: 2; margin: 0; }
    .logo img { height: 40px; }
    .nav-links { display: none; order: 3; width: 100%; flex-direction: column; background-color: #fff; margin-top: 10px; border-top: 1px solid #f0f0f0; gap: 0; }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; border-bottom: 1px solid #f9f9f9; }
    .nav-links a { display: block; padding: 12px 0; text-align: center; font-size: 1rem; }

    /* Hero */
    .hero-new { min-height: auto; padding-top: 0; }
    .hero-new-inner { flex-direction: column; gap: 2rem; padding: 2rem 0; }
    .hero-new-text h1 { font-size: 2rem; }
    .hero-new-text p { font-size: 1rem; }
    .dual-screen-composition { height: auto; perspective: none; display: flex; flex-direction: column; align-items: center; gap: 40px; }
    .monitor-mockup { position: relative; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; width: 100% !important; max-width: 450px; transform: none !important; }
    .old-uts { z-index: 1; margin-top: 20px; }
    .new-uts { z-index: 2; margin-bottom: 20px; }
    .hero-text-uts { top: -20px; right: 10px; font-size: 2.5rem; transform: none; animation: none;}
    .hero-text-yeni { bottom: auto; top: 45%; left: 0; font-size: 2.2rem; transform: none; animation: none;}
    .surrounding-icons { display: none; }
    .hero-scroll-hint { display: none; }

    /* About (Hakkımızda Çift Kart) */
    .about-new-section { padding: 3rem 1.5rem; }
    .about-new-inner { flex-direction: column; gap: 2rem; }
    .dual-cards-wrapper { flex-direction: column; height: auto; gap: 20px; align-items: stretch; max-width: 450px;}
    .about-new-text h2 { font-size: 1.8rem; }
    .about-feature-cards { grid-template-columns: 1fr; }

    /* Stats Bar */
    .stats-bar-inner { flex-direction: row; gap: 2rem 1rem; justify-content: center; }
    .stats-bar-item { min-width: 45%; } /* Mobilde yan yana 2'li sığdırmak için */
    .sbi-value { font-size: 1.8rem; }

    /* Services */
    .services-section { padding: 3rem 1rem; }
    .services-grid { grid-template-columns: repeat(2,1fr) !important; gap: 10px; }
    .service-card { padding: 1.5rem 0.5rem; }
    .service-icon { width: 50px; height: 50px; font-size: 1.5rem; margin-bottom: 0.8rem; }
    .service-card h3 { font-size: 0.9rem; min-height: 40px; margin-bottom: 0.5rem; }
    .section-header { margin-bottom: 1.5rem; }
    .section-header h2 { font-size: 1.6rem; }

    /* Pricing */
    .pricing-section { padding: 3rem 1.5rem; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }

    /* FAQ */
    .faq-wrapper { padding: 3rem 1.5rem; }

    /* Referanslar */
    .referanslar-marquee-section { padding: 3rem 1rem; }
    .marquee-item .marquee-logo { width: 50px; height: 50px; }
    .marquee-item .marquee-logo i { font-size: 1.1rem; }
    .marquee-item span.marquee-name { font-size: 0.65rem; }

    /* Contact */
    .contact-section { padding: 3rem 1.5rem; }
    .contact-cards, .contact-container { grid-template-columns: 1fr !important; }
    .contact-text-wrapper { padding: 2.5rem 1.5rem; text-align: center; }
    .map-wrapper { height: 350px; min-height: 350px; }

    /* Footer */
    .footer-container { display: grid; grid-template-columns: repeat(2,1fr) !important; gap: 20px 10px; padding: 0 1rem 2rem; text-align: left; }
    .footer-col:first-child, .footer-col:last-child { grid-column: span 2; text-align: center; }
    .footer-socials { justify-content: center; }
    .copyright-content { flex-direction: column; gap: 10px; text-align: center; font-size: 0.75rem; }
    .copyright-content span { display: none; }

    /* Error pages & Alt Sayfalar */
    .page-header { padding-top: 100px; padding-bottom: 40px; }
    .page-header h1 { font-size: 2rem; }
    body[data-page="gizlilik"] .page-header h1, body[data-page="kvkk"] .page-header h1 { font-size: 1.8rem; }
    .legal-content { margin: 1.5rem; padding: 1.5rem; }
    body[data-page="404"] .error-section, body[data-page="403"] .error-section { padding-top: 60px; }
    body[data-page="404"] .error-content h1 { font-size: 5rem; }
    body[data-page="403"] .error-content { padding: 30px 20px; }
    body[data-page="403"] .error-content h1 { font-size: 4rem; }
}
/* ============================================================
   HERO SPLIT BUTTON (İkiye Bölünmüş Özel Buton)
   ============================================================ */
.split-action-btn {
    display: inline-flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
    margin-top: 5px;
}
.split-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(15, 76, 129, 0.2);
}
.split-left {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
/* Üçgen Video İkonu */
.split-left i { font-size: 1.1rem; } 
.split-left:hover { background: var(--accent-light); }

.split-right {
    background: var(--white);
    color: var(--accent);
    text-decoration: none;
    padding: 12px 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.split-right:hover {
    background: #f4f7fa;
    color: var(--primary);
}

/* Mobilde butonlar ekrandan taşmasın diye ufak bir ayar */
@media (max-width: 900px) {
    .split-action-btn { flex-direction: column; border-radius: 15px; width: 100%; text-align: center; }
    .split-left, .split-right { width: 100%; justify-content: center; padding: 15px; }
    .split-right { border-top: 1px solid #eee; }
}
/* Mavi Hero Etiketi */
.hero-tag-blue { background: rgba(15, 76, 129, 0.1) !important; color: var(--accent) !important; }
.hero-tag-blue .hero-tag-dot { background: var(--accent) !important; }

/* Kompakt Split Buton Düzeni */
.hero-new-buttons { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.main-action-wrapper { display: flex; gap: 15px; flex-wrap: wrap; }

.compact-split-btn {
    display: inline-flex;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.1);
    transition: 0.3s;
}

.compact-split-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15, 76, 129, 0.2); }

.compact-split-btn .split-left {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
}

.compact-split-btn .split-left:hover { background: var(--accent-light); }

.compact-split-btn .split-right {
    background: var(--white);
    color: var(--accent);
    padding: 10px 25px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s;
    border-left: 1px solid rgba(15, 76, 129, 0.1);
}

.compact-split-btn .split-right:hover { background: #f4f7fa; color: var(--primary); }

/* Buton Kapsayıcısı: Genişliği butonlar kadar tutar ve içindekileri birbirine göre ortalar */
.hero-new-buttons {
    display: inline-flex; /* Sadece içindeki elemanlar kadar yer kaplar */
    flex-direction: column;
    align-items: center; /* İçindeki main-action-wrapper ve compact-split-btn'i birbirine göre ortalar */
    gap: 15px;
    margin-top: 10px;
}

/* Üstteki iki butonun yan yana dizilimi */
.main-action-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center; /* Kendi içindeki butonları ortalar */
}

/* Bölünmüş butonun kendisi */
.compact-split-btn {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.1);
    width: fit-content; /* Gereksiz genişlemesini önler */
}