/* ===================================================
   DRTEMIZO – PREMIUM DESIGN SYSTEM v1.0
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #0A1628;
  --primary-light: #1A3A5C;
  --primary-mid: #0D2444;
  --accent: #00D4FF;
  --accent-dark: #0099BB;
  --gold: #FFB800;
  --gold-dark: #E6A500;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F9FAFB;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --success: #10B981;
  --error: #EF4444;
  --warning: #F59E0B;
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --gradient-hero: linear-gradient(135deg, #0A1628 0%, #0D2444 50%, #1A3A5C 100%);
  --gradient-accent: linear-gradient(135deg, #00D4FF, #0099BB);
  --gradient-gold: linear-gradient(135deg, #FFB800, #FF8C00);
  --gradient-section: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 105px;
  --container-max: 1280px;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-dark: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-accent: 0 0 30px rgba(0,212,255,0.25);
  --shadow-gold: 0 0 30px rgba(255,184,0,0.3);
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4,0,0.2,1);
  --z-nav: 1000;
  --z-modal: 2000;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { display: flex; flex-direction: column; min-height: 100vh; font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---- LAYOUT ---- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; color: var(--primary); }
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-500); margin-bottom: 3rem; max-width: 800px; }
.section-header { text-align: center; }
.section-header .section-subtitle { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  transition: var(--transition); cursor: pointer; position: relative; overflow: hidden; white-space: nowrap; border: 2px solid transparent;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary { background: var(--gradient-accent); color: var(--primary); box-shadow: var(--shadow-accent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,212,255,0.5); }
.btn-gold { background: var(--gradient-gold); color: var(--primary); box-shadow: var(--shadow-gold); font-weight: 800; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(255,184,0,0.5); }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: white; transform: translateY(-2px); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: white; }
.btn-outline-white:hover { background: white; color: var(--primary); transform: translateY(-2px); }
.btn-whatsapp { background: linear-gradient(135deg,#25D366,#128C7E); color: white; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(37,211,102,0.4); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* ---- NAVBAR ---- */
body.menu-open { overflow: hidden !important; }

.navbar {
  position: fixed; top: 0; left: 0; width: 100%; height: 100px;
  background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; z-index: 1000;
}
.navbar.scrolled { height: 80px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.3s ease; }

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

.nav-logo img { 
  height: 82px !important; 
  width: auto !important; 
  display: block; 
  object-fit: contain !important;
}
.navbar.scrolled .nav-logo img { height: 65px !important; transition: all 0.3s ease; }

.nav-links { display: flex; align-items: center; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links > li > a { 
  color: #050a14; padding: 0.5rem 0.8rem; font-size: 0.98rem; font-weight: 600; 
  text-decoration: none; transition: all 0.3s ease; border-radius: 8px;
}
.nav-links > li > a:hover { background: rgba(0,0,0,0.03); color: var(--color-primary); }

@media (min-width: 769px) {
  .nav-container { display: grid; grid-template-columns: 1.2fr auto 1.2fr; justify-content: center; }
  .nav-logo { justify-self: start; }
  .nav-actions { justify-self: end; }
  .nav-links { flex: none; }
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; -webkit-tap-highlight-color: transparent; }
.nav-logo:active img { transform: scale(0.96); }
.nav-links > li { position: relative; }
.nav-links > li > a.active { color: var(--accent-dark); background: rgba(0, 212, 255, 0.08); }

/* YENİ NESİL MENÜ OKU (GLOBAL) */
.menu-arrow {
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
  transition: var(--transition);
  flex-shrink: 0;
  vertical-align: middle;
  margin-top: -4px;
}
.has-dropdown:hover > a .menu-arrow,
.has-dropdown.open > a .menu-arrow {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-10px);
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 0.5rem; min-width: 220px;
  opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown li a { display: block; padding: 0.625rem 1rem; color: var(--gray-700); font-size: 0.875rem; border-radius: var(--radius-md); transition: var(--transition); font-weight: 500; }
.dropdown li a:hover { background: var(--gray-50); color: var(--accent-dark); padding-left: 1.5rem; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; min-width: max-content; }
.nav-whatsapp {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3); color: #25D366;
  border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 600; transition: var(--transition);
}
.nav-whatsapp:hover { background: #25D366; color: white; }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--gradient-gold); color: var(--primary);
  font-family: var(--font-heading); font-weight: 800;
  padding: 0.625rem 1.5rem; border-radius: var(--radius-full);
  font-size: 0.9rem; transition: var(--transition); box-shadow: var(--shadow-gold);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(255,184,0,0.5); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Sadece mobil menüde görünmesi gereken öğeleri masaüstünde gizle */
.mobile-menu-cta, .nav-actions-mobile, .mobile-search-bar { display: none !important; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden;
  padding-top: calc(var(--nav-height) + 2rem); padding-bottom: 4rem;
}
.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10,22,40,0.30); z-index: 1; /* Koyu lacivert filtre - azaltıldı */
}

