/* ==========================================================================
   تعمیرات لوازم خانگی سعید قنبری — تبریز
   Professional Landing Page Styles
   ========================================================================== */

:root {
  /* Brand palette */
  --navy-900: #0b2138;
  --navy-800: #0e2a47;
  --navy-700: #143a61;
  --navy-600: #1d4e80;
  --blue-500: #2a6fb0;
  --blue-100: #e7f0f9;

  --amber-500: #f97316;
  --amber-400: #fb8c3c;
  --amber-600: #ea580c;
  --amber-100: #fff1e6;

  --ink: #15233a;
  --ink-soft: #43526b;
  --muted: #6b7891;
  --line: #e6eaf1;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-tint: #eef3f9;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 14px rgba(14, 42, 71, 0.06);
  --shadow: 0 18px 45px rgba(14, 42, 71, 0.10);
  --shadow-lg: 0 35px 80px rgba(14, 42, 71, 0.18);

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Peyda', system-ui, 'Segoe UI', Tahoma, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.85;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--amber-500); color: #fff; }

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

/* ===== Typography helpers ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber-600);
  background: var(--amber-100);
  padding: 7px 16px;
  border-radius: 100px;
  letter-spacing: 0.2px;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  font-weight: 800;
  line-height: 1.4;
  margin-top: 18px;
  color: var(--navy-800);
  letter-spacing: -0.5px;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 14px; }
.section-head .section-tag { margin: 0 auto; }

.text-amber { color: var(--amber-600); }

section { padding: 92px 0; position: relative; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  color: #fff;
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(234, 88, 12, 0.45); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-3px); }
.btn-dark { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-3px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(14, 42, 71, 0.08);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.35);
  flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.35; }
.logo-text strong { font-size: 1.12rem; font-weight: 800; color: var(--navy-800); }
.logo-text span { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.site-header:not(.scrolled) .logo-text strong { color: #fff; }
.site-header:not(.scrolled) .logo-text span { color: rgba(255,255,255,0.7); }

.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 9px 16px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink-soft);
  transition: color 0.25s, background 0.25s;
}
.main-nav a:hover { color: var(--amber-600); background: var(--amber-100); }
.site-header:not(.scrolled) .main-nav a { color: rgba(255, 255, 255, 0.85); }
.site-header:not(.scrolled) .main-nav a:hover { color: #fff; background: rgba(255,255,255,0.14); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 1.02rem;
  color: var(--navy-800);
  direction: ltr;
}
.header-phone svg { width: 22px; height: 22px; color: var(--amber-600); }
.site-header:not(.scrolled) .header-phone { color: #fff; }

.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; color: var(--navy-800); }
.menu-toggle svg { width: 28px; height: 28px; }
.site-header:not(.scrolled) .menu-toggle { color: #fff; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 168px 0 110px;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(249, 115, 22, 0.18), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(42, 111, 176, 0.25), transparent 55%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 500;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.hero h1 .hl { color: var(--amber-400); position: relative; white-space: nowrap; }
.hero p.lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats .stat strong {
  display: block; font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.2;
}
.hero-stats .stat span { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.hero-stats .stat strong .text-amber { color: var(--amber-400); }

/* Hero image */
.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,0.08);
}
.hero-image-wrap img { width: 100%; height: 560px; object-fit: cover; object-position: center top; }
.hero-image-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,33,56,0.5), transparent 45%);
}
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
  animation: floaty 4s ease-in-out infinite;
}
.float-card .ic {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
}
.float-card .ic svg { width: 24px; height: 24px; }
.float-card strong { display: block; font-size: 0.98rem; color: var(--navy-800); font-weight: 700; }
.float-card span { font-size: 0.8rem; color: var(--muted); }
.float-card.fc-1 { top: 28px; inset-inline-start: -28px; }
.float-card.fc-1 .ic { background: linear-gradient(135deg, #16a34a, #22c55e); }
.float-card.fc-2 { bottom: 34px; inset-inline-end: -24px; animation-delay: 1.2s; }
.float-card.fc-2 .ic { background: linear-gradient(135deg, var(--amber-400), var(--amber-600)); }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Trust strip */
.trust-strip {
  position: relative; z-index: 2;
  margin-top: 70px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 34px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.96rem; }
.trust-item svg { width: 26px; height: 26px; color: var(--amber-400); flex-shrink: 0; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; inset-inline-start: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--amber-400), var(--amber-600));
  transform: scaleX(0); transform-origin: inline-start;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--blue-100);
  display: grid; place-items: center;
  color: var(--navy-700);
  margin-bottom: 22px;
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.service-icon svg { width: 34px; height: 34px; }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--amber-400), var(--amber-600)); color: #fff; transform: rotate(-6deg) scale(1.05); }
.service-card h3 { font-size: 1.22rem; font-weight: 700; color: var(--navy-800); margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.97rem; }
.service-card .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.service-card .tags span {
  font-size: 0.78rem; color: var(--muted); background: var(--bg-soft);
  padding: 4px 12px; border-radius: 100px; font-weight: 500;
}

