/* =========================================================
   EKOL — İzmir Klima, Kombi & Beyaz Eşya Servisi
   Acrepair-inspired HVAC service theme design system
   ========================================================= */

:root {
  --primary: #0b3d5c;
  --primary-dark: #072a40;
  --primary-light: #0e5278;
  --accent: #f7941d;
  --accent-hover: #e07f0a;
  --accent-soft: #fff4e5;
  --secondary: #1a9bd7;
  --success: #28a745;
  --text: #2c3e50;
  --text-muted: #6c757d;
  --text-light: #8a94a6;
  --white: #ffffff;
  --light: #f4f7fa;
  --light-2: #e8eef3;
  --border: #e2e8f0;
  --shadow: 0 8px 30px rgba(11, 61, 92, 0.08);
  --shadow-lg: 0 16px 48px rgba(11, 61, 92, 0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font: "Poppins", system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --header-h: 90px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background var(--transition),
    border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Utilities ---------- */
.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-light {
  background: var(--light);
}

.section-primary {
  background: var(--primary);
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .subtitle {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.section-primary .section-title h2,
.section-primary .section-title p {
  color: var(--white);
}

.section-primary .section-title .subtitle {
  color: var(--accent);
}

.text-accent {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.2;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 148, 29, 0.35);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 16px;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  padding: 10px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-item i {
  color: var(--accent);
  font-size: 14px;
}

.topbar a:hover {
  color: var(--accent);
}

.topbar-social {
  display: flex;
  gap: 10px;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.topbar-social a:hover {
  background: var(--accent);
  color: var(--white);
}

/* ---------- Header / Nav ---------- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(11, 61, 92, 0.06);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(11, 61, 92, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 56px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 10px 14px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  border-radius: 6px;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  display: none;
  flex-direction: column;
  line-height: 1.2;
  text-align: right;
}

.header-phone small {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-phone strong {
  color: var(--primary);
  font-size: 16px;
}

.header-phone a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, rgba(7, 42, 64, 0.88) 0%, rgba(11, 61, 92, 0.72) 50%, rgba(26, 155, 215, 0.5) 100%),
    url("../images/hero-klima-bakim.jpg") center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero-alt {
  background: linear-gradient(120deg, rgba(7, 42, 64, 0.9) 0%, rgba(11, 61, 92, 0.78) 100%),
    url("../images/hero-klima-bakim.jpg") center/cover no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 70px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 148, 29, 0.18);
  border: 1px solid rgba(247, 148, 29, 0.45);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.hero-features i {
  color: var(--accent);
}

.hero-form {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-form h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.hero-form > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--light);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 155, 215, 0.15);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ---------- Page Banner ---------- */
.page-banner {
  background: linear-gradient(120deg, rgba(7, 42, 64, 0.9), rgba(11, 61, 92, 0.82)),
    url("../images/hero-klima-bakim.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 70px 0 60px;
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  opacity: 0.5;
}

/* ---------- Feature Strip ---------- */
.feature-strip {
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(247, 148, 29, 0.25);
}

.feature-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--transition);
}

.feature-card:hover .icon {
  background: var(--accent);
  color: var(--white);
}

.feature-card h4 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.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.08);
}

/* Icon sits between image and body so it is never clipped */
.service-icon {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 24px;
  position: relative;
  z-index: 2;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(247, 148, 29, 0.35);
  flex-shrink: 0;
}

.service-card-body {
  padding: 18px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 16px;
  flex: 1;
}

.service-card-body ul {
  margin-bottom: 18px;
}

.service-card-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}

.service-card-body ul li i {
  color: var(--success);
  margin-top: 4px;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  gap: 10px;
  color: var(--accent-hover);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-images .main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-images .main-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-images .main-img img.map-img {
  object-fit: contain;
  background: #f7fafc;
  padding: 12px;
}

/* Square Google Maps embed (hizmet bölgeleri) */
.about-map-square {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--light);
}

.about-map-square iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 180px;
}