.hero-glass-box {
  background: rgba(10, 22, 40, 0.35); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 32px; padding: 2.5rem 3rem;
  max-width: 1000px; margin: 0 auto; text-align: center;
  animation: fade-up 0.8s ease both;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; justify-content: center;
  background: rgba(0,212,255,0.15); border: 1px solid rgba(0,212,255,0.3);
  color: var(--accent); padding: 0.6rem 1.5rem; border-radius: var(--radius-full);
  font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 900; color: white; line-height: 1.05; margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.8);
  margin: 0 auto 1.5rem; max-width: 620px;
}
.hero-gateways {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  max-width: 800px; margin: 0 auto 1.5rem;
}
.gateway-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl); padding: 1.25rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  text-align: center; transition: var(--transition-slow); cursor: pointer; position: relative; overflow: hidden;
}

.gateway-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  transition: var(--transition); border-radius: inherit; pointer-events: none;
}
.gateway-home::before { background: linear-gradient(135deg,rgba(0,212,255,0.12),rgba(0,212,255,0.03)); border: 1px solid rgba(0,212,255,0.25); }
.gateway-car::before { background: linear-gradient(135deg,rgba(255,184,0,0.12),rgba(255,184,0,0.03)); border: 1px solid rgba(255,184,0,0.25); }
.gateway-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,0.4); }
.gateway-card:hover::before { opacity: 1; }
.gateway-icon { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.gateway-icon img { width: auto; height: 72px; max-width: 160px; object-fit: contain; transition: var(--transition); filter: drop-shadow(0 0 16px rgba(0,212,255,0.4)); }
.gateway-car .gateway-icon img { filter: drop-shadow(0 0 16px rgba(255,184,0,0.4)); }
.gateway-card:hover .gateway-icon img { transform: scale(1.1); }
.gateway-title { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 700; color: white; position: relative; z-index: 1; }
.gateway-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.gateway-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--accent); font-size: 1rem; transition: var(--transition); position: relative; z-index: 1;
}
.gateway-car .gateway-arrow { color: var(--gold); }
.gateway-card:hover .gateway-arrow { transform: translateX(4px); background: var(--accent); color: var(--primary); }
.gateway-car:hover .gateway-arrow { background: var(--gold); color: var(--primary); }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fade-up 0.6s ease 0.4s both; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.4); font-size: 0.8rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; animation: bounce 2s infinite; }
.scroll-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 50%; }

