/* ============================================================
   ELITE SOLUTIONS - CLEANING & HOSPITALITY
   PREMIUM HOSPITALITY & PROFESSIONAL SERVICES DESIGN SYSTEM
   
   COLOR PALETTE:
   • Deep Navy:     #1E3442 (Primary brand, headings, primary CTA, dark feature section, footer)
   • Slate Blue:    #506773 (Body text, supporting descriptions, subtle borders)
   • Warm Gold:     #C5A36A (Accent lines, active nav, secondary borders, badges, icons)
   • Warm Ivory:    #F6F3ED (Alternate sections, ambient cards, subtle gradients)
   • White:         #FFFFFF (Dominant clean canvas, header background)
   • Deep Brown:    #302923 (Navigation text & dark text accent)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Core Color Palette Tokens */
  --color-navy: #1E3442;
  --color-navy-dark: #152631;
  --color-navy-light: #2A4556;
  --color-slate: #506773;
  --color-slate-light: #708794;
  --color-gold: #C5A36A;
  --color-gold-hover: #B5935A;
  --color-gold-light: #EADBC0;
  --color-ivory: #F6F3ED;
  --color-white: #FFFFFF;
  --color-brown: #302923;
  --color-delivery-card: #F2F5F8;

  /* Aliases for backwards compatibility */
  --color-espresso: var(--color-navy);
  --color-charcoal: var(--color-navy);
  --color-warm-taupe: var(--color-gold);
  --color-champagne: var(--color-gold);
  --color-champagne-beige: var(--color-gold);
  --color-warm-ivory: var(--color-ivory);

  /* Background Layers */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F6F3ED;
  --bg-card: #FFFFFF;
  --bg-dark: #1E3442;

  /* Borders */
  --border-gold: rgba(197, 163, 106, 0.38);
  --border-gold-subtle: rgba(197, 163, 106, 0.20);
  --border-slate: rgba(80, 103, 115, 0.16);
  --border-subtle: rgba(197, 163, 106, 0.22);
  --border-color: var(--border-gold);

  /* Typography Colors */
  --text-heading: #1E3442;
  --text-body: #506773;
  --text-muted: #506773;
  --text-light: #708794;
  --text-nav: #302923;

  /* Typography Settings */
  --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout Dimensions */
  --max-width: 1280px;
  --header-height: 84px;
  --border-radius-xs: 4px;
  --border-radius-btn: 9px;
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 18px;
  --border-radius-pill: 9999px;

  /* Subtle Elevation Shadows */
  --shadow-subtle: 0 4px 18px rgba(30, 52, 66, 0.04);
  --shadow-card: 0 10px 30px rgba(30, 52, 66, 0.06);
  --shadow-hover: 0 18px 44px rgba(30, 52, 66, 0.10);
  --shadow-gold: 0 8px 24px rgba(197, 163, 106, 0.25);
  --shadow-modal: 0 28px 70px rgba(30, 52, 66, 0.20);

  /* Transitions */
  --transition-fast: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-btn: 0.30s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.70s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-white);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  line-height: 1.7;
  font-weight: 400;
  background-color: var(--color-white);
  color: var(--text-body);
  overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.022em;
}

h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.028em;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.022em;
}

h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.74;
}

