/* =============================================================
   RAPID PAINTERS — SHARED STYLES
   ============================================================= */

:root {
  --navy: #01255E;
  --navy-deep: #011A44;
  --navy-light: #032F73;
  --red: #E63946;
  --orange: #F77F00;
  --yellow: #FFD60A;
  --green: #06D6A0;
  --whatsapp: #25D366;
  --blue: #0077B6;
  --light: #F7F9FC;
  --grey: #6B7280;
  --grey-soft: #E5E9F2;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 14px rgba(1, 37, 94, 0.08);
  --shadow-md: 0 12px 32px rgba(1, 37, 94, 0.12);
  --shadow-lg: 0 24px 60px rgba(1, 37, 94, 0.18);
  --radius: 18px;
  --radius-lg: 28px;
  --gradient-brand: linear-gradient(135deg, #E63946 0%, #F77F00 35%, #FFD60A 65%, #06D6A0 100%);
  --gradient-warm: linear-gradient(135deg, #F77F00 0%, #E63946 100%);
  --gradient-cool: linear-gradient(135deg, #0077B6 0%, #06D6A0 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 32px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.3px;
  border-radius: 999px; transition: all 0.3s ease;
  cursor: pointer; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gradient-warm); color: white;
  box-shadow: 0 10px 30px rgba(247, 127, 0, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(247, 127, 0, 0.55); }
.btn-secondary {
  background: white; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: white; transform: translateY(-3px); }
.btn-outline-light {
  background: rgba(255,255,255,0.1); color: white;
  border: 2px solid rgba(255,255,255,0.4); backdrop-filter: blur(8px);
}
.btn-outline-light:hover { background: white; color: var(--navy); border-color: white; }

/* ===================== HEADER ===================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #01255E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.header.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img {
  height: 54px; width: auto;
  /* no filter — clean blend with header */
}
.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
  padding: 10px 18px; font-size: 14.5px; font-weight: 500;
  color: rgba(255,255,255,0.92); border-radius: 999px;
  transition: all 0.25s ease; position: relative;
}
.nav a:hover { background: rgba(255,255,255,0.12); color: #fff; }
.nav a.active { color: var(--yellow); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.call-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.25s ease;
}
.call-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.call-btn i { color: var(--green); }
.quote-btn {
  background: var(--gradient-warm); color: white; font-weight: 600;
  padding: 12px 24px; border-radius: 999px; font-size: 14px;
  box-shadow: 0 6px 18px rgba(247, 127, 0, 0.45);
  transition: all 0.25s ease;
}
.quote-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(247, 127, 0, 0.65); }
.menu-toggle {
  display: none; font-size: 22px; color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: all 0.25s ease;
}
.menu-toggle:hover { background: rgba(255,255,255,0.15); }
.menu-toggle .fa-xmark { display: none; }
.menu-toggle.is-open .fa-bars { display: none; }
.menu-toggle.is-open .fa-xmark { display: inline-block; }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh; padding: 140px 0 100px;
  background: linear-gradient(135deg, #011A44 0%, #01255E 55%, #032F73 100%);
  color: white; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('paint-being-poured-into-tray-with-paint-roller-2026-01-07-23-37-27-utc.jpg');
  background-size: cover; background-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, rgba(1,26,68,0.55) 0%, rgba(1,37,94,0.35) 50%, rgba(3,47,115,0.45) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px; font-weight: 500; letter-spacing: 0.4px;
  backdrop-filter: blur(8px); margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(6,214,160,0.25); }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -1.2px;
  margin-bottom: 24px;
}
.hero .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 700;
}
.hero h1 .accent { position: relative; }
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 6px;
  background: var(--gradient-brand);
  border-radius: 4px; opacity: 0.7;
}
.hero p.subhead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.82); max-width: 560px;
  margin-bottom: 38px; font-weight: 400;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat .num {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat .label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; font-weight: 500; }

