/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Noto Sans Armenian', 'Manrope', sans-serif;
  background: #f8f7f3;
  color: #1e2a3a;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Content container — 1440px max inner width */
.container {
  max-width: 1366px;
  margin: 0 auto;
  width: 100%;
}

a {
  color: #2b5a8c;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #1d4670;
}

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

/* ===== DESIGN TOKENS ===== */
:root {
  /* Primary palette */
  --navy-dark: #0f1b2d;
  --navy: #1a2e4a;
  --navy-light: #2b4066;

  /* Accent — warm amber/orange */
  --accent: #c87a1e;
  --accent-light: #e09a3c;
  --accent-glow: rgba(200, 122, 30, 0.18);
  --accent-soft: rgba(200, 122, 30, 0.12);

  /* Blue accent for links/buttons */
  --blue: #2b5a8c;
  --blue-dark: #1d4670;
  --blue-light: #3a6fa3;

  /* Neutrals */
  --bg-primary: #f8f7f3;
  --bg-secondary: #eceae4;
  --bg-card: #fbfaf8;
  --border: #ddd9d0;
  --text-primary: #1e2a3a;
  --text-secondary: #5a6577;
  --text-muted: #8a94a3;
  --text-on-dark: #e8eaef;
  --text-on-dark-muted: #b5bcc8;

  /* Stars */
  --star-color: #d4a030;

  /* Spacing */
  --section-padding: 100px 64px;
  --nav-padding: 16px 32px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 20px;
  --radius-circle: 50%;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease);
  --transition-normal: 0.35s var(--ease);
  --transition-slow: 0.5s var(--ease);
}

/* ===== KEYFRAMES ===== */
@keyframes flamePulse {
  0%, 100% { transform: scale(1) rotate(45deg); opacity: 1; }
  50% { transform: scale(1.08) rotate(45deg); opacity: 0.85; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50% { opacity: 0.28; transform: scale(1.05); }
}

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

/* Animate on scroll — hidden by default */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: var(--nav-padding);
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

.nav-brand-text {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--navy);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
}

.nav-links a {
  color: #3a4455;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-normal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  background: var(--blue);
  color: #f8f7f3 !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--blue-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 120px 64px 110px;
  background: url('images/Hero%20BG.webp') center/cover no-repeat;
  color: var(--text-on-dark);
  overflow: hidden;
}

/* Blue overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 27, 45, 0.88), rgba(26, 46, 74, 0.82));
  z-index: 0;
}

.hero-glow {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: var(--radius-circle);
  background: var(--accent-glow);
  filter: blur(10px);
  animation: heroGlow 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-circle);
  background: rgba(43, 90, 140, 0.15);
  filter: blur(40px);
  pointer-events: none;
}

.hero-content {
  max-width: 750px;
  z-index: 1;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent-light);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.hero-desc {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #f8f0d8 !important;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-phone-btn:hover {
  background: var(--accent-light);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 122, 30, 0.35);
}

.hero-phone-sub {
  font-size: 15px;
  color: var(--text-on-dark-muted);
}

.hero-image {
  z-index: 1;
  display: flex;
  gap: 20px;
  animation: slideInRight 0.9s var(--ease) 0.2s both;
}

.hero-image-placeholder {
  width: 340px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== STATS ===== */
.stats {
  padding: 48px 64px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
}

.stat-label {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== SECTION COMMONS ===== */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 27, 45, 0.25);
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--transition-fast), background var(--transition-fast);
  color: var(--accent);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.15);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  transition: color var(--transition-normal);
}

.service-card:hover h3 {
  color: #fff;
}

.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color var(--transition-normal);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Base connector line (grey) */
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 3px;
  background: var(--border);
  z-index: 0;
}

/* Fill connector line (orange, width driven by JS via --fill) */
.process-grid::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  width: var(--fill, 0%);
  height: 3px;
  background: var(--accent);
  z-index: 0;
  max-width: calc(100% - 2 * (12.5% + 28px));
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-circle);
  background: var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
}

/* Active state — filled by scroll */
.process-number.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(200, 122, 30, 0.35);
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-check {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.4;
}

.why-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.why-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.pricing-card.featured {
  background: var(--navy-dark);
  border: none;
  color: #fff;
  position: relative;
  box-shadow: 0 20px 60px rgba(15, 27, 45, 0.35);
}

.pricing-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(15, 27, 45, 0.45);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 34px;
  font-weight: 800;
  color: var(--blue);
  margin: 16px 0;
}

.pricing-card.featured .pricing-price {
  color: var(--accent-light);
}