p.lead {
  font-size: 1.12rem;
  line-height: 1.78;
  color: var(--color-navy);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.container-sm {
  max-width: 960px;
}

.container-narrow {
  max-width: 780px;
}

/* Section Containers & Color Rhythm */
.section {
  padding: 104px 0;
  position: relative;
}

.section-sm {
  padding: 64px 0;
}

.section-lg {
  padding: 124px 0;
}

.bg-white {
  background-color: var(--color-white);
}

.bg-ivory {
  background-color: var(--color-ivory);
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.bg-ivory-clean {
  background-color: var(--color-ivory);
}

/* Dark Feature Section (#1E3442 Deep Navy) */
.bg-dark-navy,
.bg-espresso,
.bg-charcoal {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.bg-dark-navy h1,
.bg-dark-navy h2,
.bg-dark-navy h3,
.bg-dark-navy h4,
.bg-espresso h1,
.bg-espresso h2,
.bg-espresso h3,
.bg-espresso h4 {
  color: var(--color-white);
}

.bg-dark-navy p,
.bg-espresso p {
  color: rgba(246, 243, 237, 0.82);
}

/* ============================================================
   SECTION HEADINGS & LABELS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background-color: var(--color-gold);
}

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

.section-header.text-center {
  text-align: center;
}

.section-header.text-center .section-label {
  justify-content: center;
}

.section-header.text-center .section-label::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background-color: var(--color-gold);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.04rem;
}

/* ============================================================
   BUTTONS & CTAS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--border-radius-btn);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1;
  transition: all var(--transition-btn);
  white-space: nowrap;
  box-shadow: var(--shadow-subtle);
}

/* Primary Button: Deep Navy #1E3442 -> Hover #C5A36A */
.btn-primary {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.btn-primary:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button: Transparent background + Warm Gold #C5A36A border + Navy text */
.btn-secondary {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Outline on Dark Section */
.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-outline-white:hover {
  background-color: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-btn);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* ============================================================
   STICKY HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--border-gold-subtle);
  z-index: 1000;
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(30, 52, 66, 0.06);
  border-bottom-color: var(--border-gold);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.logo-monogram {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}

.logo-monogram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-navy);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-brown);
  text-transform: uppercase;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-navy);
}

/* Dropdown Menu */
.dropdown-toggle .chevron-icon {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
  color: var(--color-gold);
}

.nav-item:hover .chevron-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 270px;
  background-color: var(--color-white);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-sm);
  padding: 10px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: var(--border-radius-xs);
  transition: background-color var(--transition-fast);
}

.dropdown-link:hover {
  background-color: var(--color-ivory);
}

.dropdown-link-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-navy);
}

.dropdown-link-desc {
  font-size: 0.74rem;
  color: var(--text-light);
  margin-top: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Header GET A QUOTE button styling */
.header-cta .btn-primary {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.header-cta .btn-primary:hover {
  background-color: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-navy);
  transition: all var(--transition-fast);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: var(--color-white);
  border-top: 1px solid var(--border-gold);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-medium);
  z-index: 999;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-nav-link {
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-navy);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-gold-subtle);
}

.mobile-submenu {
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.mobile-sub-link {
  font-size: 0.92rem;
  color: var(--text-body);
  font-weight: 500;
  padding: 6px 0;
}

/* ============================================================
   HERO SECTION (PREMIUM EDITORIAL SPLIT COMPOSITION)
   ============================================================ */
.hero-editorial {
  min-height: 600px;
  max-height: 680px;
  padding: 44px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF9F6 65%, #F6F3ED 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-editorial-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 500px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-eyebrow-line {
  display: inline-block;
  width: 22px;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 2px;
}

.hero-eyebrow-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(2.35rem, 3.6vw, 3.25rem);
  line-height: 1.16;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 18px;
  letter-spacing: -0.026em;
}

.hero-desc {
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--color-slate);
  margin-bottom: 26px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.btn-hero {
  padding: 13px 26px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--border-radius-btn);
}

.btn-secondary-white {
  background-color: var(--color-white);
  color: var(--color-navy);
  border: 1.5px solid var(--color-gold);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary-white:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Horizontal Service Indicator below buttons */
.hero-service-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-navy);
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--border-gold-subtle);
  max-width: 460px;
}

.hero-indicator-dot {
  color: var(--color-gold);
  font-size: 0.9rem;
  line-height: 1;
}

/* Right Side - Dominant Editorial Visual with Docked Service Cards */
.hero-visual-stage {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-main-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  box-shadow: 0 16px 42px rgba(30, 52, 66, 0.10);
  background-color: var(--color-white);
}

.hero-main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-visual-stage:hover .hero-main-visual img {
  transform: scale(1.02);
}

.hero-main-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(30, 52, 66, 0.42) 0%, transparent 100%);
  pointer-events: none;
}

