/* =============================================
   النقل المثالي للأثاث - ملف الأنماط الرئيسي
   RTL | Mobile First | Performance Optimized
   ============================================= */

/* ─── Custom Properties ─────────────────────── */
:root {
  --primary:      #1a4fa0;   /* أزرق عميق - ثقة واحترافية */
  --primary-dark: #133a7a;
  --primary-light:#2d6bc4;
  --accent:       #f5a623;   /* ذهبي دافئ - ضمان وقيمة */
  --accent-dark:  #d4881a;
  --success:      #27ae60;
  --danger:       #e74c3c;
  --whatsapp:     #25d366;
  --whatsapp-d:   #1da851;

  --text-dark:    #1a1a2e;
  --text-body:    #3d3d56;
  --text-muted:   #6b7280;
  --text-light:   #9ca3af;

  --bg-white:     #ffffff;
  --bg-light:     #f8faff;
  --bg-section:   #eef2fb;
  --bg-dark:      #0f1b35;

  --border:       #dde4f0;
  --shadow-sm:    0 2px 8px rgba(26,79,160,.10);
  --shadow-md:    0 6px 24px rgba(26,79,160,.14);
  --shadow-lg:    0 16px 48px rgba(26,79,160,.18);

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --font-main:    'Noto Kufi Arabic', 'Cairo', system-ui, sans-serif;
  --font-heading: 'Noto Kufi Arabic', 'Cairo', system-ui, sans-serif;

  --transition:   .22s cubic-bezier(.4,0,.2,1);
  --header-h:     112px;
}

/* ─── Reset & Base ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  direction: rtl;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ─────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.35;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }
p  { margin-bottom: 1rem; }

/* ─── Layout Utilities ───────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}
.section--light { background: var(--bg-light); }
.section--blue  { background: var(--bg-section); }
.section--dark  { background: var(--bg-dark); color: #fff; }

.section__head {
  text-align: center;
  margin-bottom: 3rem;
}
.section__head h2 { margin-bottom: .75rem; }
.section__head .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--primary);
  background: rgba(26,79,160,.1);
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  line-height: 1;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,79,160,.35);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,79,160,.40);
}
.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,166,35,.35);
}
.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn--whatsapp:hover {
  background: var(--whatsapp-d);
  transform: translateY(-2px);
}
.btn--call {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,79,160,.35);
}
.btn--call:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,79,160,.40);
}
.btn--outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.1rem; }
.btn--sm { padding: .6rem 1.2rem; font-size: .9rem; }

/* ─── Topbar ─────────────────────────────────── */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  padding: .45rem 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.topbar__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.topbar__links a {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.topbar__links a:hover { color: var(--accent); }
.topbar__hours {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.7);
}

