/* ═══════════════════════════════════════════
   Maple Shine Cleaning — Modern Design System
   ═══════════════════════════════════════════ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #0f172a;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --accent-soft: #fbbf24;
  --text: #0f172a;
  --muted: #64748b;
  --surface: #f8fafc;
  --surface-2: #f1f5f9;
  --white: #ffffff;
  --border: rgba(148, 163, 184, 0.25);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
  --radius: 20px;
  --radius-lg: 28px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.4s var(--ease-out);
}

/* ─── Keyframe Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.2); }
  50% { box-shadow: 0 0 40px rgba(6, 182, 212, 0.35); }
}

@keyframes meshMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(2%, -2%) scale(1.02); }
  66% { transform: translate(-1%, 1%) scale(0.98); }
}

@keyframes loaderBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes drawerItemIn {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── Base ─── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(37, 99, 235, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(6, 182, 212, 0.1), transparent),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(245, 158, 11, 0.06), transparent);
  animation: meshMove 20s ease-in-out infinite;
}

::selection {
  background: rgba(37, 99, 235, 0.2);
  color: var(--primary-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
  scroll-margin-top: 100px;
}

/* ─── Page Loader ─── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo .logo-icon {
  width: 56px;
  height: 56px;
  font-size: 22px;
  animation: pulseGlow 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 120px;
  height: 3px;
  background: var(--surface-2);
  border-radius: 999px;
  margin-top: 20px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 999px;
  animation: loaderBar 0.8s var(--ease-out) forwards;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bg-mesh,
  .floating-card,
  .hero-image img,
  .nav-menu.active,
  .nav-menu.active .mobile-drawer-links > a,
  .top-bar-dot {
    animation: none !important;
  }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-size: 200% 200%;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
  animation: gradientShift 4s ease infinite;
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  border-color: var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: var(--primary);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

/* ─── Top Bar ─── */
.top-bar {
  background: linear-gradient(90deg, #0b1220 0%, #111d33 55%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.12), transparent 40%, rgba(6, 182, 212, 0.1));
  pointer-events: none;
}

.top-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  animation: shimmer 4s linear infinite;
  background-size: 200% 100%;
  pointer-events: none;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 6px 0;
  position: relative;
  z-index: 1;
}

.top-bar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.top-bar-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  animation: topBarPulse 2.2s ease-in-out infinite;
}

@keyframes topBarPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45); }
  50% { box-shadow: 0 0 0 5px rgba(52, 211, 153, 0); }
}

.top-bar-tag-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-spring);
}

.top-bar-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.92;
}

.top-bar-link:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateY(-1px);
}

.top-bar-link--email .top-bar-email-text {
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar-phone-short,
.top-bar-email-short {
  display: none;
}

@media (max-width: 900px) {
  .top-bar-tag-text {
    max-width: 200px;
  }

  .top-bar-link--email .top-bar-email-text {
    max-width: 140px;
  }
}

@media (max-width: 640px) {
  .top-bar-content {
    min-height: auto;
    padding: 8px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .top-bar-tag {
    display: none;
  }

  .top-bar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .top-bar-link {
    width: 100%;
    max-width: none;
    justify-content: center;
    min-height: 36px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .top-bar-phone-full,
  .top-bar-email-text {
    display: none;
  }

  .top-bar-phone-short,
  .top-bar-email-short {
    display: inline;
  }
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.88);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.nav-wrapper {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 19px;
  color: var(--primary-dark);
  white-space: nowrap;
  letter-spacing: -0.03em;
  transition: transform 0.3s var(--ease-spring);
}

.logo:hover {
  transform: scale(1.02);
}

.logo span span {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
}

/* Mobile drawer — desktop: flatten structure, show nav links only */
.mobile-drawer-header,
.mobile-drawer-footer,
.mobile-drawer-actions,
.mobile-drawer-shortcuts,
.mobile-drawer-contact,
.drawer-divider,
.drawer-service-list,
.drawer-view-all,
.drawer-contact-row,
.drawer-section-title,
.drawer-link-icon,
.drawer-link-arrow {
  display: none;
}

.mobile-drawer-body,
.drawer-nav-section,
.mobile-drawer-links {
  display: contents;
}

.nav-menu:not(.active) .mobile-drawer-links > a {
  display: inline-flex;
  align-items: center;
  width: auto;
  box-shadow: none;
  border: none;
  background: transparent;
  animation: none;
}

.nav-menu a {
  position: relative;
  padding: 10px 16px;
  color: var(--muted);
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-dark);
  background: rgba(37, 99, 235, 0.06);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: calc(100% - 32px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--primary-dark);
  margin: 5px 0;
  transform-origin: center;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.nav-menu-overlay {
  display: none;
}

/* ─── Hero ─── */
.hero {
  overflow: hidden;
  position: relative;
  padding-top: 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.08), transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(6, 182, 212, 0.1), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary-dark) 30%, var(--primary) 70%, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.badge,
.section-heading span,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseGlow 2s ease infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 520px;
}

.hero-stats div,
.feature-pill,
.detail-card,
.service-page-card,
.service-card,
.why-card,
.review-card,
.price-card,
.contact-cards div,
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, border-color 0.3s ease;
}

