:root {
  --bg: #0a0a0c;
  --bg-alt: #141417;
  --bg-card: #1b1b20;
  --red: #e2001a;
  --red-dark: #a80014;
  --blue: #0d47a1;
  --blue-light: #1565c0;
  --silver: #d9dade;
  --white: #f5f6f8;
  --muted: #9a9ba3;
  --border: #2a2a30;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
}

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

.i {
  width: 1em; height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: -0.14em;
  flex-shrink: 0;
}
.i-sm { width: 16px; height: 16px; }
.i-md { width: 22px; height: 22px; }
.i-lg { width: 28px; height: 28px; }
.i-xl { width: 24px; height: 24px; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { font-family: 'Outfit', 'Segoe UI', Arial, sans-serif; font-weight: 900; letter-spacing: .2px; }

.section-tag {
  color: #4dc8ff;
  text-shadow: 0 0 14px rgba(77,200,255,.65);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: .85rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2.2rem, 5.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-title span { color: var(--blue-light); }

.section-desc {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 40px;
  font-size: 1.02rem;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== Top bar ===== */
.topbar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--muted);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--silver); }
.topbar .topbar-phones { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .topbar-phones a:hover { color: var(--red); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 16px 0;
  background: transparent;
}
.header-outer {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  height: 96px;
}
.header-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(8% 0, 92% 0, 100% 38px, 100% 100%, 0 100%, 0 38px);
  background: linear-gradient(120deg, rgba(30,140,255,.95), rgba(120,190,255,.5) 55%, rgba(30,140,255,.95));
  box-shadow: 0 0 30px rgba(30,140,255,.25);
}
.header-outer::after {
  content: '';
  position: absolute;
  inset: 2px;
  clip-path: polygon(8% 0, 92% 0, 100% 36px, 100% 100%, 0 100%, 0 36px);
  background: rgba(10,14,22,.45);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 96px;
  padding: 0 46px 0 520px;
  gap: 40px;
}
.logo {
  position: absolute;
  left: 20px;
  top: -4px;
  z-index: 5;
}
.logo img { display: block; width: 480px; height: auto; filter: drop-shadow(0 8px 16px rgba(0,0,0,.6)); }
@media (max-width: 760px) {
  .header-outer { height: 60px; }
  .header-outer::before { clip-path: polygon(10% 0, 90% 0, 100% 16px, 100% 100%, 0 100%, 0 16px); }
  .header-outer::after { clip-path: polygon(10% 0, 90% 0, 100% 15px, 100% 100%, 0 100%, 0 15px); }
  .header-inner { height: 60px; padding: 0 16px 0 235px; }
  .logo { left: 8px; top: 6px; }
  .logo img { width: 210px; }
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  font-weight: 600;
  font-size: 1rem;
}
.nav-links a {
  position: relative;
  padding: 8px 2px 10px;
  color: var(--silver);
  white-space: nowrap;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: #4dc8ff;
  box-shadow: 0 0 10px rgba(77,200,255,.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: #6ad4ff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.btn-header {
  font-size: 1.05rem;
  padding: 16px 32px;
  background: rgba(15,18,26,.85);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 12px;
  color: #fff;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
a.btn-header:hover {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 1px rgba(21,101,192,.4), 0 0 20px rgba(21,101,192,.6);
  background: rgba(15,22,32,.92);
  color: #fff;
}
.btn-header .i { color: #fff; }
.btn-icon-only {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.btn-icon-only:hover { transform: translateY(-2px); }
.btn-whatsapp-icon { background: linear-gradient(135deg,#25D366,#128C7E); color: #fff; box-shadow: 0 6px 16px rgba(37,211,102,.35); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .93rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 6px 18px rgba(226,0,26,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(226,0,26,.5); }
.btn-outline { background: transparent; border: 1.5px solid var(--silver); color: var(--white); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-whatsapp { background: linear-gradient(135deg,#25D366,#128C7E); color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.3); }
.btn-whatsapp:hover { transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 110px 0 90px;
  background-image:
    linear-gradient(100deg, rgba(6,8,14,.94) 0%, rgba(8,14,28,.86) 40%, rgba(8,14,28,.55) 75%),
    url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-stats-wrap { position: relative; z-index: 6; margin-top: -70px; margin-bottom: 40px; }
.hero-grid { max-width: 680px; margin-left: 0; margin-right: auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,12,18,.55);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-weight: 400;
  font-size: .88rem;
  padding: 9px 18px;
  border-radius: 30px;
  margin-bottom: 26px;
}
.hero-badge .stars { color: #ffb400; letter-spacing: 1px; }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--red); }
.hero h1 .accent2 {
  background: linear-gradient(90deg, #7dd8ff, #2f6dff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(77,200,255,.45));
}
.hero p.lead {
  color: var(--silver);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-pill { border-radius: 12px; padding: 16px 30px; font-size: 1.02rem; }
.btn-hero-primary { background: linear-gradient(90deg, #2151e5, #4dc8ff); color: #fff; box-shadow: 0 0 24px rgba(77,157,255,.45); }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(77,157,255,.65); }
.btn-hero-outline { background: rgba(15,20,30,.4); border: 1.5px solid #4dc8ff; color: #4dc8ff; backdrop-filter: blur(4px); }
.btn-hero-outline:hover { background: rgba(77,200,255,.12); box-shadow: 0 0 18px rgba(77,200,255,.35); }

.btn-phone-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(20,22,30,.85);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 12px 22px;
  color: #fff;
  font-weight: 700;
  font-size: .93rem;
  transition: border-color .2s, background .2s;
}
.btn-phone-pill .i { color: var(--blue-light); }
.btn-phone-pill:hover { border-color: var(--blue-light); background: rgba(21,101,192,.15); }
.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  align-items: center;
  gap: 10px;
  background: linear-gradient(160deg, rgba(16,22,34,.92), rgba(6,8,13,.92));
  border: 1px solid rgba(90,160,255,.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 34px 26px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.hero-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4dc8ff, transparent);
  box-shadow: 0 0 16px rgba(77,200,255,.8);
}
.hero-stat { text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.hero-stat:last-child { border-right: none; }
.hero-stat-icon {
  width: 42px; height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,200,255,.18), transparent 70%);
  display: flex; align-items: center; justify-content: center;
  color: #4dc8ff;
}
.hero-stat-icon .i { width: 20px; height: 20px; }
.hero-stat strong { display: block; font-size: clamp(1.4rem, 3.2vw, 2rem); font-family: 'Outfit', sans-serif; color: #4dc8ff; text-shadow: 0 0 18px rgba(77,200,255,.55); margin-bottom: 4px; }
.hero-stat span { color: var(--muted); font-size: .78rem; letter-spacing: .3px; }

.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(120,180,255,.6);
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
}
.scroll-mouse span {
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: #4dc8ff;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(77,200,255,.8);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: .3; }
  61% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px 6px; max-width: 100%; }
  .scroll-mouse { display: none; }
  .hero-stat:nth-child(2), .hero-stat:nth-child(4) { border-right: none; }
}

/* Floating side dock */
.side-dock {
  position: fixed;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-dock a {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  transition: transform .2s;
}
.side-dock a:hover { transform: scale(1.08); }
.side-dock a.dock-whatsapp { background: linear-gradient(135deg,#25D366,#128C7E); color:#fff; }
.side-dock a.dock-instagram { background: radial-gradient(circle at 30% 110%, #ffdb8b, #ee2a7b 40%, #6228d7 90%); color:#fff; }
.side-dock a.dock-phone { background: linear-gradient(135deg, var(--blue-light), var(--blue)); color:#fff; }
.side-dock a.dock-map { background: linear-gradient(135deg, var(--red), var(--red-dark)); color:#fff; }
@media (max-width: 760px) {
  .side-dock { right: 12px; gap: 10px; }
  .side-dock a { width: 42px; height: 42px; font-size: 1.05rem; }
}

.brand-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 46px 0;
}
.brand-strip .eyebrow { display: block; text-align: center; color: var(--blue-light); font-weight: 700; letter-spacing: 2px; font-size: .8rem; text-transform: uppercase; margin-bottom: 8px; }
.brand-strip h2 { text-align: center; font-size: clamp(2rem, 4.4vw, 2.8rem); margin-bottom: 30px; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 26px 20px;
  background: var(--bg-card);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.brand-item img {
  max-width: 100%;
  max-height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1) opacity(.45);
  transition: filter .25s;
}
.brand-item:hover {
  border-color: #4dc8ff;
  box-shadow: 0 0 24px rgba(77,200,255,.4);
  transform: translateY(-3px);
}
.brand-item:hover img { filter: grayscale(1) brightness(0) invert(1) opacity(.9); }
@media (max-width: 760px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Services ===== */
.services { padding: 90px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); border-color: #4dc8ff; box-shadow: 0 0 26px rgba(77,200,255,.25); }
.service-media {
  height: 190px;
  position: relative;
  overflow: hidden;
}
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-media.icon-media {
  background: linear-gradient(135deg, rgba(226,0,26,.18), rgba(13,71,161,.25)), var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
}
.service-media.icon-media .i { width: 46px; height: 46px; color: var(--white); opacity: .9; }
.service-body { padding: 26px; flex: 1; display: flex; flex-direction: column; background: transparent; transition: background .3s; }
.service-card:hover .service-body { background: linear-gradient(180deg, rgba(77,200,255,.09), rgba(77,200,255,.02) 60%, transparent); }
.service-eyebrow { color: #4dc8ff; font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p.desc { color: var(--muted); font-size: .93rem; margin-bottom: 16px; }
.service-checks { list-style: none; display: grid; gap: 9px; margin-bottom: 20px; }
.service-checks li { display: flex; align-items: center; gap: 9px; font-size: .87rem; color: var(--silver); }
.service-checks .i { color: #4dc8ff; width: 16px; height: 16px; }
.service-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--blue-light); font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .5px; }
.service-cta .i { width: 16px; height: 16px; transition: transform .2s; }
.service-cta:hover .i { transform: translateX(4px); }

/* ===== About ===== */
.about { padding: 90px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.about-grid-v2 { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: start; }
.about-quote {
  border-left: 3px solid #4dc8ff;
  padding: 4px 0 4px 18px;
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 20px 0 28px;
}
.about-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  margin-bottom: 20px;
}
.about-block h4 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; margin-bottom: 12px; }
.about-block h4 .i { width: 20px; height: 20px; color: #4dc8ff; }
.about-block p { color: var(--muted); font-size: .95rem; line-height: 1.65; }
.about-bullets { list-style: none; display: grid; gap: 14px; }
.about-bullets li { position: relative; padding-left: 20px; color: var(--muted); font-size: .95rem; line-height: 1.65; }
.about-bullets li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: #4dc8ff; }
.about-bullets li strong { color: var(--white); }

.about-visual-wrap { position: relative; }
.about-visual { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.about-badge {
  position: absolute; bottom: -18px; right: 24px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  border-radius: 14px;
  padding: 14px 22px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(13,71,161,.45);
}
.about-badge strong { display: block; font-size: 1.6rem; font-family: 'Outfit', sans-serif; color: #fff; line-height: 1; }
.about-badge span { font-size: .68rem; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.85); }

.about-mini { display: flex; gap: 14px; margin-top: 34px; }
.about-mini-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(77,200,255,.12);
  border: 1px solid rgba(77,200,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: #4dc8ff;
}
.about-mini-icon .i { width: 18px; height: 18px; }
.about-mini h4 { font-size: .95rem; margin-bottom: 6px; }
.about-mini p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

.google-score-card { display: flex; gap: 20px; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.gsc-badge {
  width: 68px; height: 68px; border-radius: 50%;
  background: radial-gradient(circle, #0d1420, #060a10);
  border: 1.5px solid rgba(77,200,255,.5);
  box-shadow: 0 0 20px rgba(77,200,255,.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gsc-badge svg { width: 34px; height: 34px; }
.gsc-label { color: var(--muted); font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.gsc-stars { font-weight: 700; margin-bottom: 6px; }
.gsc-stars .stars-inline { color: #ffb400; letter-spacing: 1px; }
.google-score-card p { color: var(--muted); font-size: .87rem; }
.google-score-card strong { color: var(--white); }

@media (max-width: 760px) {
  .about-grid-v2 { grid-template-columns: 1fr; gap: 34px; }
  .about-badge { right: 12px; bottom: -14px; padding: 10px 16px; }
}

/* ===== Regions ===== */
.regions { padding: 90px 0; }
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.region-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.region-card h3 { font-size: 1.05rem; color: #4dc8ff; margin-bottom: 10px; }
.region-card p { color: var(--muted); font-size: .88rem; }
.region-note {
  margin-top: 28px;
  background: linear-gradient(120deg, rgba(77,200,255,.1), rgba(21,101,192,.14));
  border: 1px solid rgba(77,200,255,.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.region-note .btn-hero-primary { padding: 13px 26px; }
.region-note p { color: var(--silver); max-width: 560px; }
.region-note strong { color: var(--white); }

/* ===== Why us ===== */
.why { padding: 90px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { text-align: center; padding: 20px; }
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,200,255,.15), rgba(10,14,22,.4));
  border: 1px solid rgba(77,200,255,.3);
  box-shadow: 0 0 18px rgba(77,200,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: #4dc8ff;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.why-icon .i { width: 26px; height: 26px; }
.why-card:hover .why-icon { box-shadow: 0 0 26px rgba(77,200,255,.4); border-color: #4dc8ff; transform: translateY(-4px); }
.why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: .87rem; }

/* ===== Gallery ===== */
.gallery { padding: 90px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.gallery-grid img { border-radius: var(--radius); border: 1px solid var(--border); width: 100%; height: 320px; object-fit: cover; }

/* ===== Reviews ===== */
.reviews { padding: 90px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stars { color: #ffb400; margin-bottom: 12px; font-size: 1rem; letter-spacing: 2px; }
.gmb-link { text-align: center; margin-top: 34px; }

.reviews-carousel { display: flex; align-items: center; gap: 18px; }
.rc-arrow {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--white);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.rc-arrow:hover { border-color: var(--red); color: var(--red); }
.rc-track-wrap { flex: 1; overflow: hidden; }
.rc-track { display: flex; transition: transform .45s ease; }
.rc-slide { min-width: 100%; text-align: center; padding: 10px 30px; }
.rc-slide .quote-icon { color: var(--red); opacity: .5; margin-bottom: 18px; }
.rc-slide .quote-icon .i { width: 34px; height: 34px; }
.rc-slide p { font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-family: 'Outfit', sans-serif; font-style: italic; color: var(--white); margin-bottom: 18px; line-height: 1.4; }
.rc-slide .stars { justify-content: center; display: flex; }
.rc-slide .review-name { margin-top: 10px; font-weight: 700; color: var(--blue-light); font-size: .95rem; }
.rc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.rc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; border: none; padding: 0; transition: all .2s; }
.rc-dot.active { background: var(--red); width: 24px; border-radius: 4px; }
@media (max-width: 760px) { .rc-arrow { display: none; } }

/* ===== Contact ===== */
.contact { padding: 90px 0; }
.contact-grid-v2 { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; margin-bottom: 40px; align-items: start; }

.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 16px;
}
.contact-info-card .ic {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(77,200,255,.12);
  border: 1px solid rgba(77,200,255,.25);
  color: #4dc8ff;
  display: flex; align-items: center; justify-content: center;
}
.cic-label { display: block; color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-card strong { display: block; font-weight: 700; font-size: .96rem; }
.contact-info-card a { color: var(--white); }
.contact-info-card a:hover { color: #4dc8ff; }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-card > p { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.contact-form-card form { display: grid; gap: 18px; }
.contact-form-card label { display: block; font-size: .88rem; font-weight: 600; color: var(--silver); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form-card input, .contact-form-card select, .contact-form-card textarea {
  width: 100%;
  margin-top: 8px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  resize: vertical;
}
.contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus {
  outline: none;
  border-color: #4dc8ff;
  box-shadow: 0 0 0 3px rgba(77,200,255,.15);
}
.contact-form-card input::placeholder, .contact-form-card textarea::placeholder { color: var(--muted); }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #2151e5, #4dc8ff);
  color: #fff;
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(77,157,255,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(77,157,255,.5); }

.map-wrap { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.3) invert(.92) contrast(.85); }
.map-open-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,14,22,.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(77,200,255,.3);
  color: #4dc8ff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .88rem;
}
.map-open-tag:hover { border-color: #4dc8ff; }

@media (max-width: 900px) {
  .contact-grid-v2 { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ===== CTA strip ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--red-dark), var(--red) 50%, var(--blue));
  padding: 44px 0;
}
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.cta-strip h2 { font-size: 1.5rem; }
.cta-strip p { color: rgba(255,255,255,.85); }
.cta-strip .btn-outline { border-color: #fff; }
.cta-strip .btn-outline:hover { background: #fff; color: var(--red); }

/* ===== Footer ===== */
.footer { background: #060607; padding: 60px 0 20px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 42px; }
.footer p { color: var(--muted); font-size: .9rem; }
.footer h4 { font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: var(--silver); }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { color: var(--muted); font-size: .9rem; }
.footer ul a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: .82rem;
}


/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .header-cta .btn-header { display: none; }
  .topbar .topbar-phones { display: none; }
  .hero { padding: 40px 0 40px; }
  .hero-stats-wrap { margin-top: -20px; }
  .hero-stats { gap: 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .section-desc { margin-left: auto; margin-right: auto; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,6,7,.98);
  z-index: 300;
  padding: 90px 30px 30px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: grid; gap: 22px; font-size: 1.3rem; font-family: 'Outfit', sans-serif; margin-bottom: 30px; }
.mobile-menu .close-menu { position: absolute; top: 22px; right: 22px; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

/* Anchor scroll offset so sticky header never covers section content */
#top, #hizmetler, #hakkimizda, #bolgeler, #galeri, #yorumlar, #iletisim {
  scroll-margin-top: 130px;
}
@media (max-width: 760px) {
  #top, #hizmetler, #hakkimizda, #bolgeler, #galeri, #yorumlar, #iletisim {
    scroll-margin-top: 80px;
  }
}
