﻿/* ============================================================
   style.css — Ev Aletleri Servis Web Sitesi
   Renk: #003B5C (ana) / #D50032 (vurgu) | Font: Inter (Google Fonts)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #003B5C;
  --primary-dark:  #002840;
  --primary-light: #005080;
  --primary-bg:    #e8f1f6;
  --accent:        #D50032;
  --dark:          #1a1a1a;
  --gray:          #555;
  --light-gray:    #f4f4f4;
  --white:         #ffffff;
  --border:        #e0e0e0;
  --shadow:        0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover:  0 8px 32px rgba(0,59,92,0.18);
  --radius:        10px;
  --transition:    0.3s ease;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--gray); }

.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-title span { color: var(--primary); }
.section-subtitle { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; color: var(--gray); }
.section-divider { width: 60px; height: 4px; background: var(--primary); border-radius: 2px; margin: 0.75rem auto 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.6rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--light-gray); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 80px 0; }
.section-bg { background: var(--light-gray); }
.text-center { text-align: center; }

/* TOPBAR */
.topbar { background: var(--primary-dark); color: #eee; font-size: 0.82rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.topbar-left { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.topbar-left a, .topbar-right a { color: #eee; transition: color var(--transition); }
.topbar-left a:hover, .topbar-right a:hover { color: var(--white); }
.topbar-left i { margin-right: 4px; }
.topbar-right { display: flex; gap: 0.75rem; }
.topbar-right a { width: 28px; height: 28px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: background var(--transition); }
.topbar-right a:hover { background: var(--primary-light); }

/* NAVBAR */
.navbar { background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.navbar-logo { display: flex; align-items: center; gap: 0.75rem; }
.navbar-logo img { height: 48px; width: auto; }
.navbar-logo span { font-size: 1.2rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a { padding: 0.5rem 0.85rem; font-weight: 500; font-size: 0.92rem; color: var(--dark); border-radius: 6px; transition: all var(--transition); position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%; height: 2px; background: var(--primary); transition: all var(--transition); border-radius: 1px; }
.nav-menu a:hover::after, .nav-menu a.active::after { left: 10%; right: 10%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu .btn-nav-call { background: var(--primary); color: var(--white); padding: 0.5rem 1.1rem; border-radius: 8px; font-weight: 600; margin-left: 0.5rem; border: 2px solid var(--primary); }
.nav-menu .btn-nav-call:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.nav-menu .btn-nav-call::after { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border-radius: 6px; border: none; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: #111; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; opacity: 0.65; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 39, 64, 0.575) 0%, rgba(0, 20, 40, 0.274) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.25); border-radius: 50px; padding: 0.35rem 1rem; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.92); margin-bottom: 1.25rem; letter-spacing: 0.5px; }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 span { color: var(--accent); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 560px; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; color: rgba(255,255,255,0.6); font-size: 0.75rem; animation: bounce 2s infinite; }
.hero-scroll i { font-size: 1.1rem; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 0; transition: all var(--transition); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); z-index: 1; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-img { display: block; width: 100%; height: 210px; object-fit: cover; flex-shrink: 0; }
.service-card h3 { padding: 1.4rem 1.75rem 0; margin-bottom: 0.75rem; color: var(--dark); }
.service-card p { padding: 0 1.75rem; font-size: 0.9rem; margin-bottom: 1.25rem; flex: 1; }
.service-card .btn { font-size: 0.85rem; padding: 0.55rem 1.2rem; margin: 0 1.75rem 1.75rem; align-self: flex-start; }

/* WHY CHOOSE US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.why-card { text-align: center; padding: 2.25rem 1.5rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); transition: all var(--transition); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-icon { width: 70px; height: 70px; background: var(--primary-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: var(--primary); margin: 0 auto 1.25rem; transition: all var(--transition); }
.why-card:hover .why-icon { background: var(--primary); color: var(--white); }
.why-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.why-card p { font-size: 0.88rem; }

/* ABOUT SECTION */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); }
.about-img-wrap img { width: 100%; height: 400px; object-fit: cover; }
.about-badge-float { position: absolute; bottom: 20px; right: -15px; background: var(--primary); color: var(--white); border-radius: var(--radius); padding: 1rem 1.25rem; text-align: center; box-shadow: var(--shadow-hover); min-width: 120px; }
.about-badge-float strong { display: block; font-size: 1.8rem; line-height: 1; }
.about-badge-float span { font-size: 0.78rem; opacity: 0.9; }
.about-text h2 { margin-bottom: 1rem; }
.about-text h2 span { color: var(--primary); }
.about-features { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.about-feature-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.92rem; }
.about-feature-item i { color: var(--primary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* STATS */
.stats-section { background: var(--primary); color: var(--white); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-item { padding: 1.5rem 1rem; }
.stat-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.stat-icon { font-size: 1.75rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }

/* PRICING */
.pricing-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.pricing-box, .guarantee-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.pricing-box h3, .guarantee-box h3 { display: flex; align-items: center; gap: 0.6rem; color: var(--primary); margin-bottom: 1.25rem; font-size: 1.1rem; }
.pricing-list li, .guarantee-list li { display: flex; gap: 0.65rem; align-items: flex-start; padding: 0.55rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--gray); }
.pricing-list li:last-child, .guarantee-list li:last-child { border-bottom: none; }
.pricing-list i, .guarantee-list i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; transition: all var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-stars { color: #f59e0b; font-size: 0.95rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.9rem; color: var(--gray); font-style: italic; margin-bottom: 1.25rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-detail { font-size: 0.8rem; color: var(--gray); }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%); color: var(--white); padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-banner::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 250px; height: 250px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 2; }

/* FOOTER */
.footer { background: #0f0f0f; color: #ccc; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid #2a2a2a; }
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: #999; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a { width: 36px; height: 36px; background: #1e1e1e; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 0.9rem; transition: all var(--transition); }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1.25rem; position: relative; padding-bottom: 0.75rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--primary); border-radius: 1px; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: #999; font-size: 0.88rem; display: flex; align-items: center; gap: 0.4rem; transition: color var(--transition); }
.footer-links a i { font-size: 0.7rem; color: var(--primary); }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.9rem; font-size: 0.88rem; color: #999; }
.footer-contact-item i { color: var(--primary); margin-top: 2px; width: 16px; flex-shrink: 0; }
.footer-contact-item a { color: #ccc; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; padding: 1.25rem 0; font-size: 0.82rem; color: #666; }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { color: #666; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: var(--white); padding: 70px 0; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.25rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }

/* ABOUT PAGE */
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-page-img { position: relative; }
.about-page-img img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-hover); display: block; }
.about-page-img .about-badge-float { position: absolute; bottom: 24px; right: -16px; background: var(--accent); color: var(--white); border-radius: var(--radius); padding: 1rem 1.4rem; text-align: center; box-shadow: 0 8px 28px rgba(213,0,50,0.35); min-width: 120px; }
.about-page-img .about-badge-float strong { display: block; font-size: 2rem; line-height: 1; font-weight: 800; }
.about-page-img .about-badge-float span { font-size: 0.78rem; opacity: 0.92; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.value-card { background: var(--primary-bg); border-left: 3px solid var(--primary); border-radius: 6px; padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.value-card .vc-icon { width: 36px; height: 36px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; margin-bottom: 0.4rem; }
.value-card h4 { font-size: 0.92rem; margin-bottom: 0.15rem; color: var(--dark); }
.value-card p { font-size: 0.82rem; color: var(--gray); margin: 0; }
/* Mission/Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: stretch; margin-top: 1.5rem; }
.mv-img-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); }
.mv-img-box img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.mv-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.mv-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.mv-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); margin-bottom: 1rem; }
.mv-card-icon.mission { background: var(--primary); }
.mv-card-icon.vision { background: var(--accent); }
.mv-card h3 { color: var(--dark); margin-bottom: 0.75rem; font-size: 1.1rem; }
.mv-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.8; margin: 0; }
/* Process steps */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 1.5rem; position: relative; }
.process-grid::after { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--primary), var(--accent)); z-index: 0; }
.process-step { text-align: center; padding: 0 1rem 2rem; position: relative; z-index: 1; }
.process-num { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: var(--white); font-size: 1.25rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; border: 3px solid var(--white); box-shadow: 0 4px 16px rgba(0,59,92,0.3); }
.process-step h4 { font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--dark); }
.process-step p { font-size: 0.83rem; color: var(--gray); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; text-align: center; transition: all var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-avatar { width: 72px; height: 72px; background: var(--primary-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: var(--primary); margin: 0 auto 1rem; }
.team-card h4 { margin-bottom: 0.25rem; }
.team-card p { font-size: 0.82rem; }

/* SERVICES PAGE */
.services-page-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.service-page-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.service-page-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card-head { background: var(--primary-bg); padding: 2rem 1.75rem 1.25rem; display: flex; align-items: center; gap: 1rem; }
.service-card-head .icon { width: 52px; height: 52px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--white); flex-shrink: 0; }
.service-card-head h3 { color: var(--dark); }
.service-card-body { padding: 1.25rem 1.75rem 1.75rem; }
.service-card-body p { font-size: 0.9rem; margin-bottom: 1rem; }
.service-feature-list { margin-bottom: 1.25rem; }
.service-feature-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--gray); padding: 0.3rem 0; }
.service-feature-list i { color: var(--primary); font-size: 0.8rem; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-box { background: var(--primary); color: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem; }
.contact-info-box h3 { color: var(--white); margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-info-item h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a { color: rgba(255,255,255,0.85); font-size: 0.88rem; }
.contact-info-item a:hover { color: var(--white); }
.contact-social { display: flex; gap: 0.6rem; margin-top: 2rem; }
.contact-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white); transition: background var(--transition); }
.contact-social a:hover { background: rgba(255,255,255,0.3); }
.contact-form-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem 2rem; }
.contact-form-box h3 { margin-bottom: 1.75rem; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--dark); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,59,92,0.12); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }
.map-section { padding: 0 0 80px; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 420px; }
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-placeholder { width: 100%; height: 100%; background: var(--light-gray); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; color: var(--gray); }
.map-placeholder i { font-size: 3rem; color: var(--primary); }