.about-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge span {
  font-size: 13px;
  font-weight: 500;
}

.about-content .subtitle {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.about-content h2 {
  color: var(--primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 16px;
}

.about-content > p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-list {
  margin-bottom: 28px;
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-weight: 500;
}

.about-list i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.why-card .num {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.why-card:hover .num {
  background: var(--accent);
}

.why-card h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(110deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(247, 148, 29, 0.12);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-phone .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.cta-phone small {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}

.cta-phone strong {
  font-size: 18px;
}

/* ---------- Areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.area-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
}

.area-item i {
  color: var(--accent);
}

.area-item:hover {
  border-color: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow);
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-card {
  text-align: center;
  position: relative;
  padding: 10px;
}

.process-card .icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--light);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  position: relative;
  transition: var(--transition);
}

.process-card:hover .icon-wrap {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.process-card .step {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.process-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  overflow: hidden;
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.45s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card .stars {
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card .quote {
  font-size: 17px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-author strong {
  display: block;
  color: var(--primary);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dots button.active {
  background: var(--accent);
  width: 28px;
  border-radius: 10px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

.contact-info-cards {
  display: grid;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.contact-info-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.contact-info-card a:hover {
  color: var(--accent);
}

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form-box h3 {
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-form-box > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
  height: 380px;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Service Detail (hizmetler page) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 36px;
  align-items: start;
}

.service-detail-content h2 {
  color: var(--primary);
  margin-bottom: 14px;
}

.service-detail-content h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin: 28px 0 12px;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.service-detail-content ul {
  margin-bottom: 16px;
}

.service-detail-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--text);
}

.service-detail-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.service-sidebar {
  position: sticky;
  top: 110px;
}

.sidebar-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.sidebar-card h4 {
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid var(--border);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.sidebar-cta {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}

.sidebar-cta h4 {
  margin-bottom: 8px;
}

.sidebar-cta p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 16px;
}

.sidebar-cta .phone {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---------- Team / Mission ---------- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.mission-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.mission-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.mission-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.mission-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item strong {
  display: block;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-item span {
  font-size: 14px;
  opacity: 0.9;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 50px;
}

.footer-brand .logo-white {
  margin-bottom: 16px;
  background: var(--white);
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
}

.footer-brand .logo-white img {
  height: 48px;
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 13px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ---------- Floating action buttons (sağ alt) ---------- */
.float-whatsapp,
.float-call {
  position: fixed;
  right: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-whatsapp {
  bottom: 22px;
  background: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}

.float-call {
  bottom: 92px;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(247, 148, 29, 0.45);
}

.float-whatsapp:hover,
.float-call:hover {
  transform: scale(1.08);
  color: var(--white);
}

.float-call:hover {
  background: var(--accent-hover);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 168px;
  z-index: 998;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  background: var(--accent);
}

/* ---------- Alert / form message ---------- */
.form-message {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 14px;
}

.form-message.success {
  display: block;
  background: #e8f8ef;
  color: #1e7e34;
  border: 1px solid #b7ebc6;
}

.form-message.error {
  display: block;
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5c6cb;
}

/* ---------- Responsive ---------- */
@media (min-width: 992px) {
  .header-phone {
    display: flex;
  }
}

@media (max-width: 1100px) {
  .feature-strip-grid,
  .why-grid,
  .process-grid,
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + 36px);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 16px;
    border-radius: 8px;
  }

  .nav a:hover,
  .nav a.active {
    background: var(--light);
  }

  .nav a.active::after {
    display: none;
  }

  .header-cta .btn {
    display: none;
  }

  .hero-inner,
  .about-grid,
  .contact-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-form {
    max-width: 480px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar-left span:not(.keep),
  .topbar-item.hide-xs {
    display: none;
  }

  .feature-strip-grid,
  .why-grid,
  .process-grid,
  .areas-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img {
    height: 46px;
  }

  :root {
    --header-h: 74px;
  }
}
