/* ============================================================
   ELEMENTAL SPECIALIZED CLEANING SERVICES
   Design: Dark industrial authority — navy/charcoal + teal
   ============================================================ */

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

:root {
  --bg:        #0D1B2A;
  --surface:   #162232;
  --surface2:  #1E2F42;
  --accent:    #00C9A7;
  --accent2:   #0099FF;
  --text:      #EDF2F7;
  --muted:     #7A9BB5;
  --border:    #253B52;
  --white:     #FFFFFF;
  --danger:    #E53E3E;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius:    4px;
  --max:       1160px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; text-transform: uppercase; }
p  { font-size: 1rem; font-weight: 400; line-height: 1.7; color: var(--muted); }

.accent-text { color: var(--accent); }
.lead { font-size: 1.1rem; color: var(--text); font-weight: 300; line-height: 1.8; }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
section.tight { padding: 48px 0; }
.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

/* ── NAVIGATION ── */
nav {
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span { color: var(--accent); }
.nav-logo .logo-icon {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-transform: none;
  letter-spacing: 0;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: var(--surface2);
}
.nav-cta {
  font-family: var(--font-head) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--white) !important; color: var(--bg) !important; }

/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-primary:hover { background: #00F5C8; border-color: #00F5C8; color: var(--bg); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-ghost:hover { background: var(--accent); color: var(--bg); }
.btn-lg { font-size: 1rem; padding: 16px 36px; }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0D1B2A 0%, #0A1929 60%, #091624 100%);
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,201,167,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(0,153,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 600px; height: 600px;
  border: 1px solid rgba(0,201,167,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead { max-width: 580px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-item {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0D1B2A 0%, #162232 100%);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,201,167,0.06) 0%, transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 600px; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: rgba(0,201,167,0.3);
  background: var(--surface2);
  transform: translateY(-2px);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { font-size: 0.92rem; }

/* ── PATHWAY CARDS ── */
.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pathway-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.pathway-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.pathway-card:hover { border-color: rgba(0,201,167,0.25); background: var(--surface2); }
.pathway-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.pathway-card p { margin-bottom: 24px; }
.pathway-card ul { list-style: none; margin-bottom: 32px; }
.pathway-card ul li {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.pathway-card ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pathway-card ul li:last-child { border-bottom: none; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services-grid .card:last-child:nth-child(3n+1) {
  grid-column: span 3;
}
.service-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--font-head);
}
.coming-soon-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,201,167,0.12);
  color: var(--accent);
  border: 1px solid rgba(0,201,167,0.3);
  padding: 3px 10px;
  border-radius: 2px;
  margin-top: 10px;
}

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 20px;
}
.step h4 { font-size: 1rem; margin-bottom: 10px; }
.step p { font-size: 0.88rem; }

/* ── NOTE BOX ── */
.note-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 40px;
}
.note-box p { font-size: 0.9rem; color: var(--muted); }
.note-box strong { color: var(--text); }

/* ── SECTION DIVIDER ── */
.section-alt { background: var(--surface); }
.divider-line {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── SPOTLIGHT (two-col) ── */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.spotlight.reverse .spotlight-content { order: 2; }
.spotlight.reverse .spotlight-image { order: 1; }
.spotlight-content h2 { margin-bottom: 20px; }
.spotlight-content p { margin-bottom: 24px; }
.spotlight-content ul { list-style: none; margin-bottom: 32px; }
.spotlight-content ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.spotlight-content ul li:last-child { border-bottom: none; }
.spotlight-content ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}
.spotlight-image {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.spotlight-image .img-placeholder {
  text-align: center;
  padding: 40px;
}
.spotlight-image .img-placeholder .icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.4; }
.spotlight-image .img-placeholder p { font-size: 0.82rem; color: var(--muted); }

/* ── QUOTE FORM ── */
.quote-section { background: var(--surface); }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-card h3 { margin-bottom: 8px; }
.form-card > p { margin-bottom: 28px; font-size: 0.9rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-head);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select option { background: var(--surface2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* ── FAQs ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.95rem; line-height: 1.8; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ── TRUST/PROOF SECTION ── */
.proof-section { background: var(--surface); text-align: center; }
.proof-tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.trust-badge {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-badge .badge-icon { color: var(--accent); font-size: 1rem; }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-trust span {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-trust span::before { content: '✓'; color: var(--accent); }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-detail h4 {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-detail p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.form-tabs { display: flex; gap: 0; margin-bottom: 32px; }
.form-tab {
  flex: 1;
  padding: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.form-tab:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.form-tab:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.form-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.form-panel { display: none; }
.form-panel.active { display: block; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 560px; }
.section-header.center p { margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pathway-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .card:last-child:nth-child(3n+1) { grid-column: span 2; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .spotlight { grid-template-columns: 1fr; gap: 32px; }
  .spotlight.reverse .spotlight-content { order: 1; }
  .spotlight.reverse .spotlight-image { order: 2; }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--bg);
    padding: 24px;
    gap: 4px;
    z-index: 99;
    border-top: 1px solid var(--border);
  }
  .nav-links.open a { display: block; padding: 14px 16px; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .card:last-child:nth-child(3n+1) { grid-column: span 1; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .pathway-card { padding: 32px 24px; }
  .trust-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
}
