/* ============================================================
   ROOFING & MASONRY PROS — GLOBAL DESIGN SYSTEM
   Premium Dark + White + Red Theme
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap");

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --bg-darkest: #080808;
  --bg-dark: #0f0f0f;
  --bg-card: #161616;
  --bg-card2: #1c1c1c;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;

  --red: #d42b2b;
  --red-dark: #aa1f1f;
  --red-light: #e83838;
  --red-glow: rgba(212, 43, 43, 0.25);

  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #999999;
  --text-dark: #111111;
  --text-gray: #666666;

  --border: #222222;
  --border-light: #dddddd;

  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-red: 0 8px 32px rgba(212, 43, 43, 0.35);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  --max-w: 1280px;
  --header-h: 80px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
}
html {
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--bg-darkest);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
section, div, img {
  max-width: 100%;
}
img {
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

/* ── UTILITY CLASSES ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.section-pad {
  padding: 100px 0;
}
.section-pad-sm {
  padding: 70px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}
.section-label::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 20px;
}
.section-title span {
  color: var(--red);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

.text-center {
  text-align: center;
}
.text-center .section-subtitle {
  margin: 0 auto;
}
.text-center .section-label {
  justify-content: center;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 43, 43, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--bg-card2);
  color: var(--text-white);
  border: 1px solid var(--border);
}
.btn-dark:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* ── HEADER / NAV ───────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--header-h);
  transition: var(--transition);
  align-content: center;
}
#site-header.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  height: 85px;
  align-content: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.logo-icon:hover {
  background: var(--red-dark);
  transform: rotate(-5deg);
}
.logo-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--red);
  background: rgba(212, 43, 43, 0.08);
}
.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}
.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.dropdown a:hover {
  background: rgba(212, 43, 43, 0.1);
  color: var(--red);
}
.dropdown a svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  opacity: 0.7;
}
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
}
.header-phone svg {
  color: var(--red);
  width: 18px;
  height: 18px;
}
.header-phone span {
  color: var(--red);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 10001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-darkest);
  z-index: 9998;
  padding-top: 90px;
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  display: block;
  padding: 16px 28px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-fast);
}
.mobile-nav a:hover {
  color: var(--red);
  background: rgba(212, 43, 43, 0.05);
}
.mobile-nav .mobile-submenu-title {
  padding: 16px 28px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav .mobile-submenu-title::after {
  content: "▼";
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.mobile-nav .mobile-submenu-title.open::after {
  transform: rotate(180deg);
}
.mobile-nav .mobile-sub {
  display: none;
  background: rgba(0, 0, 0, 0.2);
}
.mobile-nav .mobile-sub.open {
  display: block;
}
.mobile-nav .mobile-sub a {
  padding-left: 44px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ── HERO SECTION ───────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-darkest);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 8, 0.92) 0%,
    rgba(8, 8, 8, 0.75) 50%,
    rgba(8, 8, 8, 0.4) 100%
  );
}
.hero-overlay-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-darkest), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 40px) 0 140px;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 43, 43, 0.15);
  border: 1px solid rgba(212, 43, 43, 0.4);
  color: var(--red-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 43, 43, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(212, 43, 43, 0);
  }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title span {
  color: var(--red);
  position: relative;
}
.hero-title span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  opacity: 0.5;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}
.trust-item svg {
  color: var(--red);
  width: 20px;
  height: 20px;
}
.hero-stat-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(212, 43, 43, 0.92);
  backdrop-filter: blur(10px);
  /* border-radius: var(--radius-lg) 0 0 0; */
}
.stat-item {
  padding: 24px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-top: 4px;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
#trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  divide-x: 1px solid var(--border);
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.trust-badge:last-child {
  border-right: none;
}
.trust-badge::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--red);
  transition: var(--transition);
}
.trust-badge:hover::after {
  width: 60%;
}
.trust-badge:hover {
  background: rgba(212, 43, 43, 0.04);
}
.trust-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(212, 43, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.trust-badge:hover .trust-badge-icon {
  background: var(--red);
  transform: scale(1.1);
}
.trust-badge-icon svg {
  width: 26px;
  height: 26px;
  color: var(--red);
}
.trust-badge:hover .trust-badge-icon svg {
  color: #fff;
}
.trust-badge strong {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  display: block;
}
.trust-badge span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── ABOUT SECTION ──────────────────────────────────────────── */
#about {
  background: var(--bg-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.4;
}
.about-img-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 1;
}
.about-img-inner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-badge-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--red);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
  z-index: 2;
  text-align: center;
}
.about-badge-box .num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.about-badge-box p {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}
.about-content {
  padding-left: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
}
.about-feat:hover {
  border-color: var(--red);
  background: rgba(212, 43, 43, 0.04);
}
.about-feat svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
}
.about-feat span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.about-certs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.cert-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.cert-badge:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ── SERVICES SECTION ───────────────────────────────────────── */
#services {
  background: var(--bg-darkest);
}
.services-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  background: var(--bg-card);
  padding: 6px;
  border-radius: var(--radius-full);
  width: fit-content;
}
.tab-btn {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  border: none;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.tab-btn:hover:not(.active) {
  color: var(--text-white);
  background: var(--bg-card2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  border-color: rgba(212, 43, 43, 0.4);
  background: var(--bg-card2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 43, 43, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--red);
}
.service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}
.service-card:hover .service-icon svg {
  color: #fff;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  transition: var(--transition-fast);
}
.service-link:hover {
  gap: 10px;
}
.service-link svg {
  width: 16px;
  height: 16px;
}

/* Service panels */
.services-panel {
  display: none;
}
.services-panel.active {
  display: block;
}

/* ── PROJECTS SECTION ───────────────────────────────────────── */
#projects {
  background: var(--bg-dark);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover img {
  transform: scale(1.08);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.project-card:hover .project-overlay {
  opacity: 1;
}
.project-info h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.project-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}
.project-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.project-card.large {
  grid-column: span 2;
}

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
#why-us {
  background: var(--bg-darkest);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 8, 8, 0.3), transparent);
}
.why-content {
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: top;
}
.why-item:hover::after {
  transform: scaleY(1);
}
.why-item:hover {
  border-color: rgba(212, 43, 43, 0.3);
  padding-left: 30px;
}
.why-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.4;
  min-width: 36px;
  line-height: 1;
}
.why-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}
.why-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── BEFORE / AFTER SLIDER ──────────────────────────────────── */
#before-after {
  background: var(--bg-dark);
}
.ba-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  cursor: col-resize;
  box-shadow: var(--shadow-lg);
  height: 480px;
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}
.ba-after {
  z-index: 0;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  width: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.ba-handle-btn svg {
  width: 22px;
  height: 22px;
  color: var(--bg-dark);
}
.ba-label {
  position: absolute;
  bottom: 20px;
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(8px);
  z-index: 6;
}
.ba-label-before {
  left: 20px;
}
.ba-label-after {
  right: 20px;
}

/* ── PROCESS SECTION ────────────────────────────────────────── */
#process {
  background: var(--bg-darkest);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 90px;
  height: 90px;
  background: var(--bg-card);
  border: 3px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative;
}
.process-step:hover .step-num {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
  transform: scale(1.1);
}
.process-step h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-icon {
  width: 36px;
  height: 36px;
  position: absolute;
  bottom: -12px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
#testimonials {
  background: var(--bg-dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(212, 43, 43, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg {
  width: 18px;
  height: 18px;
  color: #ffb400;
  fill: #ffb400;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.reviewer-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
}
.reviewer-loc {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.google-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── SERVICE AREAS ──────────────────────────────────────────── */
#areas {
  background: var(--bg-darkest);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  cursor: default;
}
.area-card:hover {
  border-color: var(--red);
  background: rgba(212, 43, 43, 0.06);
  transform: translateX(6px);
}
.area-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--red);
}
.area-card strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}
.area-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

