/* =============================================
   Reeces Window Cleaning – Stylesheet v2
   ============================================= */

/* === VARIABLES === */
:root {
  --blue:        #0ea5e9;
  --blue-dark:   #0284c7;
  --blue-darker: #0c4a6e;
  --blue-50:     #f0f9ff;
  --blue-100:    #e0f2fe;
  --blue-200:    #bae6fd;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --gray-900:    #0f172a;
  --green:       #10b981;
  --yellow:      #fbbf24;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.08);
  --shadow-md: 0 10px 28px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.13);
  --shadow-blue: 0 8px 28px rgba(14,165,233,.38);

  --radius-sm: .375rem;
  --radius:    .875rem;
  --radius-lg: 1.375rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  --ease: cubic-bezier(.4,0,.2,1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; }
body   { font-family: var(--font); color: var(--gray-700); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img    { max-width: 100%; height: auto; display: block; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4 { font-weight: 800; line-height: 1.15; color: var(--gray-900); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { line-height: 1.75; }

/* === LAYOUT === */
.container    { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 6rem 0; }
.section-sm   { padding: 3.5rem 0; }
.bg-alt       { background: var(--gray-50); }
.bg-dark      { background: var(--gray-900); }
.text-center  { text-align: center; }

.section-label {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-header        { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-sub { max-width: 540px; color: var(--gray-500); font-size: 1.0625rem; margin-top: .625rem; }
.section-header h2 { margin-bottom: .5rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: var(--radius-full);
  font-weight: 700; font-size: .9375rem; border: 2px solid transparent;
  transition: all .2s var(--ease); white-space: nowrap; line-height: 1;
}
.btn-lg { padding: 1.0625rem 2.5rem; font-size: 1.0625rem; }

.btn-primary {
  background: var(--blue); color: var(--white); border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark); border-color: var(--blue-dark);
  transform: translateY(-2px); box-shadow: 0 12px 32px rgba(14,165,233,.45);
}
.btn-white {
  background: var(--white); color: var(--blue-darker); border-color: var(--white);
}
.btn-white:hover { background: var(--blue-50); transform: translateY(-2px); }

.btn-ghost-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.12); transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--blue); border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue); color: var(--white); transform: translateY(-2px);
}

/* === NAVIGATION === */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .2s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .625rem;
  font-size: 1.0625rem; font-weight: 800; color: var(--gray-900); flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-menu {
  display: flex; align-items: center; gap: .25rem;
  flex: 1; justify-content: center;
}
.nav-link {
  padding: .45rem .875rem; border-radius: var(--radius-sm);
  font-size: .9375rem; font-weight: 500; color: var(--gray-700);
  transition: all .15s;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-50); }

