/* ============================================================
   MIDWEST PRO BUILDERS — Premium Stylesheet
   Gateway Digital Co.
   ============================================================ */

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

:root {
  --navy:        #1B2B4B;
  --navy-mid:    #233660;
  --navy-light:  #2c4275;
  --orange:      #E8692A;
  --orange-dark: #c9531a;
  --orange-light:#f07d40;
  --white:       #ffffff;
  --off-white:   #F7F8FA;
  --gray-100:    #f0f2f5;
  --gray-200:    #e2e6ec;
  --gray-400:    #9aa4b2;
  --gray-600:    #5a6578;
  --text:        #1a2233;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.11);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.16);
  --radius:      10px;
  --transition:  0.28s cubic-bezier(.4,0,.2,1);
  --font-sans:   'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display:'Sora', 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

/* ---------- PORTFOLIO BANNER ---------- */
.portfolio-banner {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.portfolio-banner a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@700;800&display=swap');

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-left  { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.visible {
  opacity: 1;
  transform: translate(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(232,105,42,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(232,105,42,0.45);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn svg, .btn .btn-icon { width: 1em; height: 1em; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1rem 0;
}
#site-header.transparent { background: transparent; }
#site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 0.6rem 0;
}
#site-header.solid {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-top: 2px;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 5px;
  letter-spacing: 0.02em;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.7rem);
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: translateX(-50%) scaleX(1); }

.nav-cta-btn {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.35rem !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 12px rgba(232,105,42,0.3);
  margin-left: 0.5rem;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.18); }
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
}
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.85;
  transition: color var(--transition), opacity var(--transition);
}
.mobile-nav a:hover { color: var(--orange); opacity: 1; }
.mobile-nav .mobile-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem !important;
  opacity: 1 !important;
  margin-top: 0.5rem;
}

/* ============================================================
   INNER PAGE HERO (non-home pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a6e 100%);
  padding: 9rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--orange); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 520px; margin: 0 auto; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-label-dark { color: rgba(232,105,42,0.9); }

.section-title { margin-bottom: 1rem; color: var(--navy); }
.section-title-white { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; margin-bottom: 3rem; }
.section-desc-white { color: rgba(255,255,255,0.65); }

.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* Divider accent */
.title-accent {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
}
.title-accent-center { margin-left: auto; margin-right: auto; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

/* SVG/geometric background pattern */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(27,43,75,0.97) 0%, rgba(27,43,75,0.82) 50%, rgba(27,43,75,0.65) 100%),
    /* Repeating angular construction lines */
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 80px,
      rgba(232,105,42,0.04) 80px,
      rgba(232,105,42,0.04) 82px
    );
  background-color: var(--navy);
}

/* Large decorative shapes */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,105,42,0.12) 0%, transparent 70%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,66,117,0.6) 0%, transparent 70%);
}

/* Floating construction icons */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shapes span {
  position: absolute;
  font-size: 4rem;
  opacity: 0.04;
  animation: floatShape 12s ease-in-out infinite;
}
.hero-shapes span:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
.hero-shapes span:nth-child(2) { top: 60%; left: 12%; font-size: 2.5rem; animation-delay: -3s; }
.hero-shapes span:nth-child(3) { top: 25%; right: 8%; font-size: 3rem; animation-delay: -6s; }
.hero-shapes span:nth-child(4) { bottom: 20%; right: 15%; animation-delay: -9s; }

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8rem 0 5rem;
}
.hero-inner { max-width: 800px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,105,42,0.15);
  border: 1px solid rgba(232,105,42,0.35);
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.75rem;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
.hero-phone a { color: var(--white); font-weight: 700; font-size: 1rem; transition: color var(--transition); }
.hero-phone a:hover { color: var(--orange); }
.hero-phone-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Hero trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.hero-trust-item strong { color: rgba(255,255,255,0.9); font-weight: 700; }

/* Right side visual block */
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-light) 0%, #1a3564 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8692A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-visual-clip {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(232,105,42,0.1) 0%, rgba(27,43,75,0.8) 100%);
}

/* Stats inside visual */
.hero-stat-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 2rem;
  width: 100%;
}
.hero-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: transform var(--transition);
}
.hero-stat-card:hover { transform: translateX(-4px); }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 0;
}
.stats-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-card:hover::before { transform: scaleX(1); }

.why-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(232,105,42,0.1) 0%, rgba(232,105,42,0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  transition: background var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, rgba(232,105,42,0.2), rgba(232,105,42,0.08));
}
.why-card h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.1rem; }
.why-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; }

