
/* ===================================================================
   SHARED STYLESHEET: Office Dismantling Services
   Handles Layout Structural Rules, Typography, Components & Responsive Fixes
==================================================================== */

:root {
  --blue: #0b57a4; 
  --blue-dark: #083f76; 
  --blue-light: #e8f1fb;
  --accent: #f39c12; 
  --ink: #1a2530; 
  --muted: #5a6b7b; 
  --line: #e3e9ef;
  --bg: #ffffff; 
  --bg-soft: #f5f8fb; 
  --white: #fff; 
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11,87,164,.08); 
  --shadow-lg: 0 20px 50px rgba(8,63,118,.14);
  --max: 1180px;
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden; 
}

body { 
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif; 
  color: var(--ink); 
  line-height: 1.65; 
  background: var(--bg); 
  -webkit-font-smoothing: antialiased; 
  overflow-x: hidden; 
}

a { 
  color: inherit; 
  text-decoration: none; 
}

img { 
  max-width: 100%; 
  height: auto; 
  display: block; 
}

.wrap { 
  max-width: var(--max); 
  margin: 0 auto; 
  padding: 0 22px; 
  width: 100%; 
}

section { 
  padding: 76px 0; 
  overflow: hidden; 
}

h1, h2, h3 { 
  line-height: 1.2; 
  font-weight: 700; 
  letter-spacing: -.01em; 
}

h2 { 
  font-size: clamp(1.6rem, 3.4vw, 2.4rem); 
  color: var(--ink); 
}

.eyebrow { 
  color: var(--blue); 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: .12em; 
  font-size: .8rem; 
  margin-bottom: 10px; 
}

.lead { 
  color: var(--muted); 
  font-size: 1.06rem; 
  max-width: 720px; 
}

.center { 
  text-align: center; 
  margin: 0 auto; 
}

/* UI Action Buttons */
.btn { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  font-weight: 600; 
  padding: 13px 26px; 
  border-radius: 50px; 
  transition: .2s; 
  cursor: pointer; 
  border: 2px solid transparent; 
  font-size: .98rem; 
  text-wrap: nowrap; 
}

.btn-primary { 
  background: var(--accent); 
  color: #fff; 
  box-shadow: 0 8px 22px rgba(243,156,18,.35); 
}

.btn-primary:hover { 
  background: #e08e0b; 
  transform: translateY(-2px); 
}

.btn-outline { 
  border-color: #fff; 
  color: #fff; 
}

.btn-outline:hover { 
  background: #fff; 
  color: var(--blue); 
}

.btn-ghost { 
  border-color: var(--blue); 
  color: var(--blue); 
}

.btn-ghost:hover { 
  background: var(--blue); 
  color: #fff; 
}

.btn-wa { 
  background: #25d366; 
  color: #fff; 
}

.btn-wa:hover { 
  background: #1da851; 
  transform: translateY(-2px); 
}

.btn-white { 
  background: #fff; 
  color: #c96b0a; 
}

.btn-white:hover { 
  transform: translateY(-2px); 
}

/* Shared Header Elements */
.topbar { 
  background: var(--blue-dark); 
  color: #dbe7f5; 
  font-size: .85rem; 
}

.topbar .wrap { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 8px 22px; 
  flex-wrap: wrap; 
  gap: 6px; 
}

.topbar a { 
  color: #fff; 
  font-weight: 600; 
}

.topbar .social a { 
  margin-left: 12px; 
}

header { 
  position: sticky; 
  top: 0; 
  z-index: 50; 
  background: rgba(255, 255, 255, .96); 
  backdrop-filter: blur(8px); 
  border-bottom: 1px solid var(--line); 
}

.nav { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 14px 22px; 
  max-width: var(--max); 
  margin: 0 auto; 
  gap: 15px; 
}

.logo { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-weight: 800; 
  font-size: 1.1rem; 
  color: var(--ink); 
  line-height: 1.2; 
  text-align: left; 
}

.logo img { 
  width: 44px; 
  height: 44px; 
  min-width: 44px; 
  border-radius: 8px; 
  object-fit: contain; 
  background: #fff; 
}

.logo span { 
  display: flex; 
  flex-direction: column; 
}