.nav-cta {
  padding: .55rem 1.25rem; font-size: .9375rem; flex-shrink: 0;
  border-radius: var(--radius-full); background: var(--blue); color: var(--white);
  font-weight: 700; border: none; transition: all .2s;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem;
  border-radius: var(--radius-sm); transition: background .15s;
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700); border-radius: 2px; transition: all .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  background: linear-gradient(145deg, var(--blue-darker) 0%, #0369a1 45%, var(--blue) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 44v-8h-4v8h-8v4h8v8h4v-8h8v-4h-8zM40 4V0h-4v4h-8v4h8v8h4V8h8V4h-8zM4 44v-8H0v8h-8v4h8v8h4v-8h8v-4H4zM4 4V0H0v4h-8v4h8v8h4V8h8V4H4z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  color: var(--white); padding: .375rem 1rem; border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--blue-200); }
.hero-desc {
  font-size: 1.125rem; color: rgba(255,255,255,.82);
  margin-bottom: 2.25rem; max-width: 480px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-val { font-size: 1.875rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-lbl { font-size: .8125rem; color: rgba(255,255,255,.6); margin-top: .25rem; }

/* Hero visual panel */
.hero-visual {
  display: flex; flex-direction: column; gap: 1rem;
}
.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: transform .2s;
}
.hero-card:hover { transform: translateX(4px); }
.hero-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.hero-card-label { font-size: .75rem; color: rgba(255,255,255,.6); margin-bottom: .2rem; }
.hero-card-value { font-size: 1.0625rem; font-weight: 700; color: var(--white); }
.hero-card-sub   { font-size: .8125rem; color: rgba(255,255,255,.7); margin-top: .15rem; }

.hero-phone-cta {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.hero-phone-label { font-size: .75rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .2rem; }
.hero-phone-num   { font-size: 1.375rem; font-weight: 800; color: var(--gray-900); }
.hero-phone-btn   {
  background: var(--blue); color: var(--white);
  padding: .625rem 1.25rem; border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 700; white-space: nowrap;
  transition: background .15s;
}
.hero-phone-btn:hover { background: var(--blue-dark); }

/* === TRUST BAR === */
.trust-bar {
  background: var(--gray-900); padding: 1.25rem 0; border-top: 3px solid var(--blue);
}
.trust-list {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .625rem;
  font-weight: 600; font-size: .9375rem; color: rgba(255,255,255,.85);
}
.trust-dot {
  width: 20px; height: 20px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-dot::after {
  content: '';
  width: 5px; height: 9px;
  border: 2px solid white; border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px); display: block;
}

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.875rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-200));
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; background: var(--blue-50); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: .625rem; }
.service-card p  { color: var(--gray-500); font-size: .9375rem; margin-bottom: 1.125rem; }
.service-price {
  display: inline-block; background: var(--blue-100); color: var(--blue-dark);
  font-size: .8125rem; font-weight: 700; padding: .3rem .875rem; border-radius: var(--radius-full);
}
.service-link {
  display: inline-flex; align-items: center; gap: .375rem;
  color: var(--blue); font-weight: 700; font-size: .9375rem;
  margin-top: 1rem; transition: gap .15s;
}
.service-link:hover { gap: .625rem; }

/* === BEFORE / AFTER GALLERY === */
.gallery-intro { max-width: 680px; margin: 0 auto 3.5rem; text-align: center; }
.gallery-intro p { color: var(--gray-500); font-size: 1.0625rem; margin-top: .625rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }

.ba-item {}
.ba-wrap {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; cursor: col-resize; user-select: none;
  box-shadow: var(--shadow-md);
  background: var(--gray-200);
}
.ba-wrap:hover .ba-hint { opacity: 0; }

/* After image (clean) */
.ba-after {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
/* Before image (dirty — same img, dark filter, clipped) */
.ba-before {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  clip-path: inset(0 50% 0 0);
  filter: grayscale(.6) brightness(.55) contrast(1.1) saturate(.4);
  transition: none;
}
/* Divider line */
.ba-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--white);
  transform: translateX(-50%); z-index: 10; pointer-events: none;
  filter: drop-shadow(0 0 4px rgba(0,0,0,.4));
}
/* Handle */
.ba-handle {
  position: absolute; top: 50%; left: 50%; z-index: 11;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-md);
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; transition: transform .1s;
}
.ba-wrap:active .ba-handle { transform: translate(-50%,-50%) scale(.92); }

/* Labels */
.ba-lbl {
  position: absolute; top: 12px; z-index: 12;
  font-size: .6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem .75rem; border-radius: var(--radius-sm);
}
.ba-lbl.before { left: 12px;  background: rgba(0,0,0,.55); color: var(--white); }
.ba-lbl.after  { right: 12px; background: var(--blue);     color: var(--white); }

/* Drag hint */
.ba-hint {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.5); color: var(--white);
  font-size: .75rem; font-weight: 600; padding: .3rem .875rem;
  border-radius: var(--radius-full); z-index: 13;
  opacity: 1; transition: opacity .3s; white-space: nowrap;
  pointer-events: none;
}
/* Caption */
.ba-caption {
  margin-top: .875rem; font-size: .9rem; font-weight: 600; color: var(--gray-700);
  display: flex; align-items: center; gap: .375rem;
}
.ba-caption span { font-weight: 400; color: var(--gray-500); }

/* Real before photo — no artificial darkening filter needed */
.ba-before--real {
  filter: none;
}

