/* =============================================
   DALAMAN TEKNİK SERVİS — WordPress Tema CSS
   ============================================= */

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

:root {
  --primary: #0D1E4A;
  --primary-dark: #091535;
  --accent: #F97300;
  --accent-dark: #E06500;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f7;
  --gray-200: #e2e6ef;
  --gray-400: #9aa3b8;
  --gray-600: #5a6480;
  --gray-800: #1e2a48;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --shadow-sm: 0 1px 3px rgba(13,30,74,0.08);
  --shadow-md: 0 4px 16px rgba(13,30,74,0.1);
  --shadow-lg: 0 8px 32px rgba(13,30,74,0.14);
  --shadow-xl: 0 16px 48px rgba(13,30,74,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--gray-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 28px; height: 52px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 15px; cursor: pointer; border: none;
  transition: all 0.25s ease; text-decoration: none;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 8px 24px rgba(13,30,74,0.25);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(13,30,74,0.3); }
.btn-lg { height: 60px; padding: 0 36px; font-size: 17px; }
.btn-whatsapp {
  background: var(--green-500); color: #fff;
  box-shadow: 0 8px 24px rgba(34,197,94,0.35);
}
.btn-whatsapp:hover { background: var(--green-600); transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--primary);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}
.btn-white:hover { background: #f0f2f8; transform: scale(1.04); }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }

/* ── TICKER BANNER ── */
.ticker-wrap {
  background: var(--primary);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 100;
}
.ticker-track {
  display: inline-block;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 40px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
}
.ticker-item svg { color: var(--accent); flex-shrink: 0; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAVBAR ── */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: #fff;
  padding: 18px 0;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(13,30,74,0.1);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.95);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--gray-600); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta a { display: flex; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--primary); }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; width: 100%;
  background: #fff; border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(13,30,74,0.1);
  padding: 16px 0; z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; padding: 8px 24px; gap: 4px; }
.mobile-menu li a { display: block; padding: 10px 8px; font-size: 15px; font-weight: 600; color: var(--gray-600); border-radius: 8px; }
.mobile-menu li a:hover { background: var(--gray-100); color: var(--primary); }
.mobile-menu .mobile-cta { padding: 12px 24px; }
.mobile-menu .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; background: var(--primary); color: #fff; border-radius: var(--radius-full); font-weight: 700; font-size: 16px; }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── HERO ── */
.hero-section {
  position: relative; background: var(--gray-50);
  padding: 100px 0 120px; overflow: hidden;
}
.hero-blob-1 {
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(13,30,74,0.04); filter: blur(60px); pointer-events: none;
}
.hero-blob-2 {
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(249,115,0,0.04); filter: blur(60px); pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-full); padding: 8px 18px;
  font-size: 13px; font-weight: 700; color: var(--primary);
  box-shadow: var(--shadow-sm); margin-bottom: 28px;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.2)} }
.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--primary); margin-bottom: 20px;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  font-size: clamp(16px, 2vw, 20px); color: var(--gray-600);
  line-height: 1.7; max-width: 600px; margin: 0 auto 36px;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-bottom: 48px;
}
.hero-checks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 32px;
  font-size: 14px; font-weight: 600; color: var(--gray-600);
}
.hero-check { display: flex; align-items: center; gap: 8px; }
.hero-check-icon { color: var(--accent); flex-shrink: 0; }