.pricing-features {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-features {
  color: var(--text-on-dark-muted);
}

.pricing-includes {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pricing-card.featured .pricing-includes {
  color: var(--text-on-dark-muted);
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.pricing-features-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 24px;
  position: relative;
}

.pricing-features-list li:last-child {
  border-bottom: none;
}

.pricing-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.pricing-card.featured .pricing-features-list li {
  color: var(--text-on-dark-muted);
  border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-card.featured .pricing-features-list li::before {
  color: var(--accent-light);
}

.pricing-btn {
  display: inline-block;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.pricing-btn:hover {
  background: var(--blue);
  color: #fff;
}

.pricing-card.featured .pricing-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* ===== REVIEWS SLIDER ===== */
.reviews-slider {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-track .review-card {
  flex-shrink: 0;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.reviews-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.reviews-arrow:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: #fff;
}

.reviews-dots {
  display: flex;
  gap: 10px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.reviews-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

.review-stars {
  color: var(--star-color);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.review-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: var(--section-padding);
  background: url('images/Team.webp') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 27, 45, 0.88), rgba(26, 46, 74, 0.82));
  z-index: 0;
}

.about-image {
  width: 460px;
  height: 360px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.about-content .section-label {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent-light);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: none;
  letter-spacing: 0;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.quote-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  color: var(--accent-light);
}

.quote-icon {
  width: 28px;
  height: 28px;
}

.about-quote {
  font-size: 18px;
  line-height: 1.8;
  color: #f3f4f6;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 24px;
  border: none;
  padding: 0;
}

.quote-author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
}

.quote-author-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.quote-author-title {
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  margin-bottom: 16px;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

.about-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 32px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.about-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--accent);
}

.contact-icon {
  font-size: 26px;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.contact-card a {
  display: block;
  font-size: 15px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-card a:last-child {
  margin-bottom: 0;
}

.contact-card p {
  font-size: 15px;
  color: #3a4455;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: var(--text-on-dark-muted);
  font-size: 14px;
  overflow: hidden;
}

.footer-map {
  position: relative;
  width: 100%;
  line-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.footer-map iframe {
  width: 100%;
  height: 240px;
  filter: saturate(0.7) contrast(1.05);
  transition: filter var(--transition-normal);
}

.footer-map:hover iframe {
  filter: saturate(1) contrast(1);
}

.footer-content {
  padding: 48px 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: var(--text-on-dark-muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 260px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-on-dark-muted);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.footer-contact-link:hover {
  color: var(--accent-light);
}

.footer-contact-link svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-on-dark-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.footer-address svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-on-dark-muted);
  transition: color var(--transition-fast);
  font-size: 14px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-on-dark-muted);
  opacity: 0.7;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 27, 45, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--accent-light);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    padding: 80px 40px 60px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 320px;
  }

  .services-grid,
  .reviews-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }

  .process-grid::before {
    display: none;
  }

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

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

  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
  }

  .about-content .section-label {
    text-align: center;
  }

  .stats {
    gap: 40px;
    flex-wrap: wrap;
  }

  .pricing-card.featured {
    transform: scale(1);
    order: -1;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 56px 20px;
  }

  .container {
    max-width: 100%;
  }

  /* ——— Navbar ——— */
  .navbar {
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .nav-logo-img {
    height: 26px;
  }

  /* ——— Hero ——— */
  .hero {
    padding: 50px 20px 44px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-phone-btn {
    padding: 12px 22px;
    font-size: 15px;
  }

  .hero-image-placeholder {
    height: 220px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a,
  .hero-actions .hero-phone-btn {
    text-align: center;
    justify-content: center;
  }

  /* ——— Section headings ——— */
  .section-title {
    font-size: 26px;
  }

  .section-desc {
    font-size: 15px;
  }

  .section-label {
    font-size: 13px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* ——— Stats ——— */
  .stats {
    padding: 32px 20px;
  }

  .stats .container {
    gap: 24px !important;
  }

  .stats .stat-item {
    width: calc(50% - 12px);
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 13px;
  }

  /* ——— Services ——— */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 28px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  /* ——— Process (vertical on mobile) ——— */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: 64px;
  }

  .process-grid::before {
    top: 24px;
    left: 30px;
    right: auto;
    bottom: 24px;
    width: 3px;
    height: auto;
  }

  .process-grid::after {
    top: 24px;
    left: 30px;
    right: auto;
    width: 3px;
    height: var(--fill, 0%);
    max-width: none;
  }

  .process-step {
    text-align: left;
    padding: 0;
    position: relative;
  }

  .process-number {
    position: absolute;
    left: -58px;
    top: 0;
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin: 0;
  }

  .process-step h3 {
    font-size: 16px;
    margin-top: 6px;
  }

  .process-step p {
    font-size: 13px;
  }

  /* ——— About ——— */
  .about {
    padding: 56px 20px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 15px;
  }

  .about-quote {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .quote-icon-wrapper {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .quote-icon {
    width: 22px;
    height: 22px;
  }

  .about-content .section-label {
    font-size: 12px;
    padding: 6px 14px;
  }

  /* ——— Why Us ——— */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-item h3 {
    font-size: 15px;
  }

  .why-item p {
    font-size: 14px;
  }

  /* ——— Pricing ——— */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .pricing-price {
    font-size: 28px;
  }

  /* ——— Reviews Slider (1 per view on mobile) ——— */
  .reviews-track {
    gap: 16px;
  }

  .review-card {
    padding: 14px 16px;
  }

  .review-text {
    font-size: 11px;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .review-stars {
    font-size: 11px;
    margin-bottom: 6px;
    letter-spacing: 1px;
  }

  .review-author {
    font-size: 11px;
  }

  .review-location {
    font-size: 10px;
  }

  .reviews-nav {
    margin-top: 20px;
    gap: 12px;
  }

  .reviews-arrow {
    width: 36px;
    height: 36px;
  }

  .reviews-dot {
    width: 8px;
    height: 8px;
  }

  /* ——— Contact grid fix ——— */
  #contact div[style*="grid-template-columns"] {
    grid-template-columns: 1fr 1fr !important;
  }

  #contact h3 {
    font-size: 12px !important;
  }

  #contact a,
  #contact p {
    font-size: 15px !important;
  }

  /* ——— Footer ——— */
  .footer-content {
    padding: 32px 16px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-logo {
    margin: 0 auto 12px;
  }

  .footer-contact-link {
    justify-content: center;
  }

  .footer-address {
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-map iframe {
    height: 200px;
  }

  .footer {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 48px 16px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 22px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-quote {
    font-size: 16px;
    line-height: 1.6;
  }

  .pricing-price {
    font-size: 24px;
  }

  /* Contact stacks fully on small screens */
  #contact div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}