/* ─── Header / Navbar ────────────────────────── */
.header {
  background: var(--bg-white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 900;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.navbar__logo-icon {
  width: 60px;
  height: 60px;
  /* background: var(--primary); */
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.navbar__logo-text { line-height: 1.2; }
.navbar__logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.navbar__logo-tagline {
  font-size: .72rem;
  color: var(--text-muted);
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.navbar__nav a {
  padding: .55rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  position: relative;
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--primary);
  background: rgba(26,79,160,.06);
}
.navbar__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 1rem;
  left: 1rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Navigation - Default Hidden */
.mobile-nav {
  display: none !important;
}
.mobile-nav.open {
  display: flex !important;
}

/* ─── Hero Section ───────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: .5rem 1.1rem;
  border-radius: 100px;
  font-size: .85rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-weight: 600;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.hero h1 span { color: var(--accent); }

.hero__desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero__stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  margin-top: .25rem;
}

.hero__cta {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}
.hero__card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: #fff;
}
.hero__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 1rem;
}
.hero__features {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}
.hero__feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* ─── Stats Bar ──────────────────────────────── */
.stats-bar {
  background: var(--primary);
  color: #fff;
  padding: 2rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item__number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat-item__label {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  margin-top: .35rem;
}

/* ─── Service Cards ──────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--primary);
}
.service-card h3 {
  font-size: 1rem;
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Why Us Section ─────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.why-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.why-card h3 { margin-bottom: .6rem; }
.why-card p { font-size: .92rem; color: var(--text-muted); margin: 0; }

/* ─── Steps Section ──────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-card__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 4px solid var(--bg-light);
}
.step-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.step-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ─── Guarantee Section ──────────────────────── */
.guarantee-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 5rem 0;
}
.guarantee-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.guarantee-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
}
.guarantee-badge__icon { font-size: 4rem; margin-bottom: 1rem; }
.guarantee-badge h3 { color: #fff; font-size: 1.6rem; margin-bottom: .75rem; }
.guarantee-badge p { color: rgba(255,255,255,.8); margin: 0; }

.guarantee-list { display: flex; flex-direction: column; gap: 1.25rem; }
.guarantee-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.guarantee-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.guarantee-item h4 { color: #fff; margin-bottom: .25rem; font-size: 1rem; }
.guarantee-item p { color: rgba(255,255,255,.75); margin: 0; font-size: .9rem; }

/* ─── Testimonials ───────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.testimonial-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-text { font-size: .95rem; color: var(--text-body); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--text-dark); font-size: .92rem; }
.testimonial-area { font-size: .8rem; color: var(--text-muted); }

/* ─── FAQ Section ────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  gap: 1rem;
  user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: .7rem;
  color: var(--primary);
}
.faq-item.open .faq-arrow { background: var(--primary); color: #fff; transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ─── CTA Section ────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: .75rem; }
.cta-section p { color: rgba(255,255,255,.88); margin-bottom: 2rem; }
.cta-section .btn--primary { background: var(--bg-white); color: var(--primary); }
.cta-section .btn--primary:hover { background: var(--bg-light); }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Lead Form (WhatsApp) ───────────────────── */
.lead-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}
.lead-form-wrap h3 {
  font-size: 1.3rem;
  margin-bottom .5rem;
  color: var(--primary);
  text-align: center;
}
.lead-form-wrap .form-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .4rem;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition);
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,79,160,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 1rem; font-size: 1.05rem; margin-top: .5rem; }

/* ─── Floating Buttons ───────────────────────── */
.floating-btns {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
}
.floating-btn--call { background: var(--primary); color: #fff; }
.floating-btn--wa   { background: var(--whatsapp); color: #fff; }
.floating-btn:hover { transform: scale(1.12); }
.floating-btn-label {
  position: absolute;
  right: calc(100% + .6rem);
  background: var(--text-dark);
  color: #fff;
  font-size: .78rem;
  padding: .3rem .75rem;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}
.floating-btn:hover .floating-btn-label { opacity: 1; transform: translateX(0); }

/* ─── Breadcrumb ─────────────────────────────── */
.breadcrumb {
  padding: .85rem 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.breadcrumb__list li:not(:last-child)::after {
  content: '◂';
  font-size: .65rem;
  color: var(--text-light);
}
.breadcrumb__list a { color: var(--primary); }
.breadcrumb__list a:hover { text-decoration: underline; }

/* ─── Page Hero (inner pages) ────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 650px; margin: 0 auto; }

/* ─── Services Page ──────────────────────────── */
.service-detail {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail__inner { direction: ltr; }
.service-detail:nth-child(even) .service-detail__inner > * { direction: rtl; }
.service-detail__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-section);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.service-detail__eyebrow { color: var(--primary); font-size: .85rem; font-weight: 700; margin-bottom: .5rem; }
.service-detail h2 { margin-bottom: .75rem; }
.service-detail p { color: var(--text-muted); margin-bottom: 1.25rem; }
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.service-feature-tag {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: var(--bg-section);
  color: var(--primary);
  padding: .35rem .85rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
}
.service-feature-tag::before { content: '✓'; }

/* ─── About Page ─────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.value-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.value-card__icon { font-size: 2rem; margin-bottom: .85rem; }
.value-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.value-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.team-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.team-card h4 { font-size: 1rem; margin-bottom: .25rem; }
.team-card .role { font-size: .85rem; color: var(--primary); font-weight: 600; }
.team-card .exp { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }

/* ─── Contact Page ───────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
}
.contact-info-card {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-info-card h3 { color: #fff; margin-bottom: 1.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; color: rgba(255,255,255,.7); font-size: .8rem; margin-bottom: .15rem; }
.contact-info-text a, .contact-info-text span { color: #fff; font-size: 1rem; font-weight: 600; }

.contact-form-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { margin-bottom: 1.5rem; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* ─── Location Pages ─────────────────────────── */
.location-areas {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.area-tag {
  background: var(--bg-section);
  color: var(--primary);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid rgba(26,79,160,.15);
}
.location-cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: #fff;
  text-align: center;
}
.location-cta-box h3 { color: #fff; margin-bottom: .75rem; }
.location-cta-box p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }

/* ─── Internal Links Section ─────────────────── */
.internal-links {
  background: var(--bg-light);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.internal-links h4 { margin-bottom: 1rem; font-size: 1rem; }
.internal-links-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.internal-link-item {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .45rem .95rem;
  font-size: .85rem;
  color: var(--primary);
  transition: var(--transition);
}
.internal-link-item:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ─── Footer ─────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.footer__brand-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.footer__desc { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; line-height: 1.7; }
.footer__socials { display: flex; gap: .6rem; }
.footer__social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}
.footer__social:hover { background: var(--primary); }

.footer__col-title {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.1rem;
}
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer__links a::before { content: '◂'; font-size: .6rem; color: var(--accent); }
.footer__links a:hover { color: var(--accent); }

.footer__contact { display: flex; flex-direction: column; gap: .75rem; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .87rem;
  color: rgba(255,255,255,.7);
}
.footer__contact-item span:first-child { font-size: 1rem; }

.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer__copyright { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer__bottom-links { display: flex; gap: 1.25rem; }
.footer__bottom-links a { font-size: .82rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--accent); }

/* ─── Utility Classes ────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-white   { color: #fff; }
.fw-bold      { font-weight: 700; }
.mb-0         { margin-bottom: 0; }
.mt-1         { margin-top: 1rem; }
.mt-2         { margin-top: 2rem; }
.gap-1        { gap: 1rem; }
.d-flex       { display: flex; }
.align-center { align-items: center; }
.flex-wrap    { flex-wrap: wrap; }

/* ─── Animations ─────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeInUp .6s ease both;
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid  { grid-template-columns: repeat(2, 1fr); }
  .footer__grid     { grid-template-columns: 1fr 1fr; }
  .steps-grid       { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .navbar__nav,
  .navbar__cta { display: none; }
  .navbar__nav.open { display: flex; }

  .navbar__toggle { display: flex; }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 1rem 1.25rem;
    gap: .25rem;
  }
  .mobile-nav.open { display: flex !important; }
  .mobile-nav a {
    padding: .75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
  }
  .mobile-nav a:hover { background: var(--bg-section); color: var(--primary); }
  .mobile-nav__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid var(--border);
  }
  
  .mobile-nav__actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }

  .hero { min-height: auto; padding: 3rem 0; }
  .hero__inner,
  .guarantee-inner,
  .contact-grid,
  .service-detail__inner { grid-template-columns: 1fr; gap: 2rem; }

  .service-detail:nth-child(even) .service-detail__inner { direction: rtl; }

  .hero__stats { justify-content: center; }
  .hero__cta   { justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid,
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid  { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }

  .topbar { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }

  .section { padding: 3rem 0; }
  
  .navbar { padding: .75rem 0; }
  .navbar__logo-icon { width: 50px; height: 50px; font-size: 1.2rem; }
  .navbar__logo-name { font-size: 1rem; }
  .navbar__logo-tagline { font-size: .65rem; }
}

  .topbar { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }

  .section { padding: 3rem 0; }
}

@media (max-width: 576px) {
  :root { font-size: 14px; }
  
  .container { padding: 0 1rem; }
  
  .navbar {
    padding: .5rem 0;
    gap: .75rem;
  }
  
  .navbar__logo {
    gap: .5rem;
  }
  
  .navbar__logo-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .navbar__logo-name { 
    font-size: .9rem;
  }
  
  .navbar__logo-tagline { 
    font-size: .6rem;
  }
  
  .navbar__toggle {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    gap: 4px;
  }
  
  .navbar__toggle span {
    width: 20px;
    height: 1.5px;
  }
  
  .hero h1 { font-size: 1.5rem; line-height: 1.3; }
  .hero__desc { font-size: 1rem; }
  .hero__badge { font-size: .75rem; padding: .4rem 1rem; }
  .hero__card { padding: 1.5rem; }
  .hero__stats { gap: 1rem; }
  .hero__stat-number { font-size: 1.5rem; }
  .hero__stat-label { font-size: .75rem; }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  h4 { font-size: .95rem; }
  
  .btn { padding: .7rem 1.4rem; font-size: .9rem; gap: .4rem; }
  .btn--lg { padding: .9rem 1.8rem; font-size: 1rem; }
  .btn--sm { padding: .5rem 1rem; font-size: .85rem; }
  
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { padding: 1.5rem 0; }
  .stat-item__number { font-size: 1.8rem; }
  .stat-item__label { font-size: .8rem; }
  
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.25rem 1rem; }
  .service-card__icon { width: 50px; height: 50px; font-size: 1.5rem; margin-bottom: .75rem; }
  
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 1.5rem; }
  
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .step-card__num { width: 48px; height: 48px; font-size: 1.1rem; }
  
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 1.25rem; }
  
  .guarantee-badge { padding: 2rem; }
  .guarantee-badge__icon { font-size: 3rem; }
  
  .eyebrow { font-size: .72rem; padding: .25rem .75rem; }
  
  .team-grid { grid-template-columns: 1fr; }
  .team-avatar { width: 60px; height: 60px; font-size: 1.8rem; }
  
  .lead-form-wrap { padding: 1.5rem; }
  .form-group { margin-bottom: .85rem; }
  .form-group label { font-size: .82rem; margin-bottom: .35rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: .7rem .9rem; font-size: .9rem; }
  
  .floating-btns { bottom: 1rem; left: 1rem; gap: .6rem; }
  .floating-btn { width: 50px; height: 50px; font-size: 1.3rem; }
  
  .section { padding: 2.5rem 0; }
  .section__head { margin-bottom: 2rem; }
  .section__head h2 { margin-bottom: .5rem; }
  
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info-card { padding: 2rem; }
  .contact-form-card { padding: 1.5rem; }
  .map-wrap iframe { height: 280px; }
  
  .service-detail__inner { grid-template-columns: 1fr; }
  .service-detail__img { aspect-ratio: 16/10; font-size: 3.5rem; }
  .service-detail { padding: 2rem 0; }
  
  .footer__grid { grid-template-columns: 1fr; padding-bottom: 2rem; }
  .footer { padding: 2.5rem 0 0; }
  .footer__desc { font-size: .8rem; }
  .footer__col-title { font-size: .9rem; margin-bottom: 1rem; }
  .footer__links { gap: .5rem; }
  .footer__links a { font-size: .8rem; }
  
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-section { padding: 2.5rem 0; }
  
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 1.25rem; }
  
  .location-cta-box { padding: 2rem; }
  .page-hero { padding: 2rem 0; }
  .page-hero h1 { font-size: 1.3rem; margin-bottom: .5rem; }
  .page-hero p { font-size: .95rem; }
}

@media (max-width: 480px) {
  :root { font-size: 13px; }
  
  .container { padding: 0 .75rem; }
  
  .hero { padding: 2rem 0; }
  .hero h1 { font-size: 1.35rem; }
  .hero__inner { gap: 1.5rem; }
  .hero__badge { margin-bottom: 1rem; }
  .hero__cta { gap: .6rem; }
  .hero__stats { margin-bottom: 1.5rem; }
  
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { margin-bottom: 1rem; }
  
  .section { padding: 2rem 0; }
  .section__head { margin-bottom: 1.5rem; }
  
  .btn { padding: .6rem 1.2rem; font-size: .85rem; }
  .btn--lg { padding: .8rem 1.6rem; font-size: .95rem; }
  
  .mobile-nav__actions .btn {
    min-width: 130px;
    padding: .55rem 1rem;
    font-size: .8rem;
  }
  
  .stats-bar__grid { grid-template-columns: 1fr; }
  .stat-item__number { font-size: 1.6rem; }
  
  .cta-section h2 { font-size: 1.15rem; }
  .cta-section p { font-size: .9rem; margin-bottom: 1.5rem; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .lead-form-wrap h3 { font-size: 1.1rem; }
  .lead-form-wrap .form-sub { font-size: .82rem; }
  
  .guarantee-badge { padding: 1.5rem; }
  
  .team-avatar { width: 55px; height: 55px; }
  
  .map-wrap iframe { height: 250px; }
  
  .floating-btns { gap: .5rem; }
  
  .eyebrow { font-size: .65rem; }
}

/* ─── Print ──────────────────────────────────── */
@media print {
  .floating-btns, .topbar, .header, .footer, .cta-section { display: none; }
}

/* ─── Reduced Motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ─── Extra Small Mobile (320px - 375px) ───── */
@media (max-width: 375px) {
  :root { font-size: 12px; }
  
  .container { padding: 0 .65rem; }
  
  .navbar {
    padding: .4rem 0;
    gap: .5rem;
  }
  
  .navbar__logo {
    gap: .4rem;
  }
  
  .navbar__logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .navbar__logo-name { 
    font-size: .85rem;
  }
  
  .navbar__logo-tagline { 
    font-size: .55rem;
  }
  
  .navbar__toggle {
    width: 36px;
    height: 36px;
    gap: 3px;
  }
  
  .navbar__toggle span {
    width: 18px;
    height: 1.5px;
  }
  
  .hero { padding: 1.75rem 0; }
  .hero h1 { font-size: 1.25rem; line-height: 1.25; }
  .hero__desc { font-size: .95rem; margin-bottom: 1.5rem; }
  .hero__badge { font-size: .7rem; padding: .35rem .85rem; margin-bottom: .85rem; }
  
  .hero__stats { gap: .75rem; margin-bottom: 1.25rem; }
  .hero__stat { text-align: center; }
  .hero__stat-number { font-size: 1.3rem; }
  .hero__stat-label { font-size: .7rem; }
  
  .hero__cta { gap: .5rem; }
  .btn { padding: .55rem 1rem; font-size: .8rem; }
  .btn--lg { padding: .7rem 1.4rem; font-size: .9rem; }
  
  .mobile-nav__actions .btn {
    min-width: 120px;
    padding: .5rem .8rem;
    font-size: .75rem;
  }
  
  .hero__card { padding: 1.25rem; }
  .hero__card-title { font-size: .95rem; margin-bottom: 1rem; gap: .5rem; }
  .hero__feature { gap: .6rem; font-size: .85rem; }
  .hero__feature-icon { width: 30px; height: 30px; font-size: .95rem; }
  
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.05rem; }
  h3 { font-size: .9rem; }
  h4 { font-size: .85rem; }
  
  .stats-bar { padding: 1.25rem 0; }
  .stat-item__number { font-size: 1.5rem; }
  .stat-item__label { font-size: .7rem; }
  
  .service-card { padding: 1rem; }
  .service-card__icon { width: 45px; height: 45px; font-size: 1.3rem; margin-bottom: .5rem; }
  .service-card h3 { font-size: .9rem; margin-bottom: .35rem; }
  .service-card p { font-size: .8rem; }
  
  .why-card { padding: 1.25rem; }
  .why-card__icon { font-size: 1.8rem; margin-bottom: .75rem; }
  .why-card h3 { margin-bottom: .4rem; font-size: .9rem; }
  .why-card p { font-size: .8rem; }
  
  .step-card__num { width: 42px; height: 42px; font-size: .95rem; }
  .step-card h3 { font-size: .85rem; }
  .step-card p { font-size: .75rem; }
  
  .testimonial-card { padding: 1rem; }
  .testimonial-text { font-size: .85rem; margin-bottom: 1rem; }
  .testimonial-avatar { width: 38px; height: 38px; font-size: 1.1rem; }
  .testimonial-name { font-size: .8rem; }
  .testimonial-area { font-size: .7rem; }
  
  .guarantee-badge { padding: 1.25rem; }
  .guarantee-badge__icon { font-size: 2.5rem; margin-bottom: .75rem; }
  .guarantee-badge h3 { font-size: 1.4rem; }
  
  .eyebrow { font-size: .6rem; padding: .2rem .65rem; }
  
  .form-group { margin-bottom: .7rem; }
  .form-group label { font-size: .75rem; margin-bottom: .3rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: .6rem .8rem; font-size: .85rem; }
  
  .lead-form-wrap { padding: 1.25rem; }
  .lead-form-wrap h3 { font-size: 1.05rem; margin-bottom: .35rem; }
  .lead-form-wrap .form-sub { font-size: .75rem; }
  
  .floating-btn { width: 45px; height: 45px; font-size: 1.1rem; }
  
  .section { padding: 1.75rem 0; }
  .section__head { margin-bottom: 1.25rem; }
  .section__head h2 { margin-bottom: .4rem; }
  .section__head .lead { font-size: .95rem; }
  
  .contact-info-card { padding: 1.5rem; }
  .contact-form-card { padding: 1.25rem; }
  .map-wrap iframe { height: 220px; }
  
  .page-hero { padding: 1.5rem 0; }
  .page-hero h1 { font-size: 1.15rem; }
  .page-hero p { font-size: .9rem; }
  
  .footer { padding: 2rem 0 0; }
  .footer__brand-name { font-size: 1rem; }
  .footer__brand-icon { width: 35px; height: 35px; font-size: 1.1rem; }
  .footer__desc { font-size: .75rem; margin-bottom: 1rem; }
  .footer__col-title { font-size: .82rem; margin-bottom: .9rem; }
  .footer__links a { font-size: .75rem; }
  .footer__copyright { font-size: .7rem; }
}
  
  .hero__stats { gap: .75rem; margin-bottom: 1.25rem; }
  .hero__stat { text-align: center; }
  .hero__stat-number { font-size: 1.3rem; }
  .hero__stat-label { font-size: .7rem; }
  
  .hero__cta { gap: .5rem; }
  .btn { padding: .55rem 1rem; font-size: .8rem; }
  .btn--lg { padding: .7rem 1.4rem; font-size: .9rem; }
  
  .hero__card { padding: 1.25rem; }
  .hero__card-title { font-size: .95rem; margin-bottom: 1rem; gap: .5rem; }
  .hero__feature { gap: .6rem; font-size: .85rem; }
  .hero__feature-icon { width: 30px; height: 30px; font-size: .95rem; }
  
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.05rem; }
  h3 { font-size: .9rem; }
  h4 { font-size: .85rem; }
  
  .stats-bar { padding: 1.25rem 0; }
  .stat-item__number { font-size: 1.5rem; }
  .stat-item__label { font-size: .7rem; }
  
  .service-card { padding: 1rem; }
  .service-card__icon { width: 45px; height: 45px; font-size: 1.3rem; margin-bottom: .5rem; }
  .service-card h3 { font-size: .9rem; margin-bottom: .35rem; }
  .service-card p { font-size: .8rem; }
  
  .why-card { padding: 1.25rem; }
  .why-card__icon { font-size: 1.8rem; margin-bottom: .75rem; }
  .why-card h3 { margin-bottom: .4rem; font-size: .9rem; }
  .why-card p { font-size: .8rem; }
  
  .step-card__num { width: 42px; height: 42px; font-size: .95rem; }
  .step-card h3 { font-size: .85rem; }
  .step-card p { font-size: .75rem; }
  
  .testimonial-card { padding: 1rem; }
  .testimonial-text { font-size: .85rem; margin-bottom: 1rem; }
  .testimonial-avatar { width: 38px; height: 38px; font-size: 1.1rem; }
  .testimonial-name { font-size: .8rem; }
  .testimonial-area { font-size: .7rem; }
  
  .guarantee-badge { padding: 1.25rem; }
  .guarantee-badge__icon { font-size: 2.5rem; margin-bottom: .75rem; }
  .guarantee-badge h3 { font-size: 1.4rem; }
  
  .eyebrow { font-size: .6rem; padding: .2rem .65rem; }
  
  .form-group { margin-bottom: .7rem; }
  .form-group label { font-size: .75rem; margin-bottom: .3rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: .6rem .8rem; font-size: .85rem; }
  
  .lead-form-wrap { padding: 1.25rem; }
  .lead-form-wrap h3 { font-size: 1.05rem; margin-bottom: .35rem; }
  .lead-form-wrap .form-sub { font-size: .75rem; }
  
  .floating-btn { width: 45px; height: 45px; font-size: 1.1rem; }
  
  .section { padding: 1.75rem 0; }
  .section__head { margin-bottom: 1.25rem; }
  .section__head h2 { margin-bottom: .4rem; }
  .section__head .lead { font-size: .95rem; }
  
  .contact-info-card { padding: 1.5rem; }
  .contact-form-card { padding: 1.25rem; }
  .map-wrap iframe { height: 220px; }
  
  .page-hero { padding: 1.5rem 0; }
  .page-hero h1 { font-size: 1.15rem; }
  .page-hero p { font-size: .9rem; }
  
  .footer { padding: 2rem 0 0; }
  .footer__brand-name { font-size: 1rem; }
  .footer__brand-icon { width: 35px; height: 35px; font-size: 1.1rem; }
  .footer__desc { font-size: .75rem; margin-bottom: 1rem; }
  .footer__col-title { font-size: .82rem; margin-bottom: .9rem; }
  .footer__links a { font-size: .75rem; }
  .footer__copyright { font-size: .7rem; }
}

/* tobar */

.topbar {
    background: #0f172a;
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 56px;
}

.topbar__contacts,
.topbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e5e7eb;
    text-decoration: none;
    transition: .25s ease;
}

