/* ═══════════════════════════════════════════════
   AMC Janitorial — Main Stylesheet
   ═══════════════════════════════════════════════ */

:root {
  --navy:      #1B2B4B;
  --navy-dark: #0F1B30;
  --blue:      #2563EB;
  --blue-dark: #1D4ED8;
  --blue-lt:   #EFF6FF;
  --gray:      #6B7280;
  --gray-lt:   #F8FAFC;
  --gray-bd:   #E5E7EB;
  --dark:      #0D1117;
  --white:     #FFFFFF;
  --accent:    #38BDF8;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,.12);
  --transition: .25s ease;
}

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

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Section helpers ── */
.section { padding: 5rem 0; }
.bg-light  { background: var(--gray-lt); }
.bg-dark   { background: var(--navy-dark); }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-weight: 600; font-size: .95rem; border-radius: 8px;
  padding: .75rem 1.5rem; transition: all var(--transition); white-space: nowrap;
  cursor: pointer; border: 2px solid transparent;
}
.btn-lg  { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm  { padding: .5rem 1.1rem; font-size: .875rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--blue); color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.35); }

.btn-ghost {
  background: rgba(255,255,255,.12); color: var(--white);
  border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }

.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: #F0F4FF; transform: translateY(-1px); }

.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); transform: translateY(-1px); }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  padding: .6rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -.5px; flex-shrink: 0;
}
.brand-amc {
  color: var(--white); transition: color var(--transition);
}
.navbar.scrolled .brand-amc { color: var(--blue); }
.brand-jan {
  color: rgba(255,255,255,.85); font-weight: 500; margin-left: .2rem; transition: color var(--transition);
}
.navbar.scrolled .brand-jan { color: var(--navy); }

.nav-links {
  display: flex; align-items: center; gap: .25rem;
}
.nav-link {
  font-size: .9rem; font-weight: 500; padding: .5rem .75rem; border-radius: 6px;
  color: rgba(255,255,255,.9); transition: all var(--transition);
}
.navbar.scrolled .nav-link { color: #374151; }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.12); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--blue); background: var(--blue-lt); }

.nav-cta-btn {
  background: var(--blue); color: var(--white) !important;
  padding: .5rem 1.1rem; border-radius: 7px; font-weight: 600;
}
.nav-cta-btn:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }
.navbar.scrolled .nav-cta-btn { background: var(--blue); }
.navbar.scrolled .nav-cta-btn:hover { background: var(--blue-dark); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: .4rem; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  background: var(--white); transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1e3a6e 60%, #163260 100%);
  overflow: hidden;
}
.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");
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,.15) 0%, transparent 60%);
}
.hero-body {
  position: relative; z-index: 1;
  padding-top: 6rem; padding-bottom: 4rem;
  max-width: 780px;
}
.hero-label {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(56,189,248,.3);
  padding: .35rem .9rem; border-radius: 20px; margin-bottom: 1.5rem;
  background: rgba(56,189,248,.08);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.15; color: var(--white);
  letter-spacing: -.5px; margin-bottom: 1.25rem;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.78); max-width: 580px;
  line-height: 1.75; margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem;
}
.hero-trust-item { font-size: .875rem; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: .4rem; }
.chk { color: #4ADE80; font-weight: 700; }

/* ══════════════════════════════════
   STATS BAR
══════════════════════════════════ */
.stats-bar { background: var(--navy); padding: 1.75rem 0; }
.stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: .5rem 2.5rem; text-align: center;
}
.stat-n { font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.stat-l { font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; margin-top: .2rem; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* ══════════════════════════════════
   SECTION HELPERS
══════════════════════════════════ */
.sec-label {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--blue);
  margin-bottom: .75rem;
}
.light-label { color: var(--accent); }
.sec-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800;
  color: var(--navy); line-height: 1.2; letter-spacing: -.3px;
  margin-bottom: 1rem;
}
.light-title { color: var(--white); }
.sec-sub { font-size: 1.05rem; color: var(--gray); max-width: 600px; }
.light-sub { color: rgba(255,255,255,.65); }
.sec-header { text-align: center; margin-bottom: 3.5rem; }
.sec-header .sec-sub { margin: 0 auto; }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-text p { color: var(--gray); margin-bottom: 1rem; }
.about-text .btn { margin-top: .5rem; }

