/* ============================================
   TopClean99 v5 — Logo-matched identity
   Teal · Blue · Gold · White · Rounded
   ============================================ */

:root {
  --blue:         #1B78C8;
  --blue-dark:    #0D4F96;
  --blue-deep:    #083070;
  --blue-light:   #E8F3FC;
  --teal:         #00C4AD;
  --teal-dark:    #009E8A;
  --teal-light:   #E0FAF7;
  --gold:         #F0A020;
  --gold-dark:    #C97D0A;
  --gold-light:   #FEF3DC;
  --white:        #FFFFFF;
  --off-white:    #F7FBFF;
  --gray:         #5A6A82;
  --gray-light:   #E2EBF5;
  --ink:          #0B1F3A;

  --grad-main:    linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  --grad-hero:    linear-gradient(145deg, #083070 0%, #0D5FA8 45%, #0E9090 100%);
  --grad-gold:    linear-gradient(135deg, #F5B830 0%, #E07A10 100%);
  --grad-text:    linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%);

  --shadow-sm:    0 2px 8px rgba(11,31,58,.08);
  --shadow-md:    0 6px 24px rgba(11,31,58,.10);
  --shadow-lg:    0 16px 48px rgba(11,31,58,.14);
  --shadow-teal:  0 8px 24px rgba(0,196,173,.30);
  --shadow-gold:  0 8px 24px rgba(240,160,32,.35);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --transition:   .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- Gradient text ---------- */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.badge-teal { background: var(--teal-light); color: var(--teal-dark); }
.badge-gold { background: var(--gold-light); color: var(--gold-dark); }
.badge-white { background: rgba(255,255,255,.18); color: var(--white); border: 1px solid rgba(255,255,255,.3); }

.sparkle { display: inline-block; color: var(--teal); }
.sparkle-gold { display: inline-block; color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.9rem;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-gold {
  background: var(--grad-gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(240,160,32,.45); filter: brightness(1.05); }

.btn-teal {
  background: var(--grad-main);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,196,173,.4); filter: brightness(1.05); }

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
}
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

.btn-outline-teal {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--grad-main);
  padding: .5rem 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
.topbar-item a { color: var(--white); }
.topbar-item a:hover { text-decoration: underline; }
.topbar-sep { color: rgba(255,255,255,.3); }

/* ---------- Navbar ---------- */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(27,120,200,.12);
  border-bottom: 3px solid transparent;
  border-image: var(--grad-main) 1;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .75rem;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.nav-logo-text small {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  list-style: none;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray);
  padding: .5rem .95rem;
  border-radius: 50px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
.nav-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-phone-lbl {
  text-align: right;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1.2;
}
.nav-phone-num {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.01em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: var(--grad-hero);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* subtle dot-grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
/* glow blobs */
.hero-blob1 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,196,173,.25) 0%, transparent 70%);
  top: -100px; right: 10%;
  pointer-events: none;
}
.hero-blob2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,160,32,.15) 0%, transparent 70%);
  bottom: -80px; left: 5%;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 4rem;
}
.hero-text .badge { margin-bottom: 1.25rem; }
.hero-text h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero-text h1 .accent { color: var(--gold); }
.hero-text p {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat .num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat .num span { color: var(--gold); }
.hero-stat .lbl {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .2rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.12);
  animation: spin-slow 30s linear infinite;
}
.hero-logo-ring2 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(0,196,173,.2);
  animation: spin-slow 20s linear infinite reverse;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-logo-img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
  position: relative;
  z-index: 1;
}
/* floating sparkle dots */
.spark {
  position: absolute;
  color: var(--teal);
  font-size: 1.2rem;
  animation: float-spark 3s ease-in-out infinite;
  z-index: 2;
}
.spark:nth-child(2) { top: 10%; left: 8%;  animation-delay: 0s; }
.spark:nth-child(3) { top: 15%; right: 5%; animation-delay: .6s; color: var(--gold); }
.spark:nth-child(4) { bottom: 18%; left: 5%;  animation-delay: 1.2s; }
.spark:nth-child(5) { bottom: 12%; right: 8%; animation-delay: 1.8s; color: var(--gold); font-size: .9rem; }
@keyframes float-spark {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50%       { transform: translateY(-10px) scale(1.2); opacity: .7; }
}
.hero-cta-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  max-width: 320px;
}
.hcc-icon {
  width: 44px; height: 44px;
  background: var(--grad-gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hcc-label { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hcc-value { font-size: 1rem; font-weight: 800; color: var(--white); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--teal);
  overflow: hidden;
  padding: .85rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding-inline: 1.75rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.marquee-item .star { color: var(--white); font-size: .7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about {
  padding-block: 6.5rem;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.about-text p {
  color: var(--gray);
  font-size: .97rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.about-quote {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--blue-light) 100%);
  border-left: 4px solid var(--teal);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-block: 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.65;
}
.about-checks {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}
.about-checks li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}
/* ---------- About panel (no-photo branded visual) ---------- */
.about-panel {
  position: relative;
  background: var(--grad-hero);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 3rem 2rem;
  min-height: 480px;
}
/* dot-grid texture */
.about-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
/* glow blob */
.about-panel::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,196,173,.25) 0%, transparent 70%);
  top: -60px; right: -60px;
  pointer-events: none;
}