/* ── SERVICES ── */
.services-section { padding: 96px 0; background: #fff; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-label {
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 900;
  color: var(--primary); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-desc { font-size: 17px; color: var(--gray-600); line-height: 1.7; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.35s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.service-card-img { position: relative; height: 220px; overflow: hidden; background: var(--gray-100); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: rgba(13,30,74,0.12); transition: all 0.3s ease;
  z-index: 1;
}
.service-card:hover .service-card-img-overlay { background: transparent; }
.service-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.service-card-title { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.service-card-desc { font-size: 15px; color: var(--gray-600); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.service-card-cta { font-size: 13px; font-weight: 800; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.service-card-cta:hover { color: var(--primary); }
.service-card-cta svg { transition: transform 0.2s; }
.service-card:hover .service-card-cta svg { transform: translateX(4px); }

/* ── WHY US ── */
.why-section {
  padding: 96px 0; background: var(--primary);
  color: #fff; position: relative; overflow: hidden;
}
.why-blob-1 {
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.06); filter: blur(60px); pointer-events: none;
}
.why-blob-2 {
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(249,115,0,0.15); filter: blur(60px); pointer-events: none;
}
.why-section .section-label { color: var(--accent); }
.why-section .section-title { color: #fff; }
.why-section .section-desc { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; position: relative; z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); padding: 32px;
  transition: background 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.1); }
.why-icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; box-shadow: 0 8px 24px rgba(249,115,0,0.3);
}
.why-icon svg { width: 28px; height: 28px; color: #fff; }
.why-card-title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.why-card-desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── SERVICE AREAS ── */
.areas-section { padding: 96px 0; background: rgba(241,243,247,0.6); }
.areas-inner { display: flex; flex-wrap: wrap; gap: 60px; align-items: center; }
.areas-left { flex: 1 1 400px; min-width: 280px; }
.areas-label { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.areas-title { font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: var(--primary); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.areas-desc { font-size: 17px; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.area-chip {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.area-chip-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(13,30,74,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.area-chip-icon svg { width: 16px; height: 16px; color: var(--primary); }
.area-chip-name { font-size: 15px; font-weight: 700; color: var(--primary); }
.areas-right { flex: 1 1 340px; min-width: 280px; }
.areas-map-card {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200); background: rgba(13,30,74,0.03);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.areas-map-dots {
  position: absolute; inset: 0; opacity: 0.08;
  background-image: radial-gradient(circle at 2px 2px, var(--primary) 1px, transparent 0);
  background-size: 24px 24px;
}
.areas-map-content { position: relative; z-index: 1; text-align: center; padding: 32px; }
.areas-map-icon { width: 80px; height: 80px; color: var(--accent); margin: 0 auto 20px; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.areas-map-title { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.areas-map-sub { font-size: 15px; color: var(--gray-600); }

/* ── CONTACT CTA ── */
.contact-section { padding: 96px 0; background: #fff; }
.cta-card {
  background: var(--primary); border-radius: 40px;
  padding: 64px 32px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 768px) { .cta-card { padding: 80px 60px; } }
.cta-blob-1 { position: absolute; top: 0; right: 0; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,0.06); filter: blur(40px); transform: translate(50%,-50%); }
.cta-blob-2 { position: absolute; bottom: 0; left: 0; width: 300px; height: 300px; border-radius: 50%; background: rgba(249,115,0,0.18); filter: blur(60px); transform: translate(-50%,50%); }
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(26px, 4vw, 48px); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 40px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }

/* ── FOOTER ── */
.site-footer { background: var(--primary); color: #fff; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 48px; margin-bottom: 48px; }
.footer-logo { background: #fff; padding: 10px 14px; border-radius: 12px; display: inline-block; margin-bottom: 20px; }
.footer-logo img { height: 40px; width: auto; object-fit: contain; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-col-title {
  font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.footer-col-title-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--accent); }
.footer-services-list { display: flex; flex-direction: column; gap: 10px; }
.footer-service-item { font-size: 14px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
.footer-service-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-icon {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s;
}
.footer-contact-item:hover .footer-contact-icon { background: var(--accent); }
.footer-contact-icon svg { width: 16px; height: 16px; color: #fff; }
.footer-contact-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.footer-contact-value { font-size: 14px; font-weight: 700; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
}
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-tagwords { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-tagwords-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-section { padding: 64px 0 80px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); z-index: 999;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--accent); }
.scroll-top svg { width: 20px; height: 20px; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 84px; right: 28px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