/* ---- CAMPAIGN BANNER ---- */
.campaign-banner {
  background: linear-gradient(135deg, #0099BB 0%, #00D4FF 50%, #0099BB 100%);
  background-size: 200% auto; animation: gradient-shift 4s ease infinite;
  padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.2);
}
.campaign-inner { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; text-align: center; }
.campaign-badge { background: rgba(0,0,0,0.2); color: white; padding: 0.2rem 0.75rem; border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.campaign-text { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: white; }
.campaign-text span { color: rgba(255,255,255,0.85); font-weight: 400; font-size: 0.875rem; display: block; }
.campaign-link-btn { background: white; color: var(--primary); padding: 0.5rem 1.25rem; border-radius: var(--radius-full); font-weight: 800; font-size: 0.875rem; transition: var(--transition); white-space: nowrap; }
.campaign-link-btn:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

/* ---- STATS ---- */
.stats-section { padding: 4rem 0; background: var(--primary); position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,212,255,0.04) 0%, transparent 70%); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; z-index: 1; }
.stat-card {
  text-align: center; padding: 2rem 1rem;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl); backdrop-filter: blur(10px); transition: var(--transition);
}
.stat-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-4px); }
.stat-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; filter: drop-shadow(0 0 12px rgba(0,212,255,0.4)); }
.stat-number-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-num-suffix { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--accent); }
.stat-label { color: white; font-size: 0.95rem; font-weight: 500; font-family: var(--font-heading); margin-top: 0.75rem; letter-spacing: 0.5px; }

/* ---- SERVICES ---- */
.services-section { padding: 5rem 0; background: var(--gradient-section); }
.services-tabs { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: var(--radius-full);
  border: 2px solid var(--gray-200); background: white;
  color: var(--gray-600); font-family: var(--font-heading);
  font-weight: 600; cursor: pointer; transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }
.tab-btn img { width: 28px; height: 28px; object-fit: contain; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.service-card {
  background: white; border-radius: var(--radius-xl); padding: 2rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
  transition: var(--transition-slow); position: relative; overflow: hidden;
}
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gradient-accent); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(0,212,255,0.2); }
.service-card:hover::after { transform: scaleX(1); }
.service-img { width: calc(100% + 4rem); max-width: none; height: 220px; object-fit: cover; margin: -2rem -2rem 1.5rem -2rem; border-bottom: 1px solid var(--gray-100); }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg,#EFF6FF,#DBEAFE); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1.25rem; }
.service-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.service-desc { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.service-price { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1rem; }

/* ---- HOW IT WORKS ---- */
.how-section { padding: 5rem 0; background: var(--primary); position: relative; overflow: hidden; }
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; z-index: 1; }
.how-item { text-align: center; position: relative; }
.how-item:not(:last-child)::after { content: '→'; position: absolute; top: 28px; right: -20px; font-size: 1.5rem; color: rgba(0,212,255,0.25); }
.how-step { width: 60px; height: 60px; background: var(--gradient-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--primary); margin: 0 auto 1.25rem; }
.how-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 0.75rem; }
.how-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; }

/* ---- DISTRICTS ---- */
.districts-section { padding: 5rem 0; background: white; }
.districts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-bottom: 3rem; }
.district-featured {
  background: var(--gradient-hero); border-radius: var(--radius-xl); padding: 2rem;
  display: flex; align-items: center; gap: 1.5rem; transition: var(--transition);
}
.district-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.district-badge { background: var(--gradient-gold); color: var(--primary); padding: 0.25rem 0.75rem; border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; display: inline-block; }
.district-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 0.25rem; }
.district-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.districts-other { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.district-tag { background: var(--gray-100); color: var(--gray-700); padding: 0.5rem 1.25rem; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; transition: var(--transition); }
.district-tag:hover { background: var(--primary); color: white; transform: scale(1.05); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 5rem 0; background: var(--gradient-section); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card { background: white; border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.author-name { font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.author-district { font-size: 0.8rem; color: var(--gray-400); }

/* ---- SEARCH BAR ---- */
.search-section { padding: 2.5rem 0; background: white; border-bottom: 1px solid var(--gray-100); }
.search-wrapper { max-width: 680px; margin: 0 auto; position: relative; }
.search-input {
  width: 100%; padding: 1rem 1.5rem 1rem 3.5rem;
  border: 2px solid var(--gray-200); border-radius: var(--radius-full);
  font-size: 1rem; transition: var(--transition); background: var(--gray-50);
}
.search-input:focus { outline: none; border-color: var(--accent); background: white; box-shadow: var(--shadow-accent); }
.search-icon { position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); color: var(--gray-400); font-size: 1.1rem; pointer-events: none; }
.search-results { position: absolute; top: calc(100% + 0.5rem); left: 0; right: 0; background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); z-index: 100; display: none; overflow: hidden; }
.search-results.show { display: block; }
.search-result-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1.25rem; transition: var(--transition); cursor: pointer; border-bottom: 1px solid var(--gray-50); }
.search-result-item:hover { background: var(--gray-50); }
.search-result-item:last-child { border-bottom: none; }
.search-result-icon { width: 36px; height: 36px; background: linear-gradient(135deg,#EFF6FF,#DBEAFE); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.search-result-name { font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.search-result-cat { font-size: 0.75rem; color: var(--gray-400); }

/* ---- BLOG PREVIEW ---- */
.blog-section { padding: 5rem 0; background: white; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card { background: white; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); transition: var(--transition-slow); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.blog-img { height: 200px; background: var(--gradient-hero); position: relative; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-cat { position: absolute; bottom: 1rem; left: 1rem; background: var(--gradient-accent); color: var(--primary); padding: 0.25rem 0.75rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; }
.blog-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--gray-400); margin-bottom: 0.75rem; }
.blog-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; line-height: 1.4; }
.blog-excerpt { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1.25rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero { background: var(--gradient-hero); padding: 8rem 0 4rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle,rgba(0,212,255,0.06),transparent 70%); border-radius: 50%; }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }
.page-title { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; color: white; margin-bottom: 1rem; }
.page-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; }