/* ===================== HERO QUOTE FORM (CLEAN WHITE) ===================== */
.quote-form-wrap {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  color: var(--navy);
  border: 1px solid rgba(1,37,94,0.06);
}
.quote-form-wrap .form-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(1, 37, 94, 0.06); color: var(--navy);
  font-size: 11.5px; font-weight: 600; letter-spacing: 1.2px;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
  text-transform: uppercase;
}
.quote-form-wrap .form-badge i { color: var(--orange); }
.quote-form-wrap h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 10px; letter-spacing: -0.5px;
  color: var(--navy);
}
.quote-form-wrap h3 .em { color: var(--orange); }
.quote-form-wrap > p { color: var(--grey); font-size: 0.94rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { position: relative; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 14px 18px 14px 44px;
  border: 1.5px solid var(--grey-soft); border-radius: 12px;
  font-family: inherit; font-size: 0.94rem; color: var(--navy);
  background: var(--white); transition: all 0.25s ease;
  outline: none;
}
.form-field textarea { padding-left: 44px; resize: vertical; min-height: 90px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(1,37,94,0.08);
}
.form-field i {
  position: absolute; left: 16px; top: 16px;
  color: var(--navy); opacity: 0.55; font-size: 14px;
}
.form-submit {
  width: 100%; padding: 16px; margin-top: 10px;
  background: var(--navy); color: white;
  font-weight: 700; font-size: 15px; letter-spacing: 0.4px;
  border-radius: 12px; cursor: pointer;
  box-shadow: 0 10px 28px rgba(1,37,94,0.25);
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { transform: translateY(-2px); background: var(--navy-deep); box-shadow: 0 14px 36px rgba(1,37,94,0.4); }
.form-note {
  margin-top: 14px; font-size: 12px; color: var(--grey);
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-note i { color: var(--green); }

/* Bottom paint wave divider */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  width: 100%; height: 80px; z-index: 3;
}

/* ===================== SECTION BASE ===================== */
section { padding: 110px 0; position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px; border-radius: 999px;
  background: rgba(247,127,0,0.1); color: var(--orange);
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 18px;
}
.eyebrow .bar { width: 18px; height: 3px; background: var(--orange); border-radius: 2px; }
h2.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 18px;
}
h2.section-title .swatch {
  background: var(--gradient-brand); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.section-head p {
  color: var(--grey); font-size: 1.05rem; max-width: 620px; margin: 0 auto;
}

/* ===================== ABOUT (homepage only) ===================== */
.about {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(247,249,252,0.92)),
    url('renovation-project-with-ladders-and-paint-cans-2026-03-11-00-55-18-utc.jpg') center/cover;
  overflow: hidden;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 2;
}
.about-images { position: relative; aspect-ratio: 4/5; max-width: 520px; margin: 0 auto; }
.about-img-main {
  position: relative; width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(1,37,94,0.35));
}
.about-badge-yrs {
  position: absolute; bottom: -30px; right: -30px;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--gradient-warm); color: white;
  display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow-md); z-index: 4;
  border: 8px solid white;
}
.about-badge-yrs .yr-num { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about-badge-yrs .yr-lbl { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.about-content h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.7px; }
.about-content > p { color: var(--grey); font-size: 1rem; margin-bottom: 18px; }
.about-points { list-style: none; margin: 24px 0 36px; }
.about-points li {
  display: flex; align-items: flex-start; gap: 14px; padding: 10px 0;
  font-weight: 500; font-size: 0.96rem;
}
.about-points li i {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(6,214,160,0.12); color: var(--green);
  display: grid; place-items: center; font-size: 13px; flex-shrink: 0;
}

/* ===================== SERVICES ===================== */
.services {
  background: linear-gradient(180deg, #ECEFF4 0%, #E6EBF2 100%);
  position: relative; overflow: hidden;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px; position: relative; z-index: 2;
}
.service-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(1,37,94,0.04);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-image { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.service-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.08); }
.service-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(1,37,94,0.55));
}
.service-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--gradient-warm); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.6px;
  padding: 6px 14px; border-radius: 999px;
  text-transform: uppercase;
}
.service-body { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
.service-body p { color: var(--grey); font-size: 0.93rem; margin-bottom: 18px; line-height: 1.7; flex: 1; }
.service-body .more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange); font-weight: 600; font-size: 0.9rem;
  transition: gap 0.3s ease; align-self: flex-start;
}
.service-card:hover .service-body .more { gap: 14px; }