.values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }
.val-item { display: flex; gap: .9rem; align-items: flex-start; }
.val-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .15rem; }
.val-item h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.val-item p { font-size: .875rem; color: var(--gray); line-height: 1.55; margin: 0; }

.about-visual { position: relative; }
.about-img-box {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border-radius: 20px; height: 460px;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed #bfdbfe;
}
.about-img-inner { text-align: center; color: #93c5fd; }
.about-img-icon { font-size: 4rem; margin-bottom: .75rem; }
.about-img-inner p { font-weight: 600; color: #3b82f6; }
.about-img-inner small { font-size: .8rem; color: #93c5fd; }

.about-badge-box {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--blue); border-radius: 16px;
  padding: 1.25rem 1.5rem; display: flex; flex-direction: column;
  align-items: center; text-align: center;
  box-shadow: 0 8px 30px rgba(37,99,235,.4);
}
.badge-big { font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.badge-sub { font-size: .75rem; color: rgba(255,255,255,.8); margin-top: .25rem; line-height: 1.4; }

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}
.svc-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--gray-bd);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #bfdbfe; }
.svc-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.svc-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.svc-card p { font-size: .9rem; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; }
.svc-card ul { display: flex; flex-direction: column; gap: .35rem; }
.svc-card ul li {
  font-size: .85rem; color: #4B5563; padding-left: 1.1rem; position: relative;
}
.svc-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: .8rem; }