/* POLICY PAGES */
.policy-content { max-width: 860px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem 3rem; }
.policy-content h2 { color: var(--primary); margin: 2rem 0 0.75rem; font-size: 1.15rem; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { margin-bottom: 1rem; font-size: 0.93rem; }
.policy-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content ul li { font-size: 0.93rem; color: var(--gray); margin-bottom: 0.5rem; list-style: disc; }
.policy-content .policy-link { color: var(--primary); text-decoration: none; }
.policy-content .policy-link:hover { text-decoration: underline; }
.icon-mr { margin-right: .5rem; }
.icon-primary { color: var(--primary); }
.btn-full { width: 100%; justify-content: center; }

/* FLOATING CALL BUTTON */
.floating-call { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999; display: flex; align-items: center; gap: 0.6rem; background: var(--primary); color: var(--white); border-radius: 50px; padding: 0 1.25rem 0 0; box-shadow: 0 6px 28px rgba(0,59,92,0.40); transition: all var(--transition); animation: pulse-call 2.5s infinite; text-decoration: none; white-space: nowrap; }
.floating-call .fc-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.45rem; flex-shrink: 0; }
.floating-call .fc-label { font-size: 0.92rem; font-weight: 700; letter-spacing: 0.01em; display: flex; flex-direction: column; line-height: 1.2; }
.floating-call .fc-label small { font-size: 0.75rem; font-weight: 500; opacity: 0.85; }
.floating-call:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,59,92,0.52); color: var(--white); }
@keyframes pulse-call { 0%, 100% { box-shadow: 0 6px 28px rgba(0,59,92,0.40); } 50% { box-shadow: 0 6px 44px rgba(0,59,92,0.62); } }
/* Mobile: sadece yuvarlak ikon göster */
@media (max-width: 576px) {
  .floating-call { padding: 0; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  .floating-call .fc-label { display: none; }
  .floating-call .fc-icon { width: 56px; height: 56px; font-size: 1.5rem; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid, .about-page-grid, .contact-grid, .pricing-content, .mv-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-page-img .about-badge-float { right: 10px; }
  .about-img-wrap img { height: 300px; }
  .about-page-img img { height: 340px; }
  .mv-img-box img { min-height: 240px; }
  .process-grid::after { display: none; }
}
@media (max-width: 768px) {
  .topbar .container { flex-direction: column; text-align: center; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem 1.25rem 1.5rem; box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 0.25rem; border-top: 2px solid var(--primary); }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; padding: 0.6rem 1rem; }
  .nav-menu .btn-nav-call { text-align: center; justify-content: center; }
  .hamburger { display: flex; }
  .hero { min-height: 100vh; }
  .hero-bg img { object-position: center center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-values { grid-template-columns: 1fr; }
  .policy-content { padding: 1.75rem 1.25rem; }
  .desktop-banner { display: none; }
  .legal-bar { display: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 1.65rem; }
  .cta-banner h2 { font-size: 1.5rem; }
}