/* ===================== CONTENT BLOCKS ===================== */
.content-block { background: white; }
.content-block.alt { background: var(--light); }
.content-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.content-grid-2 h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.6px; }
.content-grid-2 h2 .swatch { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.content-grid-2 h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 10px; color: var(--navy); }
.content-grid-2 p { color: var(--grey); font-size: 0.98rem; margin-bottom: 14px; }
.content-grid-2 a.inline-link { color: var(--orange); font-weight: 600; border-bottom: 2px solid rgba(247,127,0,0.3); transition: border-color 0.25s ease; }
.content-grid-2 a.inline-link:hover { border-bottom-color: var(--orange); }
.content-image {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.content-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== WHY ===================== */
.why { background: white; overflow: hidden; position: relative; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-card {
  padding: 28px 24px; border-radius: var(--radius);
  background: var(--light); transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.feature-card:hover { background: white; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.feature-card .num {
  font-size: 0.8rem; font-weight: 700; color: var(--orange);
  letter-spacing: 2px; margin-bottom: 12px;
}
.feature-card .ico-wrap {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--gradient-warm); color: white;
  display: grid; place-items: center; font-size: 22px;
  margin-bottom: 18px; box-shadow: 0 8px 20px rgba(247,127,0,0.3);
}
.feature-card:nth-child(2) .ico-wrap { background: var(--gradient-cool); box-shadow: 0 8px 20px rgba(0,119,182,0.3); }
.feature-card:nth-child(3) .ico-wrap { background: linear-gradient(135deg, #FFD60A, #F77F00); box-shadow: 0 8px 20px rgba(255,214,10,0.3); }
.feature-card:nth-child(4) .ico-wrap { background: linear-gradient(135deg, #E63946, #B5179E); box-shadow: 0 8px 20px rgba(230,57,70,0.3); }
.feature-card:nth-child(5) .ico-wrap { background: linear-gradient(135deg, #06D6A0, #0077B6); box-shadow: 0 8px 20px rgba(6,214,160,0.3); }
.feature-card:nth-child(6) .ico-wrap { background: linear-gradient(135deg, #01255E, #0077B6); box-shadow: 0 8px 20px rgba(1,37,94,0.3); }
.feature-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--grey); line-height: 1.65; }

/* ===================== AREAS ===================== */
.areas { background: var(--navy); color: white; position: relative; overflow: hidden; }
.areas::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(247,127,0,0.1), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(6,214,160,0.08), transparent 50%);
}
.areas .section-head h2 { color: white; }
.areas .section-head p { color: rgba(255,255,255,0.75); }
.areas .eyebrow { background: rgba(247,127,0,0.18); color: var(--yellow); }
.areas .eyebrow .bar { background: var(--yellow); }
.areas-body { position: relative; z-index: 2; }
.areas-intro { max-width: 880px; margin: 0 auto 50px; text-align: center; color: rgba(255,255,255,0.82); font-size: 1rem; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.area-region {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.area-region:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.area-region h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.area-region h3 i { color: var(--orange); }
.area-region p { color: rgba(255,255,255,0.7); font-size: 0.93rem; margin-bottom: 22px; }
.area-list { display: flex; flex-wrap: wrap; gap: 8px; }
.area-list a {
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.83rem; color: rgba(255,255,255,0.85);
  transition: all 0.25s ease;
}
.area-list a:hover { background: var(--gradient-warm); border-color: transparent; color: white; }

/* ===================== PROCESS ===================== */
.process { background: var(--light); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.process-step {
  background: white; padding: 36px 28px;
  border-radius: var(--radius); text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease; position: relative;
}
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.process-step .step-num {
  width: 60px; height: 60px; margin: 0 auto 22px;
  border-radius: 50%; background: var(--gradient-warm); color: white;
  display: grid; place-items: center; font-weight: 800; font-size: 1.4rem;
  box-shadow: 0 10px 24px rgba(247,127,0,0.35);
}
.process-step:nth-child(2) .step-num { background: var(--gradient-cool); box-shadow: 0 10px 24px rgba(0,119,182,0.35); }
.process-step:nth-child(3) .step-num { background: linear-gradient(135deg, #FFD60A, #F77F00); box-shadow: 0 10px 24px rgba(255,214,10,0.35); }
.process-step:nth-child(4) .step-num { background: linear-gradient(135deg, #06D6A0, #0077B6); box-shadow: 0 10px 24px rgba(6,214,160,0.35); }
.process-step h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { color: var(--grey); font-size: 0.9rem; }

/* ===================== TESTIMONIALS — AUTO SLIDER ===================== */
.testimonials { background: white; position: relative; overflow: hidden; }
.testimonials::before, .testimonials::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 4; pointer-events: none;
}
.testimonials::before { left: 0; background: linear-gradient(90deg, white, transparent); }
.testimonials::after { right: 0; background: linear-gradient(-90deg, white, transparent); }
.testimonials-track-wrap {
  position: relative; overflow: hidden; margin: 0 -24px;
}
.testimonials-track {
  display: flex; gap: 28px;
  animation: scroll-left 50s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 14px)); }
}
.testimonial-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  width: 380px;
  flex-shrink: 0;
  border-top: 5px solid var(--accent, var(--orange));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-card .quote-mark {
  font-size: 3rem; line-height: 1; color: var(--accent);
  opacity: 0.18; position: absolute; top: 18px; right: 22px;
}
.stars { color: var(--yellow); margin-bottom: 16px; font-size: 14px; }
.testimonial-card p.review { color: var(--navy); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; min-height: 130px; }
.reviewer { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--grey-soft); }
.reviewer .avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--accent); color: white;
  display: grid; place-items: center; font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.reviewer .name { font-weight: 600; font-size: 0.95rem; }
.reviewer .city { font-size: 0.82rem; color: var(--grey); }
.t-c1 { --accent: var(--red); }
.t-c2 { --accent: var(--orange); }
.t-c3 { --accent: var(--green); }
.t-c4 { --accent: var(--blue); }
.t-c5 { --accent: #B5179E; }
.t-c6 { --accent: #FFD60A; }

/* ===================== FAQ ===================== */
.faq { background: var(--light); }
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid rgba(1,37,94,0.04);
  transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; font-weight: 600; font-size: 1.02rem; color: var(--navy);
  cursor: pointer; transition: all 0.3s ease;
}
.faq-q:hover { color: var(--orange); }
.faq-q .ico {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%; background: rgba(247,127,0,0.12);
  color: var(--orange); display: grid; place-items: center;
  transition: all 0.3s ease;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--orange); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--grey); font-size: 0.96rem; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 800px; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  padding: 90px 0; position: relative; overflow: hidden;
  background: var(--navy);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('paint-being-poured-into-tray-with-paint-roller-2026-01-07-23-37-27-utc.jpg') center/cover;
  opacity: 0.18;
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(230,57,70,0.85), rgba(247,127,0,0.85));
}
.cta-inner {
  position: relative; z-index: 2; text-align: center;
  color: white; max-width: 760px; margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
}
.cta-inner p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 38px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-inner .btn-primary { background: white; color: var(--red); box-shadow: 0 14px 36px rgba(0,0,0,0.25); }
.cta-inner .btn-primary:hover { box-shadow: 0 18px 48px rgba(0,0,0,0.35); }
.cta-inner .btn-outline-light:hover { background: rgba(0,0,0,0.2); border-color: white; color: white; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.8);
  padding: 90px 0 0; position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--gradient-brand);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h5 {
  color: white; font-size: 1.05rem; font-weight: 700;
  margin-bottom: 22px; letter-spacing: -0.2px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7); font-size: 0.93rem;
  transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: var(--orange); transform: translateX(4px); }
.footer-brand img {
  height: 70px; margin-bottom: 18px;
  /* no filter — natural blend with footer */
}
.footer-brand p { font-size: 0.93rem; line-height: 1.7; max-width: 320px; margin-bottom: 22px; }
.footer-contact li i { width: 28px; color: var(--orange); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: white;
  display: grid; place-items: center;
  transition: all 0.3s ease;
}
.socials a:hover { background: var(--gradient-warm); transform: translateY(-3px); }
.footer-bottom {
  padding: 24px 0; text-align: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===================== PAGE HERO (sub-pages) ===================== */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #011A44 0%, #01255E 55%, #032F73 100%);
  color: white;
  text-align: center;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero h1 .swatch {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 720px;
  margin: 0 auto 28px;
}
.page-hero .breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; color: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  margin-bottom: 26px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.8); }
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero .breadcrumb i { font-size: 9px; color: rgba(255,255,255,0.5); }

/* Long-form text sections for sub-pages */
.prose {
  max-width: 880px; margin: 0 auto; color: var(--grey);
}
.prose h2 {
  color: var(--navy); font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; line-height: 1.2; margin: 50px 0 16px;
  letter-spacing: -0.5px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  color: var(--navy); font-size: 1.25rem;
  font-weight: 700; margin: 30px 0 12px;
}
.prose p { font-size: 1rem; line-height: 1.8; margin-bottom: 18px; }
.prose ul { margin: 12px 0 22px 22px; }
.prose ul li { padding: 6px 0; line-height: 1.75; }
.prose ul li::marker { color: var(--orange); }
.prose a { color: var(--orange); font-weight: 600; border-bottom: 2px solid rgba(247,127,0,0.3); transition: border-color 0.25s ease; }
.prose a:hover { border-bottom-color: var(--orange); }
.prose strong { color: var(--navy); font-weight: 600; }

/* Service detail card on services page */
.service-detail {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: 30px;
  border: 1px solid rgba(1,37,94,0.04);
}
.service-detail:nth-child(even) .sd-image { order: 2; }
.sd-image { position: relative; min-height: 360px; overflow: hidden; }
.sd-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sd-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(1,37,94,0.3));
}
.sd-body { padding: 44px 40px; }
.sd-body h3 {
  font-size: 1.6rem; font-weight: 800; margin-bottom: 14px;
  color: var(--navy); letter-spacing: -0.4px;
}
.sd-body p { color: var(--grey); font-size: 0.96rem; line-height: 1.75; margin-bottom: 14px; }
.sd-body ul { list-style: none; margin: 18px 0 4px; }
.sd-body ul li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 6px 0; font-size: 0.92rem; color: var(--navy);
}
.sd-body ul li i { color: var(--green); margin-top: 5px; font-size: 12px; }