/* ==========================================================================
   FEATURES / WHY US
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-box {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, background 0.4s;
}
.feature-box:hover { transform: translateY(-6px); background: #fff; box-shadow: var(--shadow); border-color: var(--line); }
.feature-box .fi {
  width: 72px; height: 72px; margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--amber-600);
  box-shadow: 0 10px 24px rgba(234,88,12,0.15);
}
.feature-box:hover .fi { background: linear-gradient(135deg, var(--amber-400), var(--amber-600)); color: #fff; }
.feature-box .fi svg { width: 36px; height: 36px; }
.feature-box h3 { font-size: 1.12rem; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; }
.feature-box p { font-size: 0.93rem; color: var(--ink-soft); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-visual { position: relative; }
.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image-wrap img { width: 100%; height: 540px; object-fit: cover; object-position: center top; }
.about-visual .deco {
  position: absolute; inset-inline-end: -22px; bottom: -22px;
  width: 160px; height: 160px; border-radius: 24px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  z-index: -1;
}
.about-visual .exp-badge {
  position: absolute; inset-inline-start: -26px; bottom: 36px;
  background: #fff; border-radius: 18px; padding: 18px 22px;
  box-shadow: var(--shadow); text-align: center;
}
.about-visual .exp-badge strong { display: block; font-size: 2.2rem; font-weight: 900; color: var(--amber-600); line-height: 1; }
.about-visual .exp-badge span { font-size: 0.85rem; color: var(--ink-soft); font-weight: 500; }

.about-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--navy-800);
  line-height: 1.4; margin: 16px 0 18px; letter-spacing: -0.5px;
}
.about-content > p { color: var(--ink-soft); font-size: 1.04rem; margin-bottom: 16px; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 26px; }
.about-list li { display: flex; align-items: flex-start; gap: 11px; font-weight: 500; color: var(--ink); }
.about-list li svg { width: 24px; height: 24px; color: #16a34a; flex-shrink: 0; margin-top: 4px; }
.about-content .btn { margin-top: 34px; }

/* ==========================================================================
   PROCESS / STEPS
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
  padding: 12px;
}
.step .num {
  width: 78px; height: 78px; margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: #fff; font-size: 1.7rem; font-weight: 800;
  display: grid; place-items: center;
  position: relative; z-index: 2;
  box-shadow: 0 14px 30px rgba(20,58,97,0.3);
}
.step .num::after {
  content: ""; position: absolute; inset: -7px;
  border-radius: 50%; border: 2px dashed var(--line);
  z-index: -1;
}
.step:nth-child(2) .num, .step:nth-child(4) .num { background: linear-gradient(135deg, var(--amber-400), var(--amber-600)); box-shadow: 0 14px 30px rgba(234,88,12,0.3); }
.step h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; }
.step p { font-size: 0.93rem; color: var(--ink-soft); }
.process-grid .connector {
  position: absolute; top: 39px; inset-inline: 12%;
  height: 2px; background: var(--line); z-index: 0;
}

/* ==========================================================================
   STATS BANNER
   ========================================================================== */
.stats-banner {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(249,115,22,0.2), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  box-shadow: var(--shadow-lg);
  margin-top: -40px;
}
.stat-cell { text-align: center; }
.stat-cell strong { display: block; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; color: var(--amber-400); }
.stat-cell span { font-size: 0.98rem; color: rgba(255,255,255,0.82); font-weight: 500; }