/* Placeholder for missing images */
.ba-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; color: var(--gray-400); font-size: .875rem;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
}
.ba-placeholder-icon { font-size: 3rem; }
.ba-placeholder p    { font-weight: 600; color: var(--gray-500); }
.ba-placeholder small{ color: var(--gray-400); font-size: .8125rem; }

/* === WHY US === */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h4 { margin-bottom: .5rem; }
.why-card p  { color: var(--gray-500); font-size: .9375rem; }

/* === TESTIMONIALS === */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.875rem;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-card.featured {
  background: var(--blue); border-color: var(--blue); color: var(--white);
}
.review-quote {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-size: 3.5rem; line-height: 1; font-family: Georgia, serif;
  color: var(--gray-200); opacity: .6;
}
.review-card.featured .review-quote { color: rgba(255,255,255,.2); opacity: 1; }
.review-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .05em; }
.review-text  {
  font-size: .9375rem; color: var(--gray-700); line-height: 1.75;
  font-style: italic; margin-bottom: 1.5rem;
}
.review-card.featured .review-text { color: rgba(255,255,255,.88); }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-100); color: var(--blue-dark);
  font-weight: 800; font-size: .875rem;
  display: flex; align-items: center; justify-content: center;
}
.review-card.featured .review-avatar { background: rgba(255,255,255,.2); color: var(--white); }
.review-name     { font-weight: 700; font-size: .9375rem; color: var(--gray-900); }
.review-card.featured .review-name { color: var(--white); }
.review-location { font-size: .8125rem; color: var(--gray-400); }
.review-card.featured .review-location { color: rgba(255,255,255,.65); }

/* === FAQ === */
.faq-wrap { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden;
}
.faq-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; color: var(--gray-900);
  gap: 1rem; transition: color .15s;
}
.faq-btn:hover { color: var(--blue); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--gray-100); color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 300; line-height: 1;
  transition: background .2s, transform .3s, color .2s;
}
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  font-size: .9375rem; color: var(--gray-500); line-height: 1.75;
  padding: 0 1.5rem;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.faq-item.open .faq-body { max-height: 400px; padding: 0 1.5rem 1.25rem; }