/* Docked Service Cards */
.hero-docked-services {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 16px;
  margin: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 12px 32px rgba(30, 52, 66, 0.12);
}

.hero-dock-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px 8px;
  border-radius: var(--border-radius-xs);
  transition: background-color var(--transition-fast);
}

.hero-dock-card:hover {
  background-color: var(--color-ivory);
}

.dock-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-navy);
  text-transform: uppercase;
}

.dock-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-gold);
  flex-shrink: 0;
}

.dock-desc {
  font-size: 0.74rem;
  color: var(--color-slate);
  line-height: 1.35;
  margin: 0;
}

/* ============================================================
   INTRO / ABOUT HOMEPAGE SECTION (WHITE CANVAS)
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-card);
}

.intro-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.intro-image-wrapper:hover img {
  transform: scale(1.03);
}

.intro-content {
  max-width: 540px;
}

.intro-content h2 {
  margin-bottom: 20px;
}

.intro-content p {
  margin-bottom: 16px;
}

/* ============================================================
   SERVICES SECTION (IVORY CANVAS & ASYMMETRIC COLOR SYSTEM)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

/* Cleaning Card: White / Ivory */
.service-card.card-cleaning {
  background-color: var(--color-white);
}

/* Hospitality Card: Very Light Ivory */
.service-card.card-hospitality {
  background-color: #FAF8F4;
}

/* Delivery Card: Very Light Blue-Grey based on #506773 */
.service-card.card-delivery {
  background-color: var(--color-delivery-card);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-hover);
}

.service-card-image {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 5px 12px;
  border-radius: var(--border-radius-xs);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-body {
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-number {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-card-title {
  font-size: 1.32rem;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--color-navy);
}

.service-card-desc {
  font-size: 0.94rem;
  color: var(--color-slate);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-gold-subtle);
}

.service-card-list li {
  font-size: 0.86rem;
  color: var(--color-slate);
  display: flex;
  align-items: center;
  gap: 9px;
}

.service-card-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-gold);
  flex-shrink: 0;
}

/* ============================================================
   INTERACTIVE SHOWCASE TABS
   ============================================================ */
.tabs-header {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.tab-btn {
  background: var(--color-white);
  border: 1px solid var(--border-gold);
  color: var(--color-navy);
  padding: 12px 26px;
  border-radius: var(--border-radius-xs);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  background-color: var(--color-ivory);
}

.tab-btn.active {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  box-shadow: 0 4px 14px rgba(30, 52, 66, 0.16);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background-color: var(--color-ivory);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-lg);
  padding: 44px;
}

.showcase-image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  height: 380px;
}

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

.showcase-content h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
  color: var(--color-navy);
}

.showcase-content p {
  font-size: 0.98rem;
  margin-bottom: 22px;
  color: var(--color-slate);
}

.showcase-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-bottom: 26px;
}

.showcase-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-navy);
}

.showcase-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* ============================================================
   SERVICE HIGHLIGHTS 3-COLUMN
   ============================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.highlight-col {
  padding: 24px 0;
  border-left: 2px solid var(--color-gold);
  padding-left: 24px;
}

.highlight-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.highlight-col h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--color-navy);
}

.highlight-col p {
  font-size: 0.92rem;
  color: var(--color-slate);
  margin-bottom: 0;
}

/* ============================================================
   DARK FEATURE SECTION: WHY ELITE SOLUTIONS (#1E3442 DEEP NAVY)
   ============================================================ */
.section-dark-feature {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 108px 0;
}

.section-dark-feature .section-label {
  color: var(--color-gold);
}

.section-dark-feature .section-label::before,
.section-dark-feature .section-header.text-center .section-label::after {
  background-color: var(--color-gold);
}

.section-dark-feature h2 {
  color: var(--color-white);
}

.section-dark-feature p {
  color: rgba(246, 243, 237, 0.82);
}

.why-features-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 163, 106, 0.28);
  border-radius: var(--border-radius-md);
  padding: 24px 28px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.why-feature-item:hover {
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.08);
}