/* ---- CTA SECTION ---- */
.cta-section { padding: 5rem 0; background: var(--gradient-hero); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center,rgba(0,212,255,0.08),transparent 70%); }
.cta-content { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-heading); font-size: clamp(1.75rem,4vw,3rem); font-weight: 900; color: white; margin-bottom: 1rem; }
.cta-text { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- PRICE CALCULATOR ---- */
.calc-section { padding: 5rem 0; background: var(--gradient-section); }
.calc-container { max-width: 700px; margin: 0 auto; }
.calc-card { background: white; border-radius: var(--radius-2xl); box-shadow: var(--shadow-xl); overflow: hidden; }
.calc-header { background: var(--gradient-hero); padding: 2rem 2.5rem; }
.calc-header h2 { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: white; margin-bottom: 0.5rem; }
.calc-header p { color: rgba(255,255,255,0.7); }
.calc-steps-indicator { display: flex; gap: 0; margin-bottom: 2rem; overflow: hidden; border-radius: var(--radius-full); }
.step-dot { flex: 1; height: 4px; background: rgba(255,255,255,0.2); transition: var(--transition); }
.step-dot.done { background: var(--accent); }
.step-dot.active { background: var(--gold); }
.calc-body { padding: 2.5rem; }
.calc-step { display: none; }
.calc-step.active { display: block; }
.step-label { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.step-sublabel { color: var(--gray-500); font-size: 0.875rem; margin-bottom: 1.5rem; }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.option-card {
  border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.25rem;
  text-align: center; cursor: pointer; transition: var(--transition); background: white;
}
.option-card:hover { border-color: var(--accent); background: #F0FEFF; }
.option-card.selected { border-color: var(--accent); background: linear-gradient(135deg,rgba(0,212,255,0.08),rgba(0,212,255,0.02)); }
.option-card .opt-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.option-card .opt-name { font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 1rem; }
.option-card .opt-desc { font-size: 0.8rem; color: var(--gray-400); margin-top: 0.25rem; }
.form-select { width: 100%; padding: 0.875rem 1.25rem; border: 2px solid var(--gray-200); border-radius: var(--radius-lg); font-size: 1rem; transition: var(--transition); background: white; cursor: pointer; }
.form-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); }
.addon-grid { display: grid; gap: 0.75rem; }
.addon-item { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border: 2px solid var(--gray-200); border-radius: var(--radius-lg); cursor: pointer; transition: var(--transition); }
.addon-item.selected { border-color: var(--success); background: rgba(16,185,129,0.05); }
.addon-item-info { display: flex; align-items: center; gap: 0.75rem; }
.addon-icon { font-size: 1.5rem; }
.addon-name { font-weight: 600; color: var(--primary); font-size: 0.95rem; }
.addon-desc { font-size: 0.8rem; color: var(--gray-400); }
.addon-price { font-family: var(--font-heading); font-weight: 700; color: var(--accent-dark); }
.calc-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-100); }
.price-result-box { background: var(--gradient-hero); border-radius: var(--radius-xl); padding: 2rem; text-align: center; margin-bottom: 1.5rem; }
.price-result-label { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 0.5rem; }
.price-result-amount { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: var(--gold); }
.price-result-note { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 0.5rem; }
.price-summary { background: var(--gray-50); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1.5rem; }
.price-summary-item { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.875rem; color: var(--gray-600); }
.price-summary-item.total { font-weight: 700; color: var(--primary); font-size: 1rem; border-top: 1px solid var(--gray-200); margin-top: 0.5rem; padding-top: 0.75rem; }