/* ============================================================
   SERVICES GRID (HOME)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.service-card-thumb::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--white));
}
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { color: var(--gray-600); font-size: 0.92rem; flex: 1; margin-bottom: 1.25rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 0.6rem; }

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-row:last-child { border-bottom: none; }
.service-row.flip { direction: rtl; }
.service-row.flip > * { direction: ltr; }

.service-visual {
  border-radius: var(--radius);
  height: 380px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-visual::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(232,105,42,0.15), transparent);
}
.service-visual-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}

.service-content .section-label { display: block; }
.service-content h2 { color: var(--navy); margin-bottom: 0.5rem; }
.service-content .title-accent { margin: 0.5rem 0 1.25rem; }
.service-content p { color: var(--gray-600); margin-bottom: 1rem; }

.feature-list { margin: 1.25rem 0 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.93rem;
  color: var(--text);
}
.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; color: var(--orange); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; margin-right: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { color: var(--white); font-weight: 700; font-size: 0.92rem; }
.testimonial-loc { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img {
  border-radius: var(--radius);
  height: 480px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23E8692A' fill-opacity='0.05'%3E%3Cpath d='M0 0h20v20H0V0zm20 20h20v20H20V20z'/%3E%3C/g%3E%3C/svg%3E");
}
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(232,105,42,0.45);
  border: 5px solid var(--white);
}
.about-badge-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-badge-txt { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 2px; opacity: 0.9; }

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.about-mini-stat {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--gray-200);
}
.about-mini-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.about-mini-label { font-size: 0.78rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.team-info { padding: 1.5rem; }
.team-name { color: var(--navy); font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-role {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.team-bio { font-size: 0.88rem; color: var(--gray-600); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.gf-btn {
  padding: 0.55rem 1.4rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--transition);
}
.gf-btn:hover, .gf-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-thumb {
  height: 250px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-thumb { transform: scale(1.05); }
.gallery-thumb .g-icon { font-size: 3.5rem; }
.gallery-thumb .g-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,105,42,0.88), rgba(27,43,75,0.88));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { font-size: 2rem; }
.gallery-overlay-text { color: var(--white); font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.1em; }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(27,43,75,0.95), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-block h2 { color: var(--navy); }
.contact-info-block > p { color: var(--gray-600); }

.contact-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact-card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(232,105,42,0.3);
}
.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}
.contact-card-value { font-weight: 700; color: var(--navy); font-size: 0.97rem; }
.contact-card-value a { color: var(--navy); transition: color var(--transition); }
.contact-card-value a:hover { color: var(--orange); }
.contact-card-sub { font-size: 0.82rem; color: var(--gray-600); margin-top: 0.1rem; }

/* Trust badges strip */
.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--navy);
  border-radius: var(--radius);
}
.trust-strip-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.trust-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(232,105,42,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--orange);
}

/* ============================================================
   CONTACT FORM — Floating labels
   ============================================================ */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 0.35rem; font-size: 1.5rem; }
.form-subtitle { color: var(--gray-600); font-size: 0.92rem; margin-bottom: 2.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* Floating label field */
.field {
  position: relative;
  margin-bottom: 1.5rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 1.5rem 1rem 0.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  padding-top: 1.75rem;
}
.field select { cursor: pointer; }
.field label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 500;
  pointer-events: none;
  transition: all var(--transition);
  transform-origin: left top;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232,105,42,0.1);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field.has-value label {
  top: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.form-submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(232,105,42,0.35);
  position: relative;
  overflow: hidden;
}
.form-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,105,42,0.5);
}
.form-submit-btn:hover::before { opacity: 1; }
.form-submit-btn:active { transform: translateY(0); }
.form-submit-btn.success {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  box-shadow: 0 4px 18px rgba(46,204,113,0.35);
}
.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 1rem;
}

/* Map placeholder */
.map-section {
  height: 360px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.map-pin { font-size: 3.5rem; position: relative; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.map-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}
.map-sub { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.map-btn {
  background: var(--orange);
  color: var(--white);
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 0.5rem;
  transition: background var(--transition);
}
.map-btn:hover { background: var(--orange-dark); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3564 50%, var(--navy-mid) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232,105,42,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 540px; margin: 0 auto 2.5rem; }
.cta-banner-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.25);
  padding: 0.9rem 2.1rem;
  border-radius: 6px;
  transition: all var(--transition);
}
.cta-phone-link:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0f1b30;
  color: rgba(255,255,255,0.55);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo-main { font-size: 1.4rem; display: block; margin-bottom: 0.2rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; margin: 1rem 0 1.5rem; }

.social-row { display: flex; gap: 0.6rem; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  font-weight: 700;
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }
.footer-col ul a::before { content: '›'; color: var(--orange); opacity: 0; font-size: 1.1rem; transition: opacity var(--transition); }
.footer-col ul a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}
.footer-contact-item .fci-icon { font-size: 0.9rem; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-hours { margin-top: 1rem; padding: 0.85rem 1rem; background: rgba(255,255,255,0.04); border-radius: 8px; border: 1px solid rgba(255,255,255,0.07); }
.footer-hours p { font-size: 0.82rem; margin-bottom: 0.2rem; }
.footer-hours strong { color: rgba(255,255,255,0.75); }

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-tagline {
  color: rgba(255,255,255,0.3);
  font-style: italic;
}
.footer-credit a { color: var(--orange); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .about-split, .contact-split, .service-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-row.flip { direction: ltr; }
  .about-img { height: 300px; }
  .about-badge { right: 0; bottom: -20px; width: 100px; height: 100px; }
  .about-badge-num { font-size: 1.6rem; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3)::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 2rem; }
  .about-mini-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero-trust { display: none; }
  .hero-actions .btn-outline-white { display: none; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .service-visual { height: 240px; font-size: 4rem; }
}