.why-feature-item.active {
  background-color: rgba(255, 255, 255, 0.10);
  border-color: var(--color-gold);
}

.why-feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why-feature-title-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.why-feature-num {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.why-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin: 0;
}

.why-feature-header svg {
  color: var(--color-gold);
  transition: transform var(--transition-fast);
}

.why-feature-item.active .why-feature-header svg {
  transform: rotate(180deg);
}

.why-feature-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), margin-top var(--transition-fast);
  color: rgba(246, 243, 237, 0.88);
  font-size: 0.95rem;
  line-height: 1.7;
}

.why-feature-item.active .why-feature-desc {
  max-height: 120px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(197, 163, 106, 0.22);
}

/* ============================================================
   INDUSTRIES SECTION (8 IMAGE CARDS)
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.industry-card {
  position: relative;
  height: 270px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-gold);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.industry-card:hover img {
  transform: scale(1.06);
}

.industry-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(30, 52, 66, 0.94) 0%, rgba(30, 52, 66, 0.5) 70%, transparent 100%);
  padding: 22px 18px 18px;
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.industry-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.industry-card-text {
  font-size: 0.8rem;
  color: rgba(246, 243, 237, 0.82);
  line-height: 1.4;
  margin-bottom: 0;
}

/* ============================================================
   PROCESS TIMELINE (4 STEPS)
   ============================================================ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  margin-top: 36px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 36px;
  right: 36px;
  height: 1.5px;
  background-color: var(--border-gold);
  z-index: 0;
}

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

.process-icon-box {
  width: 68px;
  height: 68px;
  background-color: var(--color-white);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-navy);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.process-step:hover .process-icon-box {
  background-color: var(--color-gold);
  color: var(--color-navy);
  transform: scale(1.06);
}

.process-step h4 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--color-navy);
}

.process-step p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: var(--color-slate);
}

/* ============================================================
   STATS GRID (EXACT 3 METRICS)
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: center;
}

.stat-card {
  padding: 36px 20px;
}

.stat-number {
  font-size: clamp(2.8rem, 4.4vw, 4rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ============================================================
   PREMIUM BRAND STATEMENT
   ============================================================ */
.statement-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px;
}

.statement-box h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.24;
  margin-bottom: 20px;
  color: var(--color-navy);
}

.statement-box p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--color-slate);
}

.statement-divider {
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 24px auto;
}

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.cta-banner {
  background-color: var(--color-ivory);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-lg);
  padding: 68px 36px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.cta-banner h2 {
  margin-bottom: 14px;
  color: var(--color-navy);
}

.cta-banner p {
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  color: var(--color-slate);
}

/* ============================================================
   CONTACT LAYOUT & FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 52px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background-color: var(--color-white);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all var(--transition-fast);
}

.contact-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

.contact-icon-box {
  width: 46px;
  height: 46px;
  background-color: var(--color-ivory);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-card-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
}

.contact-card-link {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-card-link:hover {
  color: var(--color-gold);
}

.contact-subtext {
  font-size: 0.82rem;
  color: var(--text-light);
}

.whatsapp-direct-box {
  background-color: var(--color-ivory);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: center;
}

.whatsapp-direct-box h4 {
  margin-bottom: 6px;
  color: var(--color-navy);
}

.whatsapp-direct-box p {
  font-size: 0.88rem;
  margin-bottom: 18px;
  color: var(--color-slate);
}

/* Contact Form */
.contact-form-panel {
  background-color: var(--color-white);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-navy);
}

.form-label .required {
  color: var(--color-gold);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-xs);
  background-color: var(--color-white);
  color: var(--color-navy);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 163, 106, 0.20);
}

.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  border-color: #B37D74;
  background-color: #FAF6F5;
}