/* ---- GALLERY ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.gallery-item::after { content: '🔍'; position: absolute; inset: 0; background: rgba(10,22,40,0.6); display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: 0; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; color: var(--gray-700); margin-bottom: 0.5rem; font-size: 0.9rem; }
.form-input { width: 100%; padding: 0.875rem 1.25rem; border: 2px solid var(--gray-200); border-radius: var(--radius-lg); font-size: 1rem; transition: var(--transition); background: white; }
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- FOOTER ---- */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; margin-top: auto; width: 100%; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .footer-logo { display: inline-block; margin-bottom: 1.25rem; }
.footer-brand .footer-logo img { height: 85px; width: auto; max-width: 100%; object-fit: contain; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); color: rgba(255,255,255,0.6); }
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); transform: translateY(-2px); }
.social-btn.wa:hover { background: #25D366; border-color: #25D366; color: white; }
.footer-col-title { font-family: var(--font-heading); font-weight: 700; color: white; font-size: 1rem; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 0.25rem; }
.footer-contact-item { display: flex; gap: 0.625rem; font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 0.75rem; align-items: flex-start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---- MODAL ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); z-index: var(--z-modal); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; visibility: hidden; transition: var(--transition); }
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-box { background: white; border-radius: var(--radius-2xl); max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto; animation: scale-in 0.3s ease; }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: white; font-size: 1.25rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { background: rgba(255,255,255,0.2); }

/* ---- WHATSAPP FLOAT ---- */
/* ---- WHATSAPP FLOAT (PREMIUM RE-DESIGN) ---- */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 9999;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white; height: 60px; min-width: 60px;
  border-radius: 30px; display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 10px 30px rgba(18, 140, 126, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.2); padding: 0 10px;
  overflow: hidden;
}

.wa-icon-wrap {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.4s;
}

.wa-label {
  white-space: nowrap; font-size: 0.9rem; font-weight: 800;
  max-width: 0; opacity: 0; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 0; letter-spacing: 0.3px;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(18, 140, 126, 0.5);
  padding: 0 25px 0 15px;
}

.whatsapp-float:hover .wa-label {
  max-width: 120px; opacity: 1; margin-left: 10px;
}

.whatsapp-float:hover .wa-icon-wrap { transform: rotate(15deg); }

.wa-close {
  position: absolute; top: -5px; right: -5px;
  background: #ff4d4d; color: white; border: 2px solid white;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; cursor: pointer; transition: 0.3s;
  opacity: 0; transform: scale(0);
}

.whatsapp-float:hover .wa-close { opacity: 1; transform: scale(1); top: 2px; right: 2px; }

/* Pulse Animation */
.whatsapp-float::before {
  content: ''; position: absolute; inset: -4px;
  border: 2px solid #25D366; border-radius: 40px;
  animation: wa-pulse 2s infinite; opacity: 0;
}