/* floating sparkles */
.ap-spark {
  position: absolute;
  font-size: 1.1rem;
  color: var(--teal);
  animation: float-spark 3s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
.ap-spark--1 { top: 12%;  left: 10%;  animation-delay: 0s;   color: var(--teal); }
.ap-spark--2 { top: 10%;  right: 12%; animation-delay: .7s;  color: var(--gold); font-size: 1.4rem; }
.ap-spark--3 { bottom: 16%; left: 8%;  animation-delay: 1.4s; color: var(--gold); font-size: .85rem; }
.ap-spark--4 { bottom: 14%; right: 9%; animation-delay: 2.1s; color: var(--teal); font-size: 1rem; }

/* centre logo */
.ap-logo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-logo-ring {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.18);
  animation: spin-slow 25s linear infinite;
}
.ap-logo-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.35));
  position: relative;
  z-index: 1;
}

/* stat cards row */
.ap-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
  width: 100%;
}
.ap-stat {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  text-align: center;
  transition: background var(--transition);
}
.ap-stat:hover { background: rgba(255,255,255,.18); }
.ap-stat-icon { font-size: 1.4rem; margin-bottom: .35rem; }
.ap-stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}
.ap-stat-lbl {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .2rem;
}

.check-dot {
  width: 22px; height: 22px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .65rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ---------- Services ---------- */
.services {
  padding-block: 6.5rem;
  background: var(--white);
}
.section-head {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.section-head p {
  color: var(--gray);
  font-size: .97rem;
  line-height: 1.8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1.5px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-main);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--blue-light) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ---------- How it works ---------- */
.how {
  padding-block: 6.5rem;
  background: var(--off-white);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(16.66% + 2rem);
  right: calc(16.66% + 2rem);
  height: 2px;
  background: var(--grad-main);
  opacity: .3;
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  border: 1.5px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px; height: 56px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-inline: auto;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-teal);
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .5rem;
}
.step-card p {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ---------- Why us ---------- */
.why {
  padding-block: 6.5rem;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.why .container { position: relative; z-index: 1; }
.why .section-head h2 { color: var(--white); }
.why .section-head p   { color: rgba(255,255,255,.65); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: .97rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .45rem;
}
.why-card p {
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* ---------- CTA ---------- */
.cta-section {
  padding-block: 6rem;
  background: var(--white);
}
.cta-box {
  background: linear-gradient(135deg, var(--gold-light) 0%, #FFF8E8 100%);
  border-radius: 28px;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  border: 2px solid rgba(240,160,32,.25);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '✦';
  position: absolute;
  right: 3rem; top: 1.5rem;
  font-size: 5rem;
  color: rgba(240,160,32,.12);
  pointer-events: none;
}
.cta-box::after {
  content: '✦';
  position: absolute;
  left: 40%; bottom: 0rem;
  font-size: 8rem;
  color: rgba(240,160,32,.07);
  pointer-events: none;
}
.cta-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.cta-content { flex: 1; }
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--ink);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.cta-content p {
  color: var(--gray);
  font-size: 1rem;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.cta-phone-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.01em;
  transition: color var(--transition);
}
.cta-phone-link:hover { color: var(--blue); }

/* ---------- Contact ---------- */
.contact {
  padding-block: 6.5rem;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.contact-left p {
  color: var(--gray);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-tiles { display: flex; flex-direction: column; gap: .85rem; }
.contact-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  border: 1.5px solid var(--gray-light);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-tile:hover { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-light); }
.ct-icon {
  width: 44px; height: 44px;
  background: var(--grad-main);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--white);
}
.ct-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); }
.ct-value { font-size: .95rem; font-weight: 800; color: var(--ink); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-light);
}
.contact-form h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.75rem;
  letter-spacing: -.01em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.15rem; }
.fg label {
  display: block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .4rem;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: .82rem 1.1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--off-white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-light);
  background: var(--white);
}
.fg textarea { resize: vertical; min-height: 100px; }

/* ---------- Gallery ---------- */
.gallery {
  padding-block: 6.5rem;
  background: var(--white);
}

/* Grid — CSS masonry-style via auto rows */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  /* hide animation when filtered out */
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item.gi--large {
  grid-row: span 2; /* tall card */
}