/* ── EMERGENCY BANNER ───────────────────────────────────────── */
#emergency {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 64px 0;
}
.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.emergency-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.emergency-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}
.emergency-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.btn-white {
  background: #fff;
  color: var(--red);
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ── FAQ ────────────────────────────────────────────────────── */
#faq {
  background: var(--bg-dark);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(212, 43, 43, 0.5);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  transition: var(--transition-fast);
}
.faq-q:hover {
  color: var(--red);
}
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}
.faq-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}
.faq-item.open .faq-toggle svg {
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CONTACT SECTION ────────────────────────────────────────── */
#contact {
  background: var(--bg-darkest);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}
.contact-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: var(--red);
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 43, 43, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}
.contact-item strong {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  display: block;
  margin-bottom: 4px;
}
.contact-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-white);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
.form-group select option {
  background: var(--bg-card2);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
#site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
}
.footer-top {
  padding: 70px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-about p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 20px 0 28px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
}
.social-link svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}
.social-link:hover svg {
  color: #fff;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover {
  color: var(--red);
  padding-left: 4px;
}
.footer-col ul li a::before {
  content: "›";
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--red);
}

/* ── FLOATING BUTTONS ───────────────────────────────────────── */
.float-btns {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.float-btn:hover {
  transform: translateX(-4px) scale(1.03);
}
.float-call {
  background: var(--red);
  color: #fff;
}
.float-call:hover {
  box-shadow: var(--shadow-red);
}
.float-wa {
  background: #25d366;
  color: #fff;
}
.float-wa:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}
.float-btn svg {
  width: 20px;
  height: 20px;
}
.float-label {
  white-space: nowrap;
}