@keyframes wa-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-float { 
    bottom: 20px; right: 20px; height: 48px; min-width: 48px; 
    padding: 0 12px; border-radius: 24px;
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.3);
  }
  .wa-label { 
    display: block !important; max-width: 100px !important; 
    opacity: 1 !important; font-size: 0.8rem !important; 
    margin-left: 8px !important;
  }
  .wa-icon-wrap svg { width: 22px; height: 22px; }
  .wa-close { 
    opacity: 1; transform: scale(1); 
    top: -8px; right: -8px; /* Slightly adjusted to not feel 'overflowing' the screen edge */
  }
  /* Ensure it doesn't overflow narrow screens */
  .whatsapp-float { max-width: calc(100vw - 40px); }
}

/* ---- MAINTENANCE MODE ---- */
.service-type-card.disabled-service {
  position: relative; cursor: pointer !important; filter: grayscale(0.5); opacity: 0.9; overflow: hidden; transition: var(--transition);
}
.maintenance-overlay {
  position: absolute; inset: 0; background: rgba(10, 22, 40, 0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 10; padding: 1rem; text-align: center;
  animation: fadeIn 0.3s ease; transition: all 0.2s ease;
}
.service-type-card.disabled-service:hover .maintenance-overlay {
  background: rgba(10, 22, 40, 0.85);
}
.maintenance-content { 
  display: flex; align-items: center; gap: 1.5rem; color: white; transition: transform 0.2s; 
}
.service-type-card.disabled-service:hover .maintenance-content { transform: scale(1.02); }
.maintenance-content .m-icon { font-size: 2.2rem; filter: drop-shadow(0 0 10px rgba(255,184,0,0.4)); }
.maintenance-content .m-body { text-align: left; display: flex; flex-direction: column; gap: 0.2rem; }
.maintenance-content .m-text { font-weight: 900; font-size: 1rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); line-height: 1.1; }
.maintenance-content .m-info-btn { 
  display: inline-block; width: fit-content; margin-top: 4px; padding: 5px 14px; background: white; color: var(--primary); 
  border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 800; box-shadow: var(--shadow-sm);
  text-transform: none; letter-spacing: 0;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- ADMIN PANEL ---- */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 260px; background: var(--primary); color: white; flex-shrink: 0; }
.admin-main { flex: 1; background: var(--gray-50); overflow: auto; }
.admin-nav-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1.5rem; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); cursor: pointer; border-left: 3px solid transparent; }
.admin-nav-item:hover, .admin-nav-item.active { color: white; background: rgba(0,212,255,0.1); border-left-color: var(--accent); }
.admin-content { padding: 2rem; }
.admin-card { background: white; border-radius: var(--radius-xl); padding: 1.5rem; box-shadow: var(--shadow-md); margin-bottom: 1.5rem; }
.admin-card-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gray-100); }