/* ==========================================================================
   AREAS / COVERAGE
   ========================================================================== */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.areas-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.areas-list span {
  background: #fff; border: 1px solid var(--line);
  padding: 10px 20px; border-radius: 100px;
  font-weight: 500; font-size: 0.95rem; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.areas-list span:hover { border-color: var(--amber-500); color: var(--amber-600); transform: translateY(-2px); }
.areas-list span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber-500); }
.map-card {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.map-card .pin {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center; color: var(--amber-400);
  margin-bottom: 20px;
}
.map-card .pin svg { width: 34px; height: 34px; }
.map-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.map-card p { color: rgba(255,255,255,0.8); margin-bottom: 22px; }
.map-card .addr-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.map-card .addr-row svg { width: 22px; height: 22px; color: var(--amber-400); flex-shrink: 0; }
.map-card .addr-row span { color: rgba(255,255,255,0.9); }
.map-card .addr-row a { color: #fff; font-weight: 700; direction: ltr; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { background: var(--bg-soft); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--line); position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi-card .quote-mark { font-size: 4rem; color: var(--amber-100); font-weight: 900; line-height: 0.6; font-family: Georgia, serif; position: absolute; top: 26px; inset-inline-end: 24px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; color: #f59e0b; }
.testi-stars svg { width: 20px; height: 20px; }
.testi-card p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 22px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author .av {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-600), var(--blue-500));
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.1rem;
}
.testi-author strong { display: block; color: var(--navy-800); font-weight: 700; font-size: 1rem; }
.testi-author span { font-size: 0.85rem; color: var(--muted); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); margin-bottom: 14px;
  overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--amber-500); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; font-size: 1.06rem; font-weight: 600; color: var(--navy-800); text-align: start;
}
.faq-q .icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-soft); display: grid; place-items: center; color: var(--amber-600);
  transition: transform 0.35s var(--ease), background 0.3s;
}
.faq-q .icon svg { width: 20px; height: 20px; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--amber-500); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.98rem; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section {
  background:
    radial-gradient(700px 400px at 15% 120%, rgba(42,111,176,0.35), transparent 60%),
    linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: #fff; text-align: center; border-radius: var(--radius-lg);
  padding: 70px 40px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 24px 24px; opacity: 0.6;
}
.cta-section > * { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.92); margin-bottom: 30px; max-width: 560px; margin-inline: auto; font-weight: 300; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; color: var(--navy-800);
  padding: 18px 38px; border-radius: 100px;
  font-size: 1.6rem; font-weight: 900; direction: ltr;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  transition: transform 0.3s var(--ease);
}
.cta-phone:hover { transform: scale(1.04); }
.cta-phone svg { width: 30px; height: 30px; color: var(--amber-600); }
.cta-note { margin-top: 18px; font-size: 0.95rem; color: rgba(255,255,255,0.9); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; }
.footer-about .logo { margin-bottom: 18px; }
.footer-about .logo-text strong { color: #fff; }
.footer-about p { font-size: 0.94rem; line-height: 1.9; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: 0.95rem; transition: color 0.25s, padding 0.25s; }
.footer-col ul a:hover { color: var(--amber-400); padding-inline-start: 5px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 16px; font-size: 0.94rem; }
.footer-contact li svg { width: 21px; height: 21px; color: var(--amber-400); flex-shrink: 0; margin-top: 4px; }
.footer-contact a { color: #fff; direction: ltr; display: inline-block; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff;
  transition: background 0.3s, transform 0.3s;
}
.footer-social a:hover { background: var(--amber-600); transform: translateY(-3px); }
.footer-social svg { width: 22px; height: 22px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0; text-align: center; font-size: 0.88rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ==========================================================================
   FLOATING CALL BUTTON (mobile)
   ========================================================================== */
.fab-call {
  position: fixed; bottom: 20px; inset-inline-start: 20px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  display: none; place-items: center; color: #fff;
  box-shadow: 0 12px 30px rgba(234,88,12,0.5);
  animation: pulse-fab 2.2s infinite;
}
.fab-call svg { width: 28px; height: 28px; }
@keyframes pulse-fab {
  0% { box-shadow: 0 0 0 0 rgba(234,88,12,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(234,88,12,0); }
  100% { box-shadow: 0 0 0 0 rgba(234,88,12,0); }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
  .process-grid .connector { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-visual { max-width: 480px; margin-inline: auto; width: 100%; }
  .areas-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-banner { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(78%, 320px);
    background: #fff; box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    padding: 90px 24px 30px; z-index: 1001;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { color: var(--ink) !important; padding: 13px 16px; font-size: 1.05rem; }
  .menu-toggle { display: flex; }
  .header-phone { display: none; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(11,33,56,0.5); z-index: 1000; opacity: 0; visibility: hidden; transition: 0.3s; }
  .nav-overlay.show { opacity: 1; visibility: visible; }
  .testi-grid { grid-template-columns: 1fr; }
  .fab-call { display: grid; }
  .hero { padding: 130px 0 80px; }
  .hero-image-wrap img { height: 440px; }
  .float-card.fc-1 { inset-inline-start: -8px; }
  .float-card.fc-2 { inset-inline-end: -8px; }
  .hero-stats { gap: 26px; }
  .about-visual .exp-badge { inset-inline-start: 12px; }
  .about-visual .deco { inset-inline-end: 0; }
  .trust-strip { gap: 18px; }
}

@media (max-width: 540px) {
  .services-grid, .features-grid, .process-grid { grid-template-columns: 1fr; }
  .stats-banner { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-list { grid-template-columns: 1fr; }
  .cta-phone { font-size: 1.25rem; padding: 15px 26px; }
  .hero-actions .btn { width: 100%; }
  .hero-image-wrap img { height: 380px; }
}