/* === CONTACT CTA === */
.cta-band {
  background: linear-gradient(135deg, var(--blue-darker) 0%, #0369a1 50%, var(--blue) 100%);
  color: var(--white); padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 44v-8h-4v8h-8v4h8v8h4v-8h8v-4h-8z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
.cta-band p  { color: rgba(255,255,255,.8); font-size: 1.125rem; max-width: 500px; margin: 0 auto 2.25rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === CONTACT INLINE === */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info   { display: flex; flex-direction: column; gap: 1rem; }
.info-block {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.375rem 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.info-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--blue-100); display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; flex-shrink: 0;
}
.info-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: .25rem; }
.info-val   { font-size: 1.0625rem; font-weight: 700; color: var(--gray-900); }
.info-note  { font-size: .8125rem; color: var(--gray-500); margin-top: .2rem; }
.info-highlight {
  background: var(--blue); border-radius: var(--radius); padding: 1.375rem 1.5rem; color: var(--white);
}
.info-highlight strong { display: block; font-size: 1.0625rem; font-weight: 700; margin-bottom: .375rem; }
.info-highlight p { font-size: .9375rem; opacity: .88; line-height: 1.6; }

.contact-form-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: .75rem 1rem; font-size: .9375rem; font-family: var(--font);
  color: var(--gray-900); background: var(--gray-50);
  outline: none; width: 100%; transition: border-color .15s, box-shadow .15s, background .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14,165,233,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-submit {
  width: 100%; background: var(--blue); color: var(--white); border: none;
  padding: 1rem; border-radius: var(--radius-full);
  font-size: 1.0625rem; font-weight: 700; margin-top: .5rem;
  transition: background .15s, transform .1s; font-family: var(--font);
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }
.form-success {
  display: none; background: #d1fae5; border: 1px solid #6ee7b7;
  color: #065f46; padding: 1rem 1.25rem; border-radius: var(--radius);
  font-weight: 600; font-size: .9375rem; margin-top: 1rem;
}
.form-success.show { display: block; }

/* === FOOTER === */
.footer      { background: var(--gray-900); color: rgba(255,255,255,.65); padding: 5rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo-text { color: var(--white); font-size: 1.0625rem; font-weight: 800; }
.footer-brand p  { font-size: .9375rem; margin-top: 1rem; margin-bottom: 1.5rem; max-width: 300px; line-height: 1.75; }
.footer-badges   { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer-badge    {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.8); padding: .25rem .75rem;
  border-radius: var(--radius-full); font-size: .75rem; font-weight: 600;
}
.footer-col h4   { color: var(--white); font-size: .9375rem; margin-bottom: 1.125rem; }
.footer-links    { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a  { font-size: .9375rem; transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: .625rem; }
.footer-contact-item { display: flex; align-items: center; gap: .625rem; font-size: .9375rem; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0; text-align: center;
  font-size: .8125rem; color: rgba(255,255,255,.3);
}

/* === INNER PAGE HERO === */
.page-hero {
  background: linear-gradient(140deg, var(--blue-darker) 0%, var(--blue-dark) 100%);
  color: var(--white); padding: 4rem 0 3.5rem; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.78); font-size: 1.125rem; max-width: 520px; margin: 0 auto; }

/* === CARDS (generic) === */
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.875rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.card-link {
  display: inline-flex; align-items: center; gap: .375rem;
  color: var(--blue); font-weight: 700; font-size: .9375rem;
  margin-top: 1rem; transition: gap .15s;
}
.card-link:hover { gap: .625rem; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   STUNNING 3D — GLASS — ANIMATED ENHANCEMENTS
   ═══════════════════════════════════════════════ */

/* ── Hero deep background ─────────────────────── */
.hero {
  background: linear-gradient(145deg, #020c1b 0%, #0a2540 45%, #0c4a6e 100%) !important;
}
.hero::before {
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px) !important;
  background-size: 38px 38px !important;
  z-index: 0 !important;
}
.hero-inner { position: relative; z-index: 2; }

/* ── Animated background orbs ─────────────────── */
.hero-orb-wrap {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 1;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .7;
  animation: orb-drift 14s ease-in-out infinite;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(14,165,233,.45) 0%, transparent 70%);
  top: -220px; right: -180px; animation-delay: 0s;
}
.orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(6,182,212,.35) 0%, transparent 70%);
  bottom: -120px; left: -140px; animation-delay: -5s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(139,92,246,.22) 0%, transparent 70%);
  top: 40%; left: 38%; animation-delay: -9s;
}
@keyframes orb-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  25%      { transform: translate(50px,-45px) scale(1.06); }
  50%      { transform: translate(-35px,30px) scale(.94); }
  75%      { transform: translate(25px,15px) scale(1.03); }
}

/* ── Gradient text ────────────────────────────── */
.text-gradient {
  background: linear-gradient(120deg, #ffffff 0%, #bae6fd 45%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass hero cards ─────────────────────────── */
.hero-card {
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.12) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}
.hero-card:hover {
  transform: translateX(10px) scale(1.015) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.18) !important;
}
.hero-card-icon { background: rgba(14,165,233,.22) !important; }
.hero-phone-cta {
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.28) !important;
}

/* ── Shine animation on buttons ───────────────── */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::before {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-22deg);
  animation: btn-shine 3.5s ease infinite;
}
@keyframes btn-shine {
  0%        { left: -120%; }
  45%, 100% { left: 160%;  }
}

/* ── Ripple keyframe (added via JS) ───────────── */
@keyframes ripple { to { transform: scale(2.5); opacity: 0; } }