/* ---- ANIMATIONS ---- */
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes fade-in-slide { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes orb-float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
@keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
@keyframes scale-in { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes bounce-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes count-up { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: repeat(2,1fr); }
  .how-item:not(:last-child)::after { display: none; }
}
@media (max-width: 768px) {
  .navbar { height: 80px !important; background: #ffffff !important; border-bottom: 1px solid rgba(0,0,0,0.1) !important; }
  .nav-logo img { height: 60px !important; }
  
  .nav-toggle span { background: #050a14 !important; }

  .nav-links {
    position: fixed; top: 80px !important; left: 0; width: 100%; bottom: 0;
    height: auto !important;
    background: #050a14 !important; flex-direction: column; padding: 2rem;
    transform: translateX(100%); transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    gap: 0; align-items: flex-start; overflow-y: auto;
    z-index: 999;
  }
  .nav-links a { color: #ffffff !important; font-size: 1.25rem; padding: 1rem 0 !important; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }

  .nav-actions-mobile { display: flex !important; align-items: center; gap: 1rem; }
  .nav-search-toggle { background: none; border: none; color: white; cursor: pointer; padding: 5px; }
  
  .mobile-search-bar {
    display: block !important;
    position: absolute; top: 100%; left: 0; width: 100%; background: #050a14;
    padding: 0.8rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: all 0.3s ease; z-index: 999;
  }
  .mobile-search-bar.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-search-bar .search-wrapper { width: 100%; position: relative; }
  .mobile-search-bar .search-input { 
    width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: white; padding: 10px 15px; border-radius: 10px; font-size: 0.9rem;
  }

  .nav-actions { display: none !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
  .stat-card { padding: 1.2rem !important; }
  .stat-icon svg { width: 32px; height: 32px; }
  .stat-number { font-size: 1.5rem !important; }
  .stat-label { font-size: 0.75rem !important; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: #050a14 !important;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem 2rem !important;
    margin: 0;
    list-style: none;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    pointer-events: none;
    visibility: hidden;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 0.5rem;
  }
  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }
  
  /* Navigasyon tıklandığında menü anında kapansın, geçiş beklenmesin */
  body.menu-navigating .nav-links {
    transition: none !important;
    transform: translateX(100%) !important;
    visibility: hidden !important;
  }
  
  .nav-logo, .nav-toggle {
    z-index: 10002;
  }

  .nav-links > li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    display: block;
  }
  .nav-links > li:last-child { border-bottom: none; }

  /* Menü ana öğeleri – beyaz, büyük, okunması kolay */
  .nav-links > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 1rem; font-size: 1.1rem; font-weight: 600;
    color: rgba(255,255,255,0.95) !important;
    width: 100%; text-decoration: none;
  }
  .nav-links > li > a:hover, .nav-links > li > a.active {
    color: var(--accent) !important;
    background: rgba(0,212,255,0.05) !important;
  }

  /* Dropdown ok işareti */
  .has-dropdown > a::after {
    display: none !important;
  }
  .has-dropdown.open > a::after { display: none !important; }

  /* Dropdown alt menü */
  .dropdown {
    position: static; transform: none !important;
    opacity: 0; visibility: hidden; max-height: 0; overflow: hidden;
    background: transparent;
    box-shadow: none; border-radius: 0;
    border: none;
    padding: 0; margin: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .has-dropdown.open .dropdown {
    opacity: 1; visibility: visible; max-height: 800px;
  }
  /* Hover ile açılmasını engelle (sadece tıkla açılsın) */
  .has-dropdown:not(.open):hover .dropdown { opacity: 0 !important; visibility: hidden !important; max-height: 0 !important; }

  /* Dropdown içi link rengi */
  .dropdown li a {
    color: rgba(255,255,255,0.7) !important;
    padding: 0.8rem 1rem 0.8rem 2.5rem !important;
    font-size: 0.95rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.03) !important;
    display: flex; align-items: center; gap: 0.75rem;
    width: 100%;
  }
  .dropdown li a:hover { color: white !important; background: rgba(0,212,255,0.1) !important; padding-left: 3rem !important; }
  
  /* Menü oku */
  .nav-icon { background: rgba(0,212,255,0.12) !important; }

  /* Mobil menü alt CTA butonları */
  .mobile-menu-cta { 
    display: flex !important; flex-direction: column; gap: 1rem; padding: 1.5rem 0; 
    border-top: 1px solid rgba(255,255,255,0.05); margin-top: 1rem;
  }
  .mobile-menu-cta a { 
    width: 100% !important; justify-content: center !important; 
    padding: 12px !important; border-radius: 50px !important; 
  }
  
  /* Menü açıkken yüzen butonu gizle */
  body.menu-open .whatsapp-float { display: none !important; }
  .nav-toggle { display: flex; }
  .hero-gateways { grid-template-columns: 1fr; max-width: 400px; }
  .services-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .districts-grid { grid-template-columns: 1fr; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-nav-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: 5rem;
  }

  
}


/* ============================================================
   GOLDEN PREMIUM FOOTER & MODAL STYLES (RESTORED)
   ============================================================ */
.footer {
  background: #0a0f1a;
  color: white;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.4fr 1.5fr; /* Marka küçüldü, diğerleri büyüdü */
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo img {
  height: 65px; /* Logo biraz küçültüldü */
  width: auto;
  object-fit: contain;
}


.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-col-box {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.footer-col-box:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.3rem; /* Büyütüldü */
  font-weight: 800;
  color: white;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Dekoratif Alt Çizgi */
.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: var(--gradient-gold); /* Sitedeki canlı turuncu/gold gradyan */
  border-radius: 2px;
}



.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.fl {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  margin-left: -0.6rem;
  font-size: 0.9rem;
}

.fl::before {
  content: '›';
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: bold;
  margin-right: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  display: inline-block;
  width: 0;
  overflow: hidden;
}

.fl:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  padding-left: 1rem;
}

.fl:hover::before {
  opacity: 1;
  transform: translateX(0);
  width: 14px;
  margin-right: 0.5rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
  align-items: center;
}

.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: white;
}

/* Instagram Badges (Simple Single Line) */
.footer-social-grid {
  display: flex !important;
  flex-direction: column !important; /* HER SATIRDA 1 TANE (ALT ALTA) */
  gap: 10px !important;
  margin-top: 1.5rem !important;
}


.ig-badge {
  display: flex !important;
  flex-direction: row !important; /* İkon ve yazı YAN YANA */
  align-items: center !important; /* TAM ORTALI */
  gap: 8px !important;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease;
}


.ig-badge:hover {
  color: white !important;
  transform: translateX(5px);
}

.ig-badge svg {
  flex-shrink: 0 !important;
  transition: transform 0.3s ease;
}

.ig-badge:hover svg {
  transform: scale(1.1);
}




/* Specific Badge Accents */
.ig-genel:hover { border-color: rgba(193, 53, 132, 0.4); }
.ig-ev:hover { border-color: rgba(253, 29, 29, 0.4); }
.ig-araba:hover { border-color: rgba(252, 176, 69, 0.4); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}


.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: white;
}