.logo small { 
  display: block; 
  font-size: .7rem; 
  font-weight: 600; 
  color: var(--muted); 
  letter-spacing: .02em; 
  margin-top: 1px; 
}

nav ul { 
  display: flex; 
  gap: 22px; 
  list-style: none; 
  align-items: center; 
}

nav a { 
  font-weight: 600; 
  font-size: .95rem; 
  color: var(--ink); 
  transition: .2s; 
}

nav a:hover { 
  color: var(--blue); 
}

.nav-cta { 
  display: flex; 
  gap: 10px; 
  align-items: center; 
}

.menu-btn { 
  display: none; 
  background: none; 
  border: none; 
  font-size: 1.6rem; 
  cursor: pointer; 
  color: var(--blue); 
  padding: 4px; 
}

/* Home Hero Section */
.hero { 
  position: relative; 
  background: linear-gradient(120deg, #083f76 0%, #0b57a4 55%, #1573c9 100%); 
  color: #fff; 
  overflow: hidden; 
}

.hero::after { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-opacity='.05' stroke-width='1'/%3E%3C/svg%3E"); 
  opacity: .7; 
}

.hero .wrap { 
  position: relative; 
  z-index: 2; 
  display: grid; 
  grid-template-columns: 1.15fr .85fr; 
  gap: 40px; 
  align-items: center; 
  padding-top: 60px; 
  padding-bottom: 60px; 
}

.hero h1 { 
  font-size: clamp(1.8rem, 4.4vw, 3.1rem); 
  margin-bottom: 14px; 
}

.hero .tag { 
  display: inline-block; 
  background: rgba(255, 255, 255, .14); 
  border: 1px solid rgba(255, 255, 255, .25); 
  padding: 6px 16px; 
  border-radius: 50px; 
  font-size: .82rem; 
  font-weight: 600; 
  margin-bottom: 18px; 
}

.hero p.sub { 
  font-size: 1.12rem; 
  color: #e6effa; 
  margin-bottom: 12px; 
  font-weight: 600; 
}

.hero p.desc { 
  color: #cfe0f2; 
  margin-bottom: 22px; 
  max-width: 560px; 
}

.hero-media { 
  margin: 18px 0 6px; 
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: var(--shadow-lg); 
}

.hero-media img { 
  width: 100%; 
  height: auto; 
  aspect-ratio: 16/10; 
  object-fit: cover; 
}

.hero-cta { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
}

.hero-stats { 
  display: flex; 
  gap: 28px; 
  margin-top: 28px; 
  flex-wrap: wrap; 
}

.hero-stats div span { 
  display: block; 
  font-size: 1.9rem; 
  font-weight: 800; 
}

.hero-stats div small { 
  color: #bcd3ec; 
  font-size: .85rem; 
}

/* Service Inner Page Hero Section */
.phero { 
  background: linear-gradient(120deg, #083f76, #0b57a4 60%, #1573c9); 
  color: #fff; 
  text-align: center; 
  position: relative; 
  overflow: hidden; 
}

.phero::after { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-opacity='.05' stroke-width='1'/%3E%3C/svg%3E"); 
}

.phero .wrap { 
  position: relative; 
  z-index: 2; 
  padding: 60px 22px; 
}

.crumbs { 
  font-size: .85rem; 
  color: #bcd3ec; 
  margin-bottom: 16px; 
}

.crumbs a { 
  color: #fff; 
}

.phero h1 { 
  font-size: clamp(1.8rem, 4.4vw, 2.9rem); 
  margin-bottom: 14px; 
}

.phero p { 
  color: #cfe0f2; 
  max-width: 760px; 
  margin: 0 auto 22px; 
  font-size: 1.08rem; 
}

.phero-media { 
  max-width: 760px; 
  margin: 0 auto 24px; 
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: var(--shadow-lg); 
}

.phero-media img { 
  width: 100%; 
  height: auto; 
  aspect-ratio: 16/8; 
  object-fit: cover; 
}

.phero .hero-cta { 
  display: flex; 
  gap: 12px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

/* Quote Card Component */
.quote-card { 
  background: #fff; 
  color: var(--ink); 
  border-radius: 18px; 
  padding: 28px; 
  box-shadow: var(--shadow-lg); 
}

.quote-card h3 { 
  font-size: 1.25rem; 
  margin-bottom: 4px; 
}

.quote-card p { 
  color: var(--muted); 
  font-size: .9rem; 
  margin-bottom: 18px; 
}

.quote-card .field { 
  margin-bottom: 12px; 
}

.quote-card label { 
  font-size: .8rem; 
  font-weight: 600; 
  color: var(--muted); 
  display: block; 
  margin-bottom: 4px; 
}

.quote-card input, .quote-card select { 
  width: 100%; 
  padding: 11px 13px; 
  border: 1px solid var(--line); 
  border-radius: 9px; 
  font-size: .92rem; 
  font-family: inherit; 
  background: var(--bg-soft); 
}

.quote-card input:focus, .quote-card select:focus { 
  outline: none; 
  border-color: var(--blue); 
  background: #fff; 
}

.quote-card .btn { 
  width: 100%; 
  justify-content: center; 
  margin-top: 4px; 
}

/* Trust Banner Strips */
.trust { 
  background: var(--bg-soft); 
  border-bottom: 1px solid var(--line); 
}

.trust .wrap { 
  display: flex; 
  justify-content: space-around; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 18px; 
  padding: 26px 22px; 
}

.trust div { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-weight: 600; 
  color: var(--ink); 
  font-size: .95rem; 
  text-wrap: nowrap; 
}

.trust .ic { 
  color: var(--blue); 
  font-size: 1.3rem; 
}

/* Multi-Column Layout Grid Block Systems */
.grid { 
  display: grid; 
  gap: 22px; 
}

.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

/* Card Structural Variants */
.card { 
  background: #fff; 
  border: 1px solid var(--line); 
  border-radius: var(--radius); 
  padding: 26px; 
  transition: .25s; 
}

.card:hover { 
  transform: translateY(-5px); 
  box-shadow: var(--shadow); 
  border-color: #cfe0f2; 
}

.card .ic { 
  width: 52px; 
  height: 52px; 
  border-radius: 12px; 
  background: var(--blue-light); 
  color: var(--blue); 
  display: grid; 
  place-items: center; 
  font-size: 1.5rem; 
  margin-bottom: 16px; 
}

.card h3 { 
  font-size: 1.12rem; 
  margin-bottom: 8px; 
}

.card p { 
  color: var(--muted); 
  font-size: .94rem; 
}

.svc { 
  background: #fff; 
  border: 1px solid var(--line); 
  border-radius: var(--radius); 
  padding: 24px; 
  transition: .25s; 
}

.svc:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow); 
  border-color: #cfe0f2; 
}

.svc .ic { 
  width: 48px; 
  height: 48px; 
  border-radius: 11px; 
  background: var(--blue-light); 
  color: var(--blue); 
  display: grid; 
  place-items: center; 
  font-size: 1.35rem; 
  margin-bottom: 14px; 
}

.svc h3 { 
  font-size: 1.06rem; 
  margin-bottom: 7px; 
}

.svc p { 
  color: var(--muted); 
  font-size: .92rem; 
}

/* Service Page Split Component Row Layout */
.intro-grid { 
  display: grid; 
  grid-template-columns: 1.3fr .7fr; 
  gap: 44px; 
  align-items: start; 
}

.side-card { 
  background: var(--blue-light); 
  border: 1px solid #cfe0f2; 
  border-radius: 16px; 
  padding: 28px; 
  position: sticky; 
  top: 90px; 
}

.side-card h3 { 
  font-size: 1.15rem; 
  margin-bottom: 6px; 
}

.side-card p { 
  color: var(--muted); 
  font-size: .92rem; 
  margin-bottom: 16px; 
}

.side-card .btn { 
  width: 100%; 
  justify-content: center; 
  margin-bottom: 10px; 
}

.side-card ul { 
  list-style: none; 
  margin-top: 14px; 
}

.side-card li { 
  display: flex; 
  gap: 8px; 
  font-size: .9rem; 
  margin-bottom: 8px; 
}

.side-card .tick { 
  color: #1f9d55; 
  font-weight: 800; 
}

/* About Layout */
.about-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 48px; 
  align-items: center; 
}