/* ── Dark ink sections ────────────────────────── */
.bg-ink { background: #030c18; }

/* ── Dark section labels/headings ─────────────── */
.dark-section .section-label {
  background: rgba(14,165,233,.18) !important;
  color: #38bdf8 !important;
}
.dark-section h2  { color: #fff; }
.dark-section .section-sub { color: rgba(255,255,255,.58) !important; }

/* ── 3D Glass service cards on dark bg ─────────── */
.dark-section .service-card {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  backdrop-filter: blur(16px) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.4) !important;
  will-change: transform;
  transform-style: preserve-3d;
}
.dark-section .service-card::before {
  background: linear-gradient(90deg, var(--blue), #38bdf8) !important;
}
.dark-section .service-card:hover {
  background: rgba(255,255,255,.09) !important;
  border-color: rgba(14,165,233,.45) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(14,165,233,.25) !important;
}
.dark-section .service-card h3 { color: #fff; }
.dark-section .service-card p  { color: rgba(255,255,255,.63); }
.dark-section .service-icon    { background: rgba(14,165,233,.2) !important; }
.dark-section .service-price   {
  background: rgba(14,165,233,.18) !important;
  color: #38bdf8 !important;
}
.dark-section .service-link    { color: #38bdf8 !important; }

/* ── 3D tilt base ─────────────────────────────── */
.tilt-card {
  transition: box-shadow .15s ease !important;
  will-change: transform;
  transform-style: preserve-3d;
}

/* ── Dark testimonials (glass on ink) ─────────── */
.dark-reviews .review-card {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.32) !important;
  will-change: transform;
}
.dark-reviews .review-card.featured {
  background: var(--blue) !important;
  border-color: rgba(56,189,248,.4) !important;
  box-shadow: 0 24px 64px rgba(14,165,233,.35), 0 0 0 1px rgba(14,165,233,.3) !important;
}
.dark-reviews .review-text         { color: rgba(255,255,255,.82) !important; }
.dark-reviews .review-name         { color: #fff !important; }
.dark-reviews .review-location     { color: rgba(255,255,255,.5) !important; }
.dark-reviews .review-avatar       {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}
.dark-reviews .review-quote        { color: rgba(255,255,255,.12) !important; }
.dark-reviews .section-label       {
  background: rgba(14,165,233,.18) !important;
  color: #38bdf8 !important;
}
.dark-reviews h2                   { color: #fff !important; }
.dark-reviews .section-sub         { color: rgba(255,255,255,.58) !important; }
.dark-reviews .btn-outline {
  color: #38bdf8 !important;
  border-color: rgba(56,189,248,.5) !important;
}
.dark-reviews .btn-outline:hover {
  background: rgba(56,189,248,.15) !important;
  color: #fff !important;
}

/* ── Why cards — animated bottom accent ───────── */
.why-card { position: relative; overflow: hidden; }
.why-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), #38bdf8);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.why-card:hover::after { transform: scaleX(1); }

/* ── CTA band deep gradient ───────────────────── */
.cta-band {
  background: linear-gradient(135deg, #020c1b 0%, #0a2540 35%, #0369a1 75%, var(--blue) 100%) !important;
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(14,165,233,.28) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
.cta-band .container { position: relative; z-index: 1; }

/* ── Scroll reveal — more dramatic ────────────── */
.reveal {
  opacity: 0 !important;
  transform: translateY(32px) scale(.98) !important;
  transition: opacity .65s var(--ease), transform .65s var(--ease) !important;
}
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* ── Responsive orb adjustments ───────────────── */
@media (max-width: 768px) {
  .orb-1 { width: 380px; height: 380px; }
  .orb-2 { width: 280px; height: 280px; }
  .orb-3 { display: none; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner      { gap: 3rem; }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .footer-brand    { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .hamburger       { display: flex; }
  .nav-menu {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 1rem 1.5rem 1.5rem; gap: .125rem;
    border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-lg);
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease); z-index: 99;
  }
  .nav-menu.open   { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link        { padding: .75rem 1rem; }
  .nav-cta         { display: none; }
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-visual     { display: none; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid    { grid-template-columns: 1fr; }
  .contact-layout  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section         { padding: 4rem 0; }
  .services-grid   { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-card { padding: 1.5rem; }
  .hero-actions    { flex-direction: column; align-items: flex-start; }
  .trust-list      { gap: 1.25rem; flex-direction: column; align-items: flex-start; padding: 0 1.5rem; }
  .cta-band-btns   { flex-direction: column; align-items: center; }
}
