/* =========================================
   FIROZ CLEANING SERVICES — styles.css
   Design: Premium diagonal-stroke aesthetic
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── TOKENS ────────────────────────────── */
:root {
  --navy:      #0B1F3A;
  --navy-mid:  #152E52;
  --coral:     #E8844A;
  --coral-lt:  #F2A478;
  --mist:      #C8D8E8;
  --cream:     #F8F7F4;
  --white:     #FFFFFF;
  --text-dark: #0B1F3A;
  --text-mid:  #4A6080;
  --text-lt:   #8FA3BB;

  --display:   'Playfair Display', Georgia, serif;
  --body:      'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILS ─────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.section-label {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--coral);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--coral-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,132,74,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ── NAVBAR ────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.nav-logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.nav-logo-text strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--mist);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--coral);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ──────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

/* diagonal slash — the signature element */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%;
  height: 130%;
  background: var(--navy-mid);
  transform: skewX(-8deg);
  transform-origin: top right;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232,132,74,0.06) 0%, transparent 70%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-block: 5rem;
}

.hero-content {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(232,132,74,0.12);
  border: 1px solid rgba(232,132,74,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}
.hero-eyebrow span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mist);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

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

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,216,232,0.15);
}
.hero-stat {}
.hero-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-lt);
  margin-top: 0.25rem;
  display: block;
}

/* hero image grid */
.hero-visual {
  position: relative;
  height: 520px;
}
.hero-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 82%;
  height: 78%;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.35);
}
.hero-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-secondary {
  position: absolute;
  bottom: 0; left: 0;
  width: 52%;
  height: 42%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  border: 3px solid var(--navy);
}
.hero-img-secondary img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 28%;
  right: -5%;
  background: var(--coral);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(232,132,74,0.4);
  text-align: center;
  min-width: 120px;
}
.hero-badge strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.hero-badge span {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.88;
}


/* ── TRUST BAR ─────────────────────────── */
.trust-bar {
  background: var(--white);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(11,31,58,0.06);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(11,31,58,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--coral); flex-shrink: 0; }
.trust-item p {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
}

/* ── SERVICES ──────────────────────────── */
.services {
  padding: 7rem 0;
  background: var(--cream);
  position: relative;
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
.services-header h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.services-header p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(11,31,58,0.12);
}
.service-card:hover .service-img-overlay { opacity: 1; }

.service-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-body {
  padding: 1.5rem;
}
.service-icon {
  width: 44px; height: 44px;
  background: rgba(232,132,74,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.service-body h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 0.7rem; }

/* ── WHY US ─────────────────────────────── */
.why-us {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: 'CLEAN';
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 20vw;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-us-visual {
  position: relative;
  height: 500px;
}
.why-img-top {
  position: absolute;
  top: 0; left: 0;
  width: 70%;
  height: 60%;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.why-img-top img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.why-img-bottom {
  position: absolute;
  bottom: 0; right: 0;
  width: 65%;
  height: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--navy);
}
.why-img-bottom img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.why-stripe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--coral);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(232,132,74,0.4);
  z-index: 2;
}

.why-us-content {}
.why-us-content h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.why-us-content > p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mist);
  margin-bottom: 2.5rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.why-item-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(232,132,74,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-top: 2px;
}
.why-item-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.why-item-text p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-lt);
}

/* ── PROCESS ────────────────────────────── */
.process {
  padding: 7rem 0;
  background: var(--cream);
}
.process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4.5rem;
}
.process-header h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.process-header p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1.5px;
  background: linear-gradient(to right, var(--mist), var(--coral), var(--mist));
}

.process-step {
  text-align: center;
  position: relative;
}
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--mist);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: border-color var(--transition), background var(--transition);
}
.process-step:hover .process-step-num {
  border-color: var(--coral);
  background: var(--coral);
}
.process-step-num span {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}
.process-step:hover .process-step-num span { color: var(--white); }

.process-step h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ── TESTIMONIALS ──────────────────────── */
.testimonials {
  padding: 7rem 0;
  background: var(--white);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-header h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.testimonials-header p {
  font-size: 0.95rem;
  color: var(--text-mid);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(11,31,58,0.05);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(11,31,58,0.08);
  transform: translateY(-3px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--display);
  font-size: 5rem;
  color: rgba(232,132,74,0.1);
  line-height: 1;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.star { color: #F5C842; font-size: 0.9rem; }

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--mist));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.author-info span {
  font-size: 0.75rem;
  color: var(--text-lt);
}

/* ── CTA BAND ───────────────────────────── */
.cta-band {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--coral) 0%, #c96030 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -5%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.cta-band-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}
.cta-band-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--coral);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── CONTACT ────────────────────────────── */
.contact {
  padding: 7rem 0;
  background: var(--cream);
}
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {}
.contact-info h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.contact-info > p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1.5px solid rgba(11,31,58,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 0.2rem;
}
.contact-detail-text a,
.contact-detail-text p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
}
.contact-detail-text a:hover { color: var(--coral); }

/* contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(11,31,58,0.07);
}
.contact-form-wrap h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.contact-form-wrap > p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.45rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid rgba(11,31,58,0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--body);
  font-size: 0.875rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,132,74,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; font-size: 0.95rem; padding: 1rem; }

/* ── FOOTER ─────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 4.5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,216,232,0.1);
}

.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.footer-logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.footer-logo-text strong {
  display: block;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.footer-logo-text span {
  font-size: 0.6rem;
  color: var(--mist);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(200,216,232,0.6);
  margin-bottom: 1.25rem;
}
.footer-uen {
  font-size: 0.72rem;
  color: rgba(200,216,232,0.35);
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(200,216,232,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--coral); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(200,216,232,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(200,216,232,0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--coral); }

/* ── MOBILE NAV (overlay) ───────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--coral); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 360px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us .container { grid-template-columns: 1fr; gap: 3rem; }
  .why-us-visual { height: 320px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact .container { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: 70px; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-visual { height: 280px; }
  .hero-badge { right: 0; }

  .services-header { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process-steps::before { display: none; }

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

  .cta-band .container { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  .trust-bar .container { gap: 0; }
  .trust-item { padding: 0.5rem 1rem; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