/* The image / placeholder fill */
.gi-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--gi-color1, #00C4AD), var(--gi-color2, #1B78C8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: transform .4s ease;
}
/* When a real photo is added, set background-image on .gi-img directly */
.gi-img[style*="url"] { background-size: cover; background-position: center; }
.gi-img[style*="url"] .gi-bg-icon,
.gi-img[style*="url"] .gi-placeholder-text { display: none; }

/* dot-grid texture overlay */
.gi-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 22px 22px;
}
.gi-bg-icon {
  font-size: 3rem;
  opacity: .35;
  position: relative;
  z-index: 1;
}
.gi-placeholder-text {
  font-family: 'Nunito', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  position: relative;
  z-index: 1;
}

/* Hover overlay */
.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,48,112,.88) 0%, rgba(8,48,112,.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gallery-item:hover .gi-img     { transform: scale(1.05); }

.gi-label { display: flex; flex-direction: column; gap: .2rem; }
.gi-title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
}
.gi-zoom {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.gallery-item:hover .gi-zoom { background: var(--teal); }

/* bottom CTA */
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.gallery-cta p { color: var(--gray); font-size: .97rem; font-weight: 600; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,30,74,.96);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lb-content {
  max-width: 900px;
  max-height: 80vh;
  width: 90%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
/* placeholder card inside lightbox */
.lb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.lb-placeholder .lb-icon { font-size: 4rem; opacity: .5; }
.lb-placeholder .lb-info { text-align: center; }
.lb-placeholder .lb-cat {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .3rem;
}
.lb-placeholder .lb-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
}
.lb-placeholder .lb-note {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-top: .5rem;
}
/* real image inside lightbox */
.lb-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
  line-height: 1;
}
.lb-close,
.lb-prev,
.lb-next { border-radius: 50%; }
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover { background: var(--teal); border-color: var(--teal); }

.lb-close {
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.lb-prev,
.lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

.lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
}

/* Gallery responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.gi--large { grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
}

/* ---------- Prices page ---------- */
.page-hero {
  background: var(--grad-hero);
  padding-block: 7rem 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-logo { width: 90px; height: 90px; object-fit: contain; margin-inline: auto; margin-bottom: 1.5rem; filter: drop-shadow(0 8px 20px rgba(0,0,0,.3)); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--white); margin-bottom: .75rem; letter-spacing: -.02em; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 460px; margin-inline: auto; line-height: 1.8; }

.prices {
  padding-block: 5.5rem;
  background: var(--off-white);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-light), var(--shadow-md);
}
.price-popular {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--grad-gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .8rem;
  border-radius: 50px;
}
.price-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.price-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: .4rem; }
.price-card .price-desc { font-size: .875rem; color: var(--gray); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1.5px solid var(--gray-light); line-height: 1.6; }
.price-card ul { list-style: none; margin-bottom: 2rem; }
.price-card ul li { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; color: var(--gray); padding: .45rem 0; border-bottom: 1px solid var(--gray-light); }
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before { content: '✓'; width: 18px; height: 18px; background: var(--grad-main); color: var(--white); border-radius: 50%; font-size: .6rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .1rem; }
.price-note { margin-top: 3rem; padding: 1.75rem; background: linear-gradient(135deg, var(--teal-light), var(--blue-light)); border-radius: var(--radius); border-left: 4px solid var(--teal); font-size: .92rem; color: var(--blue-dark); line-height: 1.8; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  padding-block: 3.5rem 2rem;
}
.footer-top-bar {
  height: 4px;
  background: var(--grad-main);
  margin-bottom: 3.5rem;
  border-radius: 2px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.footer-brand .fl-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
}
.footer-brand .fl-logo img { height: 48px; width: auto; }
.footer-brand .fl-logo span { font-size: 1.3rem; font-weight: 900; color: var(--white); letter-spacing: -.02em; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a, .footer-col li { font-size: .87rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.3); }

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .hero-text h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1rem; }
  .about-panel { padding: 2rem 1.25rem; min-height: auto; }
  .ap-logo-img { width: 110px; height: 110px; }
  .ap-stats { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .ap-stat-num { font-size: 1.25rem; }
  .cta-phone-link { font-size: 1.15rem; }
}

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-text p, .hero-actions { margin-inline: auto; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--ink);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 998;
  }
  .nav-links.open a { font-size: 1.4rem; color: var(--white); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; }
  .topbar-sep { display: none; }
  /* on mobile only show the phone number in the topbar */
  .topbar-item:not(:nth-child(3)) { display: none; }
  .topbar-item:nth-child(3) { font-size: .88rem; }
  .contact-form { padding: 2rem 1.25rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
}