.hero-stats div {
  padding: 20px;
  text-align: center;
}

.hero-stats div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(37, 99, 235, 0.2);
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

.hero-card {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.15));
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.hero-card:hover .hero-image img {
  transform: scale(1.03);
}

.floating-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: floatSlow 4s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
}

.floating-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.card-one {
  top: 36px;
  left: -24px;
  animation-delay: 0s;
}

.card-two {
  right: -20px;
  bottom: 64px;
  animation-delay: 1.5s;
}

/* ─── Feature Strip ─── */
.feature-strip {
  padding: 24px 0;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-pill {
  padding: 18px 16px;
  text-align: center;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  cursor: default;
}

.feature-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(37, 99, 235, 0.25);
}

/* ─── Section Headings ─── */
.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-heading h2,
.about-content h2,
.quote-content h2,
.detail-card h2,
.page-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-heading p,
.about-content p,
.quote-content p,
.detail-card p,
.page-hero p,
.service-intro p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ─── Grids ─── */
.service-preview-grid,
.services-grid,
.why-grid,
.pricing-grid,
.reviews-grid,
.gallery-grid,
.city-grid,
.info-grid,
.process-grid,
.service-detail-grid,
.industry-grid,
.contact-grid,
.split-grid,
.page-highlights,
.quick-links-grid {
  display: grid;
  gap: 24px;
}

.service-preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ─── Services page cards ─── */
.services-grid .service-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
}

.services-grid .service-card::before {
  display: none;
}

.services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.service-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.services-grid .service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.45));
  pointer-events: none;
}

.service-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 16px;
}

.services-grid .service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.14));
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease-spring);
}

.services-grid .service-card-icon svg {
  width: 22px;
  height: 22px;
}

.services-grid .service-card:hover .service-card-icon {
  transform: scale(1.08);
}

.services-grid .service-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.services-grid .service-card p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.service-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-card-features li {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark);
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 22px;
  margin-top: auto;
  border-top: 1px solid var(--border);
}

.service-card-footer span {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  transition: transform 0.25s var(--ease-out);
}

.service-card-footer svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.25s var(--ease-out);
}

.services-grid .service-card:hover .service-card-footer span {
  transform: translateX(2px);
}

.services-grid .service-card:hover .service-card-footer svg {
  transform: translateX(4px);
}

/* ─── Cards ─── */
.service-page-card,
.service-card,
.why-card,
.review-card,
.price-card,
.info-card,
.detail-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.service-page-card::before,
.service-card::before,
.info-card::before,
.detail-card::before,
.price-card::before,
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-page-card:hover::before,
.service-card:hover::before,
.info-card:hover::before,
.detail-card:hover::before,
.price-card:hover::before,
.review-card:hover::before {
  opacity: 1;
}

.service-page-card:hover,
.service-card:hover,
.why-card:hover,
.review-card:hover,
.price-card:hover,
.detail-card:hover,
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(37, 99, 235, 0.2);
}

.service-page-card .icon,
.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease-spring);
}

.service-page-card:hover .icon,
.service-card:hover .icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-page-card h3,
.service-card h3,
.why-card h3,
.price-card h3,
.info-card h3,
.detail-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.service-page-card p,
.service-card p,
.why-card p,
.price-card p,
.review-card p,
.info-card p,
.detail-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.service-page-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  transition: gap 0.3s var(--ease-out);
}