.form-error {
  font-size: 0.76rem;
  color: #8C4A40;
  font-weight: 600;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-success-banner {
  display: none;
  background-color: var(--color-ivory);
  border: 1px solid var(--color-gold);
  border-radius: var(--border-radius-xs);
  padding: 22px;
  text-align: center;
  margin-bottom: 22px;
}

.form-success-banner.visible {
  display: block;
}

/* ============================================================
   PAGE-SPECIFIC SERVICE MATRICES
   ============================================================ */
.service-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-detail-item {
  background-color: var(--color-white);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.service-detail-item:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.service-detail-image {
  height: 220px;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.service-detail-item:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-body {
  padding: 26px;
}

.service-detail-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-navy);
}

.service-detail-body p {
  font-size: 0.92rem;
  margin-bottom: 0;
  color: var(--color-slate);
}

/* Page Hero Component */
.page-hero {
  padding-top: 54px;
  padding-bottom: 64px;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.page-hero-content h1 {
  margin-bottom: 16px;
  color: var(--color-navy);
}

.page-hero-content p {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--color-slate);
}

.page-hero-image {
  height: 320px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-card);
}

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

/* Checklist Grid */
.feature-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-check-card {
  background-color: var(--color-white);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-md);
  padding: 28px 24px;
  transition: all var(--transition-fast);
}

.feature-check-card:hover {
  border-color: var(--color-gold);
  background-color: var(--color-ivory);
}

.feature-check-icon {
  width: 38px;
  height: 38px;
  background-color: var(--color-ivory);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.feature-check-card h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: var(--color-navy);
}

.feature-check-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: var(--color-slate);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  background-color: var(--color-white);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-md);
  padding: 30px 26px;
  text-align: left;
  transition: all var(--transition-fast);
}

.value-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.value-card-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--color-navy);
}

.value-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--color-slate);
}

/* ============================================================
   FOOTER (DEEP NAVY #1E3442)
   ============================================================ */
.site-footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding-top: 74px;
  padding-bottom: 32px;
  border-top: 1px solid var(--color-navy);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.25fr;
  gap: 44px;
  margin-bottom: 54px;
}

.footer-brand .brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand .logo-monogram {
  width: 48px;
  height: 48px;
}

.footer-brand p {
  color: rgba(246, 243, 237, 0.78);
  font-size: 0.9rem;
  line-height: 1.68;
  margin-top: 16px;
  max-width: 350px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 22px;
}

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

.footer-links a {
  color: rgba(246, 243, 237, 0.82);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.footer-contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-contact-val {
  font-size: 0.92rem;
  color: var(--color-white);
}

.footer-contact-val a {
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.footer-contact-val a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(197, 163, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(246, 243, 237, 0.58);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.floating-whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-navy);
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(30, 52, 66, 0.25);
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover .floating-whatsapp-btn {
  background-color: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
  transform: scale(1.08);
}

.floating-whatsapp-tooltip {
  background-color: var(--color-navy);
  color: var(--color-white);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: var(--border-radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ============================================================
   MODAL DIALOG (QUICK QUOTE)
   ============================================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 52, 66, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--color-white);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow-modal);
  transform: translateY(20px);
  transition: transform var(--transition-medium);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--color-ivory);
  color: var(--color-navy);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS (FAIL-SAFE & PROGRESSIVE)
   ============================================================ */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.70s cubic-bezier(0.22, 1, 0.36, 1), transform 0.70s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed,
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }

.mask-reveal {
  position: relative;
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1080px) {
  .hero-editorial {
    min-height: auto;
    max-height: none;
    padding: 56px 0;
  }

  .hero-editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 620px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-service-indicator {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual-stage {
    max-width: 620px;
    margin: 0 auto;
    height: 420px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .intro-grid,
  .showcase-grid,
  .contact-layout,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .highlight-col {
    border-left: none;
    border-top: 2px solid var(--color-gold);
    padding-left: 0;
    padding-top: 18px;
  }

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

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .service-details-grid,
  .values-grid,
  .feature-checklist-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 580px) {
  .hero-editorial {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .hero-visual-stage {
    height: 380px;
  }

  .hero-docked-services {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 12px;
    margin: 10px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero {
    width: 100%;
  }

  .hero-service-indicator {
    font-size: 0.68rem;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .modal-card {
    padding: 30px 20px;
  }

  .btn {
    width: 100%;
  }
}