.contact-link:hover {
    color: #fff;
}

.contact-link i {
    color: #f59e0b;
    font-size: 13px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: all .3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25D366;
    box-shadow: 0 6px 16px rgba(37,211,102,.25);
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 24px rgba(37,211,102,.35);
}

.facebook-btn {
    background: #1877F2;
    box-shadow: 0 6px 16px rgba(24,119,242,.25);
}

.facebook-btn:hover {
    box-shadow: 0 10px 24px rgba(24,119,242,.35);
}

.working-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    margin-right: 8px;
}

.working-hours i {
    color: #f59e0b;
}

@media (max-width: 992px) {
    .topbar__inner {
        flex-direction: column;
        padding: 10px 0;
        min-height: auto;
    }

    .topbar__contacts,
    .topbar__actions {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .working-hours {
        margin-right: 0;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .topbar { padding: .3rem 0; }
    .topbar__inner {
        min-height: 50px;
        padding: 6px 0;
    }
    
    .contact-link { gap: 6px; font-size: 12px; }
    .contact-link i { font-size: 11px; }
    .social-btn { padding: 6px 12px; font-size: 12px; }
    .working-hours { font-size: 12px; }
}

/* ─── Mobile Topbar Extra Adjustments ────── */
@media (max-width: 576px) {
    .topbar { 
        padding: 0.2rem 0; 
        display: flex;
    }
    
    .topbar__inner {
        flex-wrap: wrap;
        gap: 6px;
        min-height: auto;
        padding: 6px 1.25rem;
    }

    .contact-link { 
        gap: 4px; 
        font-size: 11px;
    }
    
    .contact-link span {
        font-size: 11px;
    }
    
    .contact-link i { 
        font-size: 10px;
    }

    .social-btn {
        padding: 5px 10px;
        font-size: 11px;
        gap: 4px;
    }

    .working-hours {
        width: 100%;
        justify-content: center;
        font-size: 11px;
        margin-right: 0;
    }
    
    .working-hours i {
        font-size: 11px;
    }
}

/* navbar */

.navbar__dropdown{
    position:relative;
}

.navbar__dropdown-menu{
    position:absolute;
    top:100%;
    right:0;
    min-width:240px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #eee;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.25s;
}

.navbar__dropdown:hover .navbar__dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.navbar__dropdown{
    position: relative;
}

.navbar__dropdown-toggle{
    display:flex;
    align-items:center;
    gap:.4rem;
    cursor:pointer;
}

.navbar__dropdown-menu{
    position:absolute;
    top:calc(100% + 1px);
    right:0;

    width:260px;
    background:#fff;

    border:1px solid #e5e7eb;
    border-radius:16px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:.25s ease;

    overflow:hidden;
    z-index:1000;
}

@media (max-width: 768px) {
    .navbar__dropdown-menu {
        width: 240px;
    }
    
    .navbar__dropdown-menu a {
        padding: 12px 16px;
        font-size: .9rem;
    }
}

@media (max-width: 576px) {
    .navbar__dropdown-menu {
        width: 200px;
    }
    
    .navbar__dropdown-menu a {
        padding: 10px 14px;
        font-size: .8rem;
    }
}

.navbar__dropdown:hover .navbar__dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.navbar__dropdown-menu a{
    display:block;
    padding:14px 18px;
    color:#334155;
    text-decoration:none;
    transition:.2s;
}

.navbar__dropdown-menu a:hover{
    background:#f8fafc;
    color:var(--primary);
}