.service-page-card:hover span {
  gap: 12px;
}

/* ─── Alt Sections ─── */
.alt-section,
.about,
.faq,
.gallery,
.service-areas {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  position: relative;
}

.split-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.soft-card,
.accent-card {
  padding: 36px;
}

.accent-card {
  background: linear-gradient(135deg, var(--primary-dark), #1e3a5f);
  color: var(--white);
  border: none;
  position: relative;
  overflow: hidden;
}

.accent-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
  pointer-events: none;
}

.accent-card h2,
.accent-card p {
  color: var(--white);
  position: relative;
}

.accent-card .section-label {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.detail-list,
.check-list,
.highlights-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.detail-list li,
.check-list div,
.highlights-list li {
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-dark);
  transition: transform 0.3s var(--ease-out), background 0.3s ease;
}

.detail-list li:hover,
.check-list div:hover,
.highlights-list li:hover {
  transform: translateX(4px);
  background: rgba(37, 99, 235, 0.05);
}

.accent-card .detail-list li,
.accent-card .check-list div,
.accent-card .highlights-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.why-card {
  background: linear-gradient(180deg, var(--white), var(--surface));
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.home-quote-panel {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-quote-panel-head {
  padding: 32px 32px 28px;
  background: linear-gradient(135deg, #0f2744 0%, #1d4f8c 55%, #2563eb 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.home-quote-panel-head::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.28), transparent 65%);
  pointer-events: none;
}

.home-quote-panel-head > * {
  position: relative;
  z-index: 1;
}

.home-quote-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.home-quote-panel-head h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
}

.home-quote-panel-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 420px;
}

.home-quote-perks {
  list-style: none;
  margin: 0;
  padding: 24px 32px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-quote-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.home-quote-perk-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.14));
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-quote-perk-icon svg {
  width: 14px;
  height: 14px;
}

.home-quote-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 32px 0;
  padding: 16px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}

.home-quote-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s var(--ease-out);
}

.home-quote-cta:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}

.home-quote-cta:hover svg {
  transform: translateX(4px);
}

.home-quote-call {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 32px 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.home-quote-call:hover {
  background: #f8fafc;
  border-color: rgba(37, 99, 235, 0.2);
}

.home-quote-call-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-quote-call-icon svg {
  width: 18px;
  height: 18px;
}

.home-quote-call em {
  display: block;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 2px;
}

.home-quote-call strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
}

.home-quote-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 24px 32px 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.home-quote-stats div {
  text-align: center;
  padding: 0 8px;
}

.home-quote-stats div:not(:last-child) {
  border-right: 1px solid var(--border);
}

.home-quote-stats strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.home-quote-stats span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease-out);
}

.about-images:hover .about-main {
  transform: scale(1.02);
}

.experience-box {
  position: absolute;
  right: -20px;
  bottom: 40px;
  width: 170px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

.experience-box strong {
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experience-box span {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

/* ─── City / Gallery / Reviews ─── */
.city-grid {
  grid-template-columns: repeat(4, 1fr);
}

.city-grid div {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  text-align: center;
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.city-grid div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-glow);
}

.price-card.featured:hover {
  transform: scale(1.06) translateY(-4px);
}

.popular {
  position: absolute;
  top: -14px;
  left: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.price-card li {
  color: var(--muted);
  font-size: 14px;
}

.price-card li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  margin-right: 8px;
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  margin-top: 32px;
  font-weight: 600;
}

.pricing-note a {
  color: var(--primary);
  font-weight: 700;
}

.quote-info a,
.quote-info span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.quote-info a:hover {
  color: var(--white);
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease-out), box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow);
}

.reviews-grid {
  grid-template-columns: repeat(4, 1fr);
}

.review-card .stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-weight: 800;
}

.review-card h4 {
  margin-top: 16px;
  color: var(--primary-dark);
  font-weight: 700;
}

.review-card span {
  color: var(--muted);
  font-size: 13px;
}

/* ─── Quote Section ─── */
.quote {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 58, 95, 0.92)),
    url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1200&q=80") center/cover;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1), transparent 25%);
  pointer-events: none;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.quote-content h2,
.quote-content p {
  color: var(--white);
}