/* Policy Modal (Premium Blur) */
.policy-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-modal-overlay.active {
  opacity: 1; visibility: visible;
}

.policy-modal-card {
  background: white;
  width: 100%; max-width: 750px;
  max-height: 85vh;
  border-radius: 32px;
  box-shadow: 0 50px 120px rgba(0,0,0,0.6);
  display: flex; flex-direction: column;
  transform: translateY(40px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.policy-modal-overlay.active .policy-modal-card {
  transform: translateY(0) scale(1);
}

.policy-modal-header {
  padding: 1.8rem 2.5rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}

.policy-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.policy-close {
  background: var(--gray-100); border: none;
  width: 40px; height: 40px; border-radius: 14px;
  font-size: 1.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); transition: all 0.3s;
}

.policy-close:hover {
  background: #ff4d4d; color: white;
  transform: rotate(90deg);
}

.policy-modal-body {
  padding: 2.5rem;
  overflow-y: auto;
  line-height: 1.8;
  color: var(--gray-700);
  font-size: 1.05rem;
}

.policy-modal-footer {
  padding: 1.5rem 2.5rem;
  border-top: 1px solid var(--gray-100);
  text-align: right;
  background: var(--gray-50);
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .footer { padding-top: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-col-box { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
  .nav-links { padding-top: 0 !important; }
}

@media (max-width: 480px) {
  .policy-modal-overlay { padding: 1rem; }
  .policy-modal-card { border-radius: 24px; }
  .policy-modal-header { padding: 1.2rem 1.5rem; }
  .policy-modal-body { padding: 1.5rem; }
}

.district-featured:hover .district-icon svg { transform: scale(1.1); filter: drop-shadow(0 0 10px rgba(255,184,0,0.5)); transition: var(--transition); }
.district-tag { background: white; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.85rem; color: var(--gray-600); border: 1px solid var(--gray-100); transition: all 0.2s; white-space: nowrap; text-decoration: none; display: inline-block; }
.district-tag:hover { background: rgba(0,212,255,0.1); color: var(--accent-dark); border-color: rgba(0,212,255,0.3); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,212,255,0.1); }