/* ── QUOTE POPUP ────────────────────────────────────────────── */
#quote-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#quote-popup.open {
  display: flex;
}
.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}
.popup-box {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.popup-close:hover {
  background: var(--red);
  border-color: var(--red);
}
.popup-close svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}
.popup-close:hover svg {
  color: #fff;
}
.popup-box h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
}
.popup-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ── SERVICE PAGE STYLES ────────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 70px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.breadcrumb a:hover {
  color: var(--red);
}
.breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero h1 span {
  color: var(--red);
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Service detail sections */
.service-detail {
  background: var(--bg-darkest);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}
.service-detail img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.sdl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.sdl-item svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
}

/* ── GALLERY PAGE ───────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(212, 43, 43, 0.5);
}
.gallery-item-overlay svg {
  width: 40px;
  height: 40px;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lb-close:hover {
  background: var(--red);
}
.lb-close svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lb-nav:hover {
  background: var(--red);
}
.lb-nav svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.lb-prev {
  left: 20px;
}
.lb-next {
  right: 20px;
}

/* ── CONTACT PAGE MAP ───────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border);
  margin-top: 40px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
}
.team-img {
  height: 220px;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.team-card:hover .team-img img {
  transform: scale(1.07);
}
.team-info {
  padding: 20px;
}
.team-info h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.team-info span {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
}
.team-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
}

.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.tl-item {
  position: relative;
  margin-bottom: 40px;
}
.tl-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 12px var(--red);
}
.tl-year {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.tl-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}
.tl-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-card{
    width:330px;
  }

  .journey {
  grid-template-columns: 1fr;

}

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .process-grid::before {
    display: none;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 68px;
  }
  .section-pad {
    padding: 70px 0;
  }
  .main-nav,
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-grid,
  .why-grid,
  .contact-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    display: block;
  }

  /*.about-certs {*/
  /*  flex-direction: row-reverse;*/
  /*}*/

  .why-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .about-content {
    padding-left: 0;
  }
  .about-badge-box {
    right: 0;
    bottom: -20px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-card.large {
    grid-column: span 1;
  }
  .hero-stat-bar {
    position: static;
    display: flex;
    margin-top: 40px;
    border-radius: var(--radius-lg);
  }
  .stat-item {
    flex: 1;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .emergency-inner {
    flex-direction: column;
    text-align: center;
  }
  .emergency-actions {
    justify-content: center;
  }
  .trust-bar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-badge:nth-child(3) {
    border-right: none;
  }
  .trust-badge:nth-child(4),
  .trust-badge:nth-child(5) {
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .section-pad {
    padding: 56px 0;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .logo-name {
    font-size: 1rem;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }
  .logo-icon svg {
    width: 20px;
    height: 20px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Convert grids to horizontal scroll slider on mobile */
  .testimonials-grid,
  .projects-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar,
  .projects-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonials-grid > *,
  .projects-grid > * {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: 85%;
  }

  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 28px 22px;
  }
  .ba-slider {
    height: 300px;
  }
  .trust-bar-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-badge:nth-child(2n) {
    border-right: none;
  }
  .trust-badge:nth-child(3) {
    border-right: 1px solid var(--border);
  }
  .hero-trust {
    gap: 14px;
  }
  .float-label {
    display: none;
  }
  .float-btn {
    padding: 14px;
    border-radius: 50%;
  }
  .float-btns {
    bottom: 20px;
    right: 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col {
    text-align: center;
  }
  .footer-col ul li {
    margin-bottom: 12px;
  }
  .footer-col a {
    padding: 8px 0;
    display: inline-block;
  }
  .footer-about {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .hero-stat-bar {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .service-detail img {
    height: 280px;
  }
  .about-img-inner img {
    height: 320px;
  }
  .about-badge-box {
    right: 0;
        left: 0;
        margin: 0 auto;
        bottom: -5px;
        padding: 16px 20px;
        width: max-content;
        left: 210px;
  }
  .about-badge-box .num {
    font-size: 2.2rem;
  }
  .about-img-wrap::before {
    left: -10px;
    right: 10px;
    top: -10px;
    bottom: 10px;
  }
}