.quote-content .section-label {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.quote-info {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.quote-info div {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.quote-info div:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.quote-info strong,
.quote-info span,
.quote-info a {
  display: block;
}

.quote-info strong {
  margin-bottom: 4px;
}

.quote-form {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-btn {
  width: 100%;
}

.form-message {
  margin-top: 14px;
  text-align: center;
  font-weight: 700;
  color: var(--accent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-item.active {
  border-color: rgba(37, 99, 235, 0.25);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question span {
  font-size: 22px;
  color: var(--primary);
  transition: transform 0.4s var(--ease-spring);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* ─── Contact / Page Hero ─── */
.contact-grid,
.page-hero-grid,
.page-highlights,
.service-detail-grid,
.industry-grid,
.info-grid,
.process-grid {
  grid-template-columns: repeat(2, 1fr);
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-cards div {
  padding: 20px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.contact-cards div:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.contact-cards strong,
.contact-cards a,
.contact-cards span {
  display: block;
}

.contact-cards strong {
  color: var(--primary-dark);
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-cards a,
.contact-cards span {
  color: var(--muted);
  font-size: 14px;
}

.contact-cards a:hover {
  color: var(--primary);
}

.map-box {
  min-height: 380px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(6, 182, 212, 0.1)),
    var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
}

/* ─── Contact Page (v2) ─── */
.contact-page {
  background: #f1f5f9;
}

.contact-main {
  overflow: hidden;
}

.contact-intro {
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.08), transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(6, 182, 212, 0.08), transparent 38%),
    linear-gradient(180deg, #f8fafc, #f1f5f9);
}

.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.contact-intro-content {
  text-align: left;
}

.contact-breadcrumbs {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.contact-intro .badge {
  margin-bottom: 16px;
}

.contact-intro h1 {
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 16px;
  max-width: 620px;
  background: linear-gradient(135deg, var(--primary-dark) 30%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-intro-content > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 32px;
}

.contact-intro-visual {
  position: relative;
}

.contact-intro-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  position: relative;
}

.contact-intro-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.18));
  pointer-events: none;
}

.contact-intro-image img {
  display: block;
  width: 100%;
  height: clamp(320px, 38vw, 440px);
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.contact-intro-visual:hover .contact-intro-image img {
  transform: scale(1.03);
}

.contact-intro-float {
  position: absolute;
  left: -20px;
  bottom: 28px;
  max-width: 240px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-intro-float strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.contact-intro-float span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
}

.contact-intro-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-intro-stats div {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-intro-stats strong {
  color: var(--primary);
  font-weight: 800;
  margin-right: 8px;
}

.contact-intro-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.contact-hub {
  padding: 0 0 80px;
}

.contact-hub-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(340px, 1.05fr);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.contact-hub-panel {
  padding: 48px 40px;
  background:
    linear-gradient(145deg, #0b1220 0%, #132a52 45%, #0f4a8a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-hub-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 65%);
  pointer-events: none;
}

.contact-hub-panel > * {
  position: relative;
  z-index: 1;
}

.contact-hub-label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.contact-hub-panel h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.contact-hub-text {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
  max-width: 320px;
}

.contact-hub-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.contact-hub-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-hub-link:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
  color: var(--white);
}

.contact-hub-link--static {
  cursor: default;
}

.contact-hub-link--static:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.08);
}

.contact-hub-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-hub-link-icon svg {
  width: 20px;
  height: 20px;
}

.contact-hub-link span:last-child {
  flex: 1;
  min-width: 0;
}

.contact-hub-link em {
  display: block;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}

.contact-hub-link strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
}

.contact-hub-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-hub-features li {
  padding-left: 22px;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.contact-hub-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: 800;
}

.contact-hub-form-wrap {
  padding: 48px 44px;
  background: var(--white);
}

.contact-hub-form-top {
  margin-bottom: 28px;
}

.contact-hub-form-top h3 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary-dark);
}

.contact-hub-form-top p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
  margin-bottom: 24px;
}

.contact-page .form-group {
  margin-bottom: 0;
}

.contact-page .form-group--full {
  grid-column: 1 / -1;
}

.contact-page .form-group label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
  border-radius: 14px;
  padding: 15px 16px;
  background: #f8fafc;
  border-color: #e2e8f0;
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
  background: var(--white);
}

.contact-submit-btn {
  width: 100%;
  min-height: 52px;
  font-size: 16px;
}

.contact-extra {
  padding: 0 0 88px;
}

.contact-extra-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.contact-faq-block h2,
.contact-areas-block h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
  margin: 0 0 24px;
}

.contact-faq-block .section-label,
.contact-areas-block .section-label {
  margin-bottom: 12px;
}

.contact-areas-block > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: -12px 0 20px;
}