.svc-featured { border: 2px solid var(--blue); background: linear-gradient(135deg, #eff6ff, #fff); }
.svc-custom { background: var(--navy); border-color: var(--navy); }
.svc-custom h3, .svc-custom p, .svc-custom ul li { color: rgba(255,255,255,.9) !important; }
.svc-custom ul li::before { color: var(--accent); }
.svc-custom .btn { margin-top: 1.25rem; }

/* ══════════════════════════════════
   INDUSTRIES
══════════════════════════════════ */
.ind-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.ind-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--gray-bd);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ind-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ind-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.ind-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.ind-card p { font-size: .9rem; color: var(--gray); line-height: 1.65; }
.ind-featured { border: 2px solid var(--blue); position: relative; overflow: hidden; }
.ind-featured::before {
  content: 'Healthcare'; position: absolute; top: 1rem; right: -2rem;
  background: var(--blue); color: var(--white); font-size: .7rem; font-weight: 700;
  padding: .25rem 2.5rem; transform: rotate(35deg); letter-spacing: 1px; text-transform: uppercase;
}
.ind-cta { text-align: center; }
.ind-cta p { font-size: 1.05rem; color: var(--gray); margin-bottom: 1rem; }
.ind-cta strong { color: var(--navy); }

/* ══════════════════════════════════
   WHY US (DARK)
══════════════════════════════════ */
.reasons-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem;
}
.reason-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 2rem;
  transition: background var(--transition), border-color var(--transition);
}
.reason-card:hover { background: rgba(255,255,255,.07); border-color: rgba(37,99,235,.5); }
.reason-num {
  font-size: 2.5rem; font-weight: 800; color: rgba(37,99,235,.4);
  line-height: 1; margin-bottom: .75rem; letter-spacing: -1px;
}
.reason-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.reason-card p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}
.testi-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--gray-bd); box-shadow: var(--shadow);
}
.stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-card > p { font-size: .9rem; color: #4B5563; line-height: 1.75; font-style: italic; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: .9rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .75rem; font-weight: 700; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--navy); }
.testi-author span { font-size: .8rem; color: var(--gray); }

/* ══════════════════════════════════
   SERVICE AREAS
══════════════════════════════════ */
.areas-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem;
}
.area-group h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.area-list { display: flex; flex-direction: column; gap: .6rem; }
.area-list li {
  font-size: .95rem; color: #4B5563; padding: .6rem 1rem;
  background: var(--gray-lt); border-radius: 8px; border: 1px solid var(--gray-bd);
  transition: all var(--transition);
}
.area-list li:hover { background: var(--blue-lt); border-color: #bfdbfe; color: var(--blue); }

.area-cta-box {
  background: linear-gradient(135deg, var(--navy), #1e3a6e);
  border-radius: var(--radius); padding: 2rem; text-align: center; color: var(--white);
}
.area-cta-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.area-cta-box h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.area-cta-box p { font-size: .875rem; color: rgba(255,255,255,.7); margin-bottom: 1.25rem; }

.local-note {
  background: var(--blue-lt); border: 1px solid #bfdbfe;
  border-radius: 10px; padding: 1.25rem 1.5rem; text-align: center;
}
.local-note p { font-size: .95rem; color: #1e40af; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
}
.contact-info p { color: var(--gray); margin-bottom: 1.5rem; line-height: 1.75; }
.contact-info .sec-title { margin-bottom: .75rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
.c-detail { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.c-detail strong { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.c-detail a, .c-detail span { display: block; font-size: .9rem; color: var(--gray); }
.c-detail a:hover { color: var(--blue); }
.c-detail small { display: block; font-size: .8rem; color: #9CA3AF; margin-top: .15rem; }

.guarantee-box {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #F0FDF4; border: 1px solid #BBF7D0;
  border-radius: 10px; padding: 1.25rem;
}
.g-icon { font-size: 1.75rem; flex-shrink: 0; }
.guarantee-box strong { display: block; font-size: .9rem; font-weight: 700; color: #166534; margin-bottom: .25rem; }
.guarantee-box p { font-size: .875rem; color: #15803D; margin: 0; line-height: 1.55; }

/* Form */
.form-wrap {
  background: var(--white); border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 8px 50px rgba(0,0,0,.1); border: 1px solid var(--gray-bd);
}
.quote-form h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: #374151; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-bd); border-radius: 8px;
  padding: .7rem 1rem; font-size: .9rem; font-family: var(--font);
  color: #374151; background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group input.error, .form-group select.error, .form-group textarea.error {
  border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }
.form-privacy { font-size: .78rem; color: #9CA3AF; text-align: center; margin-top: .75rem; }

.form-success {
  display: none; text-align: center; padding: 3rem 1rem;
}
.form-success.visible { display: block; }
.success-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: #D1FAE5; color: #10B981; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-weight: 700;
}
.form-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: .75rem; }
.form-success p { color: var(--gray); margin-bottom: 1.5rem; }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--white); border: 1px solid var(--gray-bd); border-radius: 10px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; font-size: .95rem; font-weight: 600; color: var(--navy);
  text-align: left; transition: background var(--transition);
}
.faq-q:hover { background: var(--gray-lt); }
.faq-q[aria-expanded="true"] { background: var(--blue-lt); color: var(--blue); }
.faq-arrow { transition: transform var(--transition); font-size: .75rem; flex-shrink: 0; margin-left: 1rem; }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; }
.faq-a.open { display: block; }
.faq-a p { font-size: .9rem; color: var(--gray); line-height: 1.75; }

/* ══════════════════════════════════
   CTA BANNER
══════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #1D4ED8 60%, #1e3a6e 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.cta-banner::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.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-inner { text-align: center; position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,.78); margin-bottom: 2rem; line-height: 1.75; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer { background: var(--navy-dark); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-badges span {
  font-size: .75rem; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.12); border-radius: 20px;
  padding: .25rem .75rem;
}
.footer-col h4 { font-size: .85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a, .footer-col p { font-size: .875rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col p { margin-bottom: .5rem; }
.footer-col p a:hover { color: var(--accent); }

.footer-bottom { padding: 1.5rem 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 280px;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    background: var(--white); padding: 5rem 2rem 2rem;
    box-shadow: -4px 0 30px rgba(0,0,0,.12);
    transition: right var(--transition); gap: .25rem; z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-link { color: #374151 !important; width: 100%; padding: .75rem 1rem; border-radius: 8px; }
  .nav-cta-btn { width: 100%; text-align: center; margin-top: 1rem; }

  /* Hero */
  .hero-body { padding-top: 7rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }

  /* Stats */
  .stats-inner { gap: 0; }
  .stat-item { padding: .5rem 1.25rem; }
  .stat-div { height: 30px; }

  /* Values */
  .values-list { grid-template-columns: 1fr; }

  /* Grids */
  .services-grid, .ind-grid, .reasons-grid, .testi-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 1.75rem; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .stat-item { padding: .4rem .75rem; }
  .stat-n { font-size: 1.3rem; }
  .cta-banner-btns { flex-direction: column; }
}