.about-media { 
  border-radius: 18px; 
  overflow: hidden; 
  box-shadow: var(--shadow); 
}

.about-media img { 
  width: 100%; 
  height: auto; 
  aspect-ratio: 4/3; 
  object-fit: cover; 
}

.about-list { 
  list-style: none; 
  margin-top: 18px; 
  display: grid; 
  gap: 12px; 
}

.about-list li { 
  display: flex; 
  gap: 12px; 
  align-items: flex-start; 
  color: var(--ink); 
}

.about-list .tick { 
  color: #1f9d55; 
  font-weight: 800; 
  flex-shrink: 0; 
}

/* Chips Text Lists */
.chips { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 12px; 
  justify-content: center; 
  margin-top: 34px; 
}

.chip { 
  background: #fff; 
  border: 1px solid var(--line); 
  border-radius: 50px; 
  padding: 11px 22px; 
  font-weight: 600; 
  font-size: .95rem; 
  transition: .2s; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  text-wrap: nowrap; 
}

.chip:hover { 
  background: var(--blue); 
  color: #fff; 
  border-color: var(--blue); 
}

.chip .ic { 
  color: var(--accent); 
}

.chip:hover .ic { 
  color: #fff; 
}

/* Why Choose Section (Dark Mode Design Variant) */
.dark { 
  background: linear-gradient(135deg, #0d1b2a, #12304f); 
  color: #fff; 
}

.dark h2 { 
  color: #fff; 
}

.dark .lead { 
  color: #b8c9db; 
}

.why-card { 
  background: rgba(255, 255, 255, .05); 
  border: 1px solid rgba(255, 255, 255, .1); 
  border-radius: var(--radius); 
  padding: 24px; 
}

.why-card:hover { 
  background: rgba(255, 255, 255, .09); 
}

.why-card .ic { 
  color: var(--accent); 
  font-size: 1.6rem; 
  margin-bottom: 12px; 
}

.why-card h3 { 
  font-size: 1.06rem; 
  margin-bottom: 6px; 
}

.why-card p { 
  color: #b8c9db; 
  font-size: .9rem; 
}

/* Sequential Execution Timelines */
.steps { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 22px; 
  counter-reset: step; 
}

.step { 
  position: relative; 
  background: #fff; 
  border: 1px solid var(--line); 
  border-radius: var(--radius); 
  padding: 26px 22px; 
  transition: .2s; 
  text-align: center;
}

.step:hover { 
  box-shadow: var(--shadow); 
}

.step .num { 
  counter-increment: step; 
  width: 42px; 
  height: 42px; 
  border-radius: 50%; 
  background: var(--blue); 
  color: #fff; 
  font-weight: 800; 
  display: grid; 
  place-items: center; 
  margin: 0 auto 14px; 
}

.step .num::before { 
  content: counter(step, decimal-leading-zero); 
}

.step h3 { 
  font-size: 1.05rem; 
  margin-bottom: 6px; 
}

.step p { 
  color: var(--muted); 
  font-size: .9rem; 
}

/* Embedded Media Containers */
.video-wrap { 
  max-width: 900px; 
  margin: 34px auto 0; 
  border-radius: 18px; 
  overflow: hidden; 
  box-shadow: var(--shadow-lg); 
  position: relative; 
  aspect-ratio: 16/9; 
  background: #000; 
}

.video-wrap video, .video-wrap iframe { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  border: 0; 
  object-fit: cover; 
}

/* Long-Form Text Blocks */
.seo-copy { 
  max-width: 960px; 
  margin: 0 auto; 
}

.seo-copy p { 
  color: var(--muted); 
  margin-bottom: 16px; 
}

.seo-copy h3 { 
  margin: 26px 0 8px; 
  font-size: 1.25rem; 
  color: var(--ink); 
}

.seo-copy a { 
  color: var(--blue); 
  font-weight: 600; 
}

.seo-copy a:hover { 
  text-decoration: underline; 
}

/* Location Selector Grid */
.loc-grid { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 16px; 
}

.loc { 
  background: #fff; 
  border: 1px solid var(--line); 
  border-radius: 12px; 
  padding: 20px 16px; 
  text-align: center; 
  font-weight: 700; 
  transition: .2s; 
  color: var(--ink); 
}

.loc:hover { 
  background: var(--blue); 
  color: #fff; 
  border-color: var(--blue); 
  transform: translateY(-4px); 
}

.loc small { 
  display: block; 
  font-weight: 500; 
  font-size: .78rem; 
  color: var(--muted); 
  margin-top: 4px; 
}

.loc:hover small { 
  color: #dbe7f5; 
}

.loc.soon { 
  opacity: .75; 
  border-style: dashed; 
}

/* Google Map Container */
.map-wrap { 
  margin-top: 34px; 
  border-radius: 14px; 
  overflow: hidden; 
  border: 1px solid var(--line); 
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.map-wrap iframe { 
  width: 100%; 
  height: 320px; 
  border: 0; 
  display: block; 
}

/* FAQ Element Accordions */
.faq { 
  max-width: 820px; 
  margin: 0 auto; 
}

.faq details { 
  background: #fff; 
  border: 1px solid var(--line); 
  border-radius: 12px; 
  margin-bottom: 14px; 
  overflow: hidden; 
}

.faq summary { 
  padding: 18px 22px; 
  font-weight: 700; 
  cursor: pointer; 
  list-style: none; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 14px; 
}

.faq summary::-webkit-details-marker { 
  display: none; 
}

.faq summary::after { 
  content: "+"; 
  font-size: 1.5rem; 
  color: var(--blue); 
  font-weight: 400; 
  transition: .2s; 
}

.faq details[open] summary::after { 
  transform: rotate(45deg); 
}

.faq details[open] summary { 
  color: var(--blue); 
}

.faq .ans { 
  padding: 0 22px 20px; 
  color: var(--muted); 
  font-size: .96rem; 
}

/* CTA Color Bands */
.cta-band { 
  background: linear-gradient(120deg, var(--accent), #e67e22); 
  color: #fff; 
  text-align: center; 
}

.cta-band h2 { 
  color: #fff; 
}

.cta-band p { 
  color: #fff5e6; 
  max-width: 640px; 
  margin: 12px auto 26px; 
}

.cta-band .hero-cta { 
  justify-content: center; 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
}

/* Form Layout Blocks */
.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 40px; 
}

.contact-info li { 
  list-style: none; 
  display: flex; 
  gap: 14px; 
  margin-bottom: 20px; 
  align-items: flex-start; 
}

.contact-info .ic { 
  width: 46px; 
  height: 46px; 
  flex-shrink: 0; 
  border-radius: 10px; 
  background: var(--blue-light); 
  color: var(--blue); 
  display: grid; 
  place-items: center; 
  font-size: 1.2rem; 
}

.contact-info h4 { 
  font-size: 1rem; 
  margin-bottom: 2px; 
}

.contact-info p, .contact-info a { 
  color: var(--muted); 
  font-size: .94rem; 
}

.contact-info a:hover { 
  color: var(--blue); 
}

.form-box { 
  background: #fff; 
  border: 1px solid var(--line); 
  border-radius: 16px; 
  padding: 30px; 
  box-shadow: var(--shadow); 
}

.form-box .field { 
  margin-bottom: 15px; 
}

.form-box label { 
  font-size: .85rem; 
  font-weight: 600; 
  display: block; 
  margin-bottom: 5px; 
}

.form-box input, .form-box select, .form-box textarea { 
  width: 100%; 
  padding: 12px 14px; 
  border: 1px solid var(--line); 
  border-radius: 10px; 
  font-family: inherit; 
  font-size: .95rem; 
  background: var(--bg-soft); 
}

.form-box input:focus, .form-box select:focus, .form-box textarea:focus { 
  outline: none; 
  border-color: var(--blue); 
  background: #fff; 
}

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 14px; 
}

.form-box .btn { 
  width: 100%; 
  justify-content: center; 
}

/* Footer Section */
footer { 
  background: #0d1b2a; 
  color: #b8c9db; 
  padding: 60px 0 26px; 
}

.foot-grid { 
  display: grid; 
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr; 
  gap: 34px; 
}

footer h4 { 
  color: #fff; 
  font-size: 1rem; 
  margin-bottom: 16px; 
}

footer ul { 
  list-style: none; 
}

footer li { 
  margin-bottom: 9px; 
}

footer a { 
  color: #b8c9db; 
  font-size: .92rem; 
  transition: .2s; 
}

footer a:hover { 
  color: var(--accent); 
}

footer .brand { 
  display: flex; 
  align-items: center; 
  gap: 11px; 
  font-weight: 800; 
  color: #fff; 
  font-size: 1.15rem; 
  margin-bottom: 14px; 
}

footer .brand img { 
  width: 40px; 
  height: 40px; 
  border-radius: 9px; 
  object-fit: contain; 
  background: #fff; 
  padding: 3px; 
}

footer p.desc { 
  font-size: .9rem; 
  line-height: 1.7; 
}

.foot-social { 
  display: flex; 
  gap: 10px; 
  margin-top: 16px; 
}

.foot-social a { 
  width: 38px; 
  height: 38px; 
  border-radius: 9px; 
  background: rgba(255, 255, 255, .08); 
  display: grid; 
  place-items: center; 
  font-size: 1rem; 
}

.foot-social a:hover { 
  background: var(--blue); 
  color: #fff; 
}

.foot-bottom { 
  border-top: 1px solid rgba(255, 255, 255, .1); 
  margin-top: 40px; 
  padding-top: 22px; 
  text-align: center; 
  font-size: .85rem; 
  color: #8ba0b5; 
}

/* Persistent Floating Actions Layout */
.float { 
  position: fixed; 
  right: 20px; 
  bottom: 20px; 
  z-index: 80; 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.float a { 
  width: 56px; 
  height: 56px; 
  border-radius: 50%; 
  display: grid; 
  place-items: center; 
  color: #fff; 
  font-size: 1.5rem; 
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25); 
  transition: .2s; 
}

.float a:hover { 
  transform: scale(1.08); 
}

.float .wa { 
  background: #25d366; 
}

.float .call { 
  background: var(--blue); 
}

/* ===================================================================
   RESPONSIVE LAYOUT BREAKPOINTS (Targeting Tablet/768px & Handset viewports)
==================================================================== */

@media (max-width: 960px) {
  .hero .wrap { 
    grid-template-columns: 1fr; 
    padding-top: 40px; 
    padding-bottom: 40px; 
  }
  .about-grid, .contact-grid, .intro-grid { 
    grid-template-columns: 1fr; 
    gap: 30px; 
  }
  .side-card { 
    position: static; 
    margin-top: 20px; 
  }
  .g-4, .steps { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .g-3, .svc { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .loc-grid { 
    grid-template-columns: repeat(3, 1fr); 
  }
  .foot-grid { 
    grid-template-columns: 1fr 1fr; 
  }
}

@media (max-width: 768px) {
  /* Fixes navigation spacing leaks and establishes proper header centering alignment */
  header .nav { 
    padding: 12px 16px; 
  }
  .logo { 
    font-size: 0.98rem; 
  }
  .logo img { 
    width: 38px; 
    height: 38px; 
    min-width: 38px; 
  }
  .logo small { 
    font-size: 0.65rem; 
  }
  nav ul { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: #fff; 
    flex-direction: column; 
    padding: 16px 22px; 
    border-bottom: 1px solid var(--line); 
    box-shadow: var(--shadow); 
    gap: 14px; 
    z-index: 99; 
  }
  nav ul.open { 
    display: flex; 
  }
  .nav-cta .btn-ghost { 
    display: none; 
  }
  .menu-btn { 
    display: block; 
  }
  .topbar .wrap { 
    justify-content: center; 
    text-align: center; 
    gap: 8px; 
  }
  .hero-stats { 
    gap: 16px; 
    justify-content: space-between; 
  }
  .hero-stats div { 
    flex: 1 1 40%; 
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  section { 
    padding: 52px 0; 
  }
  .g-2, .g-3, .g-4, .steps, .loc-grid, .foot-grid, .form-row, .svc { 
    grid-template-columns: 1fr; 
  }
  .hero-cta { 
    flex-direction: column; 
    width: 100%; 
  }
  .hero-cta .btn { 
    width: 100%; 
    justify-content: center; 
  }
}