.contact-areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-areas-tags span {
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-areas-tags span:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.25);
  color: var(--primary);
}

.contact-faq-block .faq-list {
  margin: 0;
}

.page-hero {
  padding: 80px 0 32px;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.page-hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.page-hero h1 {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs span {
  opacity: 0.4;
}

.page-hero-card {
  padding: 28px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.page-hero-card .mini-stat {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.page-hero-card .mini-stat:first-child {
  margin-top: 0;
}

.page-hero-card .mini-stat:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.page-hero-card strong {
  display: block;
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 700;
}

.page-hero-card span {
  color: var(--muted);
  font-size: 13px;
}

.info-grid,
.process-grid,
.industry-grid,
.service-detail-grid,
.page-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process-grid,
.industry-grid,
.page-highlights {
  grid-template-columns: repeat(4, 1fr);
}

.page-highlights .info-card,
.service-detail-grid .detail-card,
.industry-grid .info-card,
.process-grid .info-card {
  min-height: 100%;
}

.detail-card .card-label,
.info-card .card-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.check-line {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.check-line div {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
  font-size: 14px;
}

.check-line div::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.alt-cta {
  margin-top: 28px;
}

/* ─── Footer ─── */
.footer {
  background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  color: var(--white);
  padding: 0 0 24px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), var(--accent), transparent);
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(6, 182, 212, 0.12), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.1), transparent 30%);
  pointer-events: none;
}

.footer-cta {
  position: relative;
  z-index: 1;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.08));
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-cta-label {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-cta h3 {
  margin: 0;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr minmax(280px, 1.5fr);
  gap: 32px;
  padding: 48px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-contact-col {
  min-width: 0;
}

.footer-brand-col p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 320px;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 16px;
  transition: background 0.25s ease, transform 0.25s var(--ease-spring);
}

.footer-social:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  color: var(--white);
}

.footer-col-title {
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.92);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-link:hover::before {
  background: var(--secondary);
}

.footer-contact-cards {
  display: grid;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.footer-contact-item > span:last-child {
  flex: 1;
  min-width: 0;
}

.footer-contact-item::before {
  display: none;
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  transform: none;
  color: var(--white);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-item strong,
.footer-contact-item span span {
  display: block;
}

.footer-contact-item strong {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.footer-contact-item span span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-bottom,
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
}

.footer-bottom p,
.footer-bottom-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  max-width: none;
}

/* ─── Floating CTA + Back to Top ─── */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(148, 163, 184, 0.12);
  animation: floatSlow 5s ease-in-out infinite;
}

.float-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s ease,
    width 0.35s var(--ease-out);
  overflow: visible;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}

.float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.float-icon svg {
  width: 100%;
  height: 100%;
}

.float-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out);
}

.float-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--primary-dark);
}