/* Reviews page large grid */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.reviews-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 60px;
}
.review-stat {
  background: white; border-radius: var(--radius);
  padding: 30px 24px; text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(1,37,94,0.04);
}
.review-stat .num { font-size: 2.2rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.review-stat .lbl { font-size: 0.85rem; color: var(--grey); font-weight: 500; }

/* Contact form on contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-card-list { display: grid; gap: 16px; }
.contact-card {
  background: var(--light); border-radius: var(--radius);
  padding: 24px 26px; display: flex; gap: 18px; align-items: flex-start;
  transition: all 0.3s ease;
}
.contact-card:hover { background: white; box-shadow: var(--shadow-sm); }
.contact-card .ci {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--gradient-warm); color: white;
  display: grid; place-items: center; font-size: 19px; flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(247,127,0,0.3);
}
.contact-card:nth-child(2) .ci { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.contact-card:nth-child(3) .ci { background: var(--gradient-cool); box-shadow: 0 8px 20px rgba(0,119,182,0.3); }
.contact-card:nth-child(4) .ci { background: linear-gradient(135deg, #01255E, #0077B6); box-shadow: 0 8px 20px rgba(1,37,94,0.3); }
.contact-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.contact-card p, .contact-card a { font-size: 0.92rem; color: var(--grey); }
.contact-card a { color: var(--navy); font-weight: 500; }
.contact-card a:hover { color: var(--orange); }

.contact-form-box {
  background: white; border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(1,37,94,0.04);
}
.contact-form-box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; color: var(--navy); letter-spacing: -0.4px; }
.contact-form-box > p { color: var(--grey); margin-bottom: 24px; font-size: 0.95rem; }

/* ===================== MOBILE FLOATING ACTION BUTTONS ===================== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 95;
  flex-direction: column; gap: 12px;
}
.floating-cta a {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white; font-size: 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.floating-cta a::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid currentColor;
  opacity: 0.25; animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.85); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}
.floating-cta a:hover, .floating-cta a:active { transform: scale(1.08); }
.floating-call { background: linear-gradient(135deg, #F77F00, #E63946); }
.floating-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .quote-form-wrap { max-width: 560px; margin: 0 auto; }
  .about-grid, .why-grid, .content-grid-2 { grid-template-columns: 1fr; gap: 60px; }
  .content-image { max-width: 480px; margin: 0 auto; }
  .areas-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonial-card { width: 340px; }
  .reviews-stats { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .sd-image { order: 0; }
  .sd-image { min-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-actions .call-btn,
  .header-actions .quote-btn { display: none; }
  .menu-toggle { display: grid; place-items: center; }

  .logo img { height: 58px; }

  /* Full-screen minimal mobile menu */
  .nav-mobile-open {
    display: flex !important;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 100px 30px 100px;
    background: linear-gradient(135deg, rgba(1, 26, 68, 0.92), rgba(3, 47, 115, 0.9));
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    z-index: 99;
    animation: menuFade 0.3s ease;
    overflow-y: auto;
  }
  .nav-mobile-open a {
    color: rgba(255,255,255,0.88) !important;
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    padding: 12px 18px !important;
    text-align: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: color 0.25s ease, opacity 0.25s ease;
    letter-spacing: 0.2px;
  }
  .nav-mobile-open a:hover, .nav-mobile-open a.active {
    color: var(--yellow) !important;
    background: transparent !important;
  }
  /* hide CTA group inside mobile menu — floating buttons cover this */
  .nav-mobile-open .mobile-cta-group { display: none; }
  @keyframes menuFade {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Show floating action buttons on mobile only */
  .floating-cta { display: flex; }

  section { padding: 80px 0; }
  .hero { padding: 120px 0 70px; text-align: center; }
  .hero-inner > .reveal:first-child { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { font-size: 2rem; line-height: 1.12; }
  .hero p.subhead { font-size: 0.97rem; opacity: 0.72; margin-left: auto; margin-right: auto; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; text-align: center; }
  .hero-stats .stat:nth-child(3) { grid-column: span 2; }
  .stat .num { font-size: 1.5rem; }
  .stat .label { font-size: 12px; opacity: 0.85; }
  .page-hero { padding: 130px 0 70px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 0.97rem; opacity: 0.85; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .why-features { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-card { width: 300px; padding: 30px 24px; }
  .testimonial-card p.review { min-height: auto; }
  .reviews-stats { grid-template-columns: 1fr 1fr; }
  .about-images { max-width: 380px; }
  .about-badge-yrs { width: 120px; height: 120px; bottom: -20px; right: -10px; }
  .about-badge-yrs .yr-num { font-size: 1.9rem; }
  .sd-body { padding: 32px 26px; }
  .contact-form-box { padding: 32px 26px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .logo img { height: 52px; }
  .quote-form-wrap { padding: 30px 22px; }
  .reviews-stats { grid-template-columns: 1fr; }
}