.float-btn:hover .float-tip,
.float-btn:focus-visible .float-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.float-call {
  background: linear-gradient(145deg, #f59e0b, #fbbf24);
}

.float-quote {
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  animation: pulseGlow 3s ease-in-out infinite;
}

.floating-cta .back-to-top {
  border: 0;
  cursor: pointer;
  padding: 0;
  background: linear-gradient(145deg, #0f172a, #1e3a5f);
  width: 0;
  height: 0;
  transform: scale(0.5);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  margin-top: -8px;
  box-shadow: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s var(--ease-spring),
    width 0.35s var(--ease-out),
    height 0.35s var(--ease-out),
    margin 0.35s ease,
    box-shadow 0.35s ease;
}

.floating-cta .back-to-top.show {
  width: 50px;
  height: 50px;
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
  margin-top: 0;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
}

.floating-cta .back-to-top.show:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .quote-grid,
  .contact-grid,
  .contact-intro-grid,
  .contact-hub-card,
  .contact-extra-grid,
  .page-hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro-content {
    text-align: center;
  }

  .contact-breadcrumbs {
    justify-content: center;
  }

  .contact-intro h1,
  .contact-intro-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-intro-stats {
    justify-content: center;
  }

  .service-preview-grid,
  .services-grid,
  .why-grid,
  .pricing-grid,
  .reviews-grid,
  .gallery-grid,
  .city-grid,
  .feature-grid,
  .info-grid,
  .process-grid,
  .industry-grid,
  .service-detail-grid,
  .page-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-contact-col {
    grid-column: 1 / -1;
    max-width: 400px;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.12);
    transition: background 0.3s ease;
  }

  .menu-toggle.active {
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .nav-menu.active {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 75%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding:
      calc(10px + env(safe-area-inset-top))
      10px
      calc(10px + env(safe-area-inset-bottom))
      10px;
    gap: 10px;
    background: #f8fafc;
    border: 0;
    border-right: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0 20px 20px 0;
    box-shadow: 12px 0 40px rgba(15, 23, 42, 0.14);
    overflow: hidden;
    z-index: 1101;
    animation: slideInLeft 0.36s var(--ease-out);
  }

  .nav-menu.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    z-index: 2;
  }

  .nav-menu.active .mobile-drawer-header,
  .nav-menu.active .mobile-drawer-body,
  .nav-menu.active .mobile-drawer-footer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .nav-menu.active .mobile-drawer-header {
    display: block;
    flex-shrink: 0;
    padding: 0;
  }

  .nav-menu.active .mobile-drawer-body {
    display: block;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0;
  }

  .nav-menu.active .mobile-drawer-footer {
    display: block;
    flex-shrink: 0;
    padding: 10px 0 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.04);
  }

  .nav-menu.active .drawer-nav-section,
  .nav-menu.active .mobile-drawer-shortcuts,
  .nav-menu.active .drawer-divider {
    display: block;
  }

  .nav-menu.active .drawer-contact-row {
    display: flex;
  }

  .nav-menu.active .mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .nav-menu.active .mobile-drawer-actions {
    display: block;
  }

  .mobile-drawer-header {
    display: none;
    padding: 0 0 10px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
  }

  .mobile-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-drawer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
  }

  .mobile-drawer-brand .logo-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  }

  .mobile-drawer-brand strong,
  .mobile-drawer-brand span {
    display: block;
    line-height: 1.2;
  }

  .mobile-drawer-brand strong {
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .mobile-drawer-brand span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    margin-top: 2px;
  }

  .mobile-drawer-close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .mobile-drawer-close svg {
    width: 16px;
    height: 16px;
  }

  .mobile-drawer-close:hover {
    background: var(--surface);
    color: var(--primary-dark);
    border-color: rgba(37, 99, 235, 0.2);
  }

  .drawer-section-title {
    margin: 0 0 10px;
    padding: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .drawer-nav-section {
    margin-bottom: 0;
    width: 100%;
  }

  .drawer-divider {
    height: 1px;
    width: 100%;
    margin: 14px 0;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }

  .nav-menu.active .mobile-drawer-links {
    width: 100%;
  }

  .nav-menu.active .mobile-drawer-links > a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    animation: drawerItemIn 0.35s var(--ease-out) backwards;
  }

  .nav-menu.active .mobile-drawer-links > a:nth-child(1) { animation-delay: 0.04s; }
  .nav-menu.active .mobile-drawer-links > a:nth-child(2) { animation-delay: 0.07s; }
  .nav-menu.active .mobile-drawer-links > a:nth-child(3) { animation-delay: 0.1s; }
  .nav-menu.active .mobile-drawer-links > a:nth-child(4) { animation-delay: 0.13s; }
  .nav-menu.active .mobile-drawer-links > a:nth-child(5) { animation-delay: 0.16s; }
  .nav-menu.active .mobile-drawer-links > a:nth-child(6) { animation-delay: 0.19s; }

  .nav-menu.active .mobile-drawer-links > a::after {
    display: none;
  }

  .nav-menu.active .mobile-drawer-links > a:hover {
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
    transform: translateX(3px);
  }

  .nav-menu.active .mobile-drawer-links > a.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.08));
    border-color: rgba(37, 99, 235, 0.22);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
  }

  .drawer-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--surface);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .drawer-link-icon svg {
    width: 18px;
    height: 18px;
  }

  .drawer-link-label {
    flex: 1;
    min-width: 0;
  }

  .drawer-link-arrow {
    width: 16px;
    height: 16px;
    color: #cbd5e1;
    flex-shrink: 0;
    display: inline-flex;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .drawer-link-arrow svg {
    width: 100%;
    height: 100%;
  }

  .nav-menu.active .mobile-drawer-links > a.active .drawer-link-icon {
    background: var(--primary);
    color: var(--white);
  }

  .nav-menu.active .mobile-drawer-links > a.active .drawer-link-arrow {
    color: var(--primary);
    transform: translateX(2px);
  }

  .mobile-drawer-shortcuts {
    width: 100%;
  }

  .drawer-service-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }

  .drawer-service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  }

  .drawer-service-list a::after {
    content: "→";
    color: #cbd5e1;
    font-size: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .drawer-service-list a:hover {
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary);
    padding-left: 16px;
  }

  .drawer-service-list a:hover::after {
    color: var(--primary);
    transform: translateX(2px);
  }

  .drawer-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    transition: background 0.2s ease;
  }

  .drawer-view-all:hover {
    background: rgba(37, 99, 235, 0.14);
  }

  .drawer-contact-row {
    gap: 8px;
    width: 100%;
    margin-bottom: 10px;
  }

  .mobile-drawer-actions {
    width: 100%;
  }

  .drawer-contact-pill {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .drawer-contact-pill svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
  }

  .drawer-contact-pill:hover {
    background: var(--white);
    border-color: rgba(37, 99, 235, 0.2);
  }

  .drawer-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
  }

  .drawer-action.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
  }

  .drawer-action.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
  }

  .nav-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1100;
  }

  .nav-menu-overlay.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header {
    z-index: 1099;
  }

  .hero-image img,
  .about-main {
    height: 460px;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(1200px, calc(100% - 28px));
  }

  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta-btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding: 36px 0 32px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-contact-col {
    max-width: none;
  }

  .footer-contact-item span span {
    white-space: normal;
    word-break: break-word;
  }

  .section-padding {
    padding: 72px 0;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -0.02em;
  }

  .hero-stats,
  .service-preview-grid,
  .services-grid,
  .why-grid,
  .pricing-grid,
  .reviews-grid,
  .gallery-grid,
  .city-grid,
  .feature-grid,
  .form-row,
  .footer-grid,
  .info-grid,
  .process-grid,
  .industry-grid,
  .service-detail-grid,
  .page-highlights {
    grid-template-columns: 1fr;
  }

  .hero-image img,
  .about-main {
    height: 340px;
  }

  .floating-card,
  .experience-box {
    position: static;
    margin-top: 14px;
    animation: none;
  }

  .contact-intro {
    padding: 40px 0 32px;
  }

  .contact-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-intro-content {
    text-align: center;
  }

  .contact-breadcrumbs {
    justify-content: center;
  }

  .contact-intro h1,
  .contact-intro-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-intro-stats {
    justify-content: center;
  }

  .contact-intro-float {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .contact-intro-image img {
    height: 280px;
  }

  .contact-hub {
    padding-bottom: 56px;
  }

  .contact-hub-panel,
  .contact-hub-form-wrap {
    padding: 32px 24px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-extra {
    padding-bottom: 56px;
  }

  .contact-extra-grid {
    gap: 40px;
  }

  .contact-intro-stats {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .home-quote-panel-head {
    padding: 24px 20px 22px;
  }

  .home-quote-perks {
    padding: 20px 20px 4px;
  }

  .home-quote-cta {
    margin-left: 20px;
    margin-right: 20px;
  }

  .home-quote-call {
    margin-left: 20px;
    margin-right: 20px;
  }

  .home-quote-stats {
    margin: 20px 20px 24px;
  }

  .quote-form,
  .contact-hub-form,
  .soft-card,
  .accent-card,
  .page-hero-card,
  .service-page-card,
  .service-card,
  .why-card,
  .review-card,
  .price-card,
  .info-card,
  .detail-card {
    padding: 24px;
  }

  .footer-bottom,
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
    padding: 6px;
    border-radius: 18px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .floating-cta .back-to-top.show {
    width: 46px;
    height: 46px;
  }

  .float-tip {
    display: none;
  }
}
