/* ============================================
   ADVANCED ROOFING VICTORIA — Stylesheet
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');
/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal:        #14B8A6;
  --teal-dark:   #0d9e8e;
  --teal-light:  rgba(20,184,166,0.12);
  --dark:        #0d1117;
  --dark-2:      #161b22;
  --charcoal:    #21262d;
  --grey-dark:   #1f2937;
  --grey-mid:    #6b7280;
  --grey-light:  #f4f6f8;
  --white:       #ffffff;
  --border:      #e5e7eb;
  --shadow-sm:   0 2px 8px rgba(13,17,23,0.08);
  --shadow:      0 4px 24px rgba(13,17,23,0.12);
  --shadow-lg:   0 12px 48px rgba(13,17,23,0.18);
  --shadow-xl:   0 24px 80px rgba(13,17,23,0.25);
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --transition:  0.25s ease;
  --font-body:   'Inter', sans-serif;
  --font-head:   'Montserrat', sans-serif;
  --max-w:       1200px;
}
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
section[id] { scroll-margin-top: 88px; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }
body {
  font-family: var(--font-body);
  color: var(--grey-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 700; }
p  { color: var(--grey-mid); line-height: 1.75; }
/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section--grey  { background: var(--grey-light); }
.section--dark  { background: var(--dark); }
.section--dark-2 { background: var(--dark-2); }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.section-title   { margin-bottom: 16px; color: var(--dark); }
.section-title--white { color: var(--white); }
.section-subtitle { font-size: 1.05rem; max-width: 560px; margin-bottom: 56px; }
/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,184,166,0.35); }
.btn-white {
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
}
.btn-white:hover { background: #f0fdfb; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }
/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: var(--dark);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--transition);
}
.nav-phone svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; }
.nav-phone:hover { color: var(--white); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .nav-phone {
  font-size: 1rem;
  color: var(--teal);
  margin-top: 8px;
}
/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
/* Video hero background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
/* Fallback static bg if video unsupported */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(13,17,23,0.55) 0%,
    rgba(13,17,23,0.40) 40%,
    rgba(13,17,23,0.85) 80%,
    rgba(13,17,23,0.97) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.4);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(20,184,166,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(20,184,166,0); }
}
.hero-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #5eead4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-content h1 {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content h1 em {
  color: var(--teal);
  font-style: normal;
}
.hero-desc {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* Hero bottom bar */
.hero-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}
.hero-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--teal); }
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
/* ── Trust Bar ── */
.trust-bar {
  background: var(--teal);
  padding: 0;
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.trust-item:last-child { border-right: none; }
.trust-item-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
.trust-item-text strong {
  display: block;
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}
.trust-item-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.78);
}
/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 40px 36px;
  transition: all var(--transition);
  position: relative;
  cursor: default;
}
.service-card:hover {
  background: #f0fdfb;
  z-index: 1;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--teal);
  border-radius: 0;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--grey-light);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.service-card:hover .service-num { color: rgba(20,184,166,0.15); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.service-card:hover .service-icon { background: var(--teal); }
.service-card:hover .service-icon svg { stroke: white; }
.service-card h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.88rem; line-height: 1.7; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition);
  pointer-events: none;
  cursor: default;
}
.service-link svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2.5; }
.service-card:hover .service-link { opacity: 1; transform: translateX(0); }
/* ── Why Choose Us ── */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.features-image-side {
  position: relative;
  overflow: hidden;
}
.features-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features-image-side .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--grey-light) 100%);
}
.features-content-side {
  background: var(--grey-light);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.features-list { display: flex; flex-direction: column; gap: 32px; margin-top: 8px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-check {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-check svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 3; }
.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.feature-text p { font-size: 0.88rem; margin: 0; }
/* ── How It Works ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--teal-dark));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.process-number {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--dark);
  border: 3px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  box-shadow: 0 0 0 8px rgba(20,184,166,0.1);
}
.process-step h3 { color: var(--white); margin-bottom: 12px; font-size: 1.15rem; }
.process-step p { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 220px; margin: 0 auto; }
/* ── Stats Strip ── */
.stats-strip {
  background: var(--teal);
  padding: 60px 0;
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(20,184,166,0.15);
  font-family: Georgia, serif;
}
.testimonial-card:hover { border-color: rgba(20,184,166,0.3); transform: translateY(-4px); }
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars svg { width: 16px; height: 16px; fill: #FBBF24; stroke: none; }
.testimonial-text {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.author-location { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
/* ── Areas We Service ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.area-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-dark);
  transition: all var(--transition);
}
.area-tag svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; }
.area-tag:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--dark);
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}
.cta-banner .container { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* ── Page Hero ── */
.page-hero {
  background: var(--dark);
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(20,184,166,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.8rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
/* ── Services Detail (services page) ── */
.services-detail-grid { display: grid; gap: 40px; }
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); }
.service-detail-card:nth-child(even) .service-detail-content { order: -1; }
.service-detail-image {
  background: var(--grey-light);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-content {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail-content h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 12px; }
.service-detail-content p { margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--grey-dark);
}
.service-features li::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--teal-light);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314B8A6' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
/* ── Gallery ── */
.gallery-grid {
  columns: 3;
  gap: 16px;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: default;
  background: var(--grey-light);
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,17,23,0.28);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey-mid);
  font-size: 0.8rem;
  background: var(--grey-light);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
}
.gallery-placeholder svg { width: 36px; height: 36px; opacity: 0.35; }
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.value-icon { font-size: 1.8rem; margin-bottom: 10px; }
.value-card h4 { color: var(--dark); font-size: 0.92rem; margin-bottom: 6px; }
.value-card p { font-size: 0.82rem; margin: 0; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow var(--transition);
  max-width: 340px;
}
.team-card:hover { box-shadow: var(--shadow); }
.team-photo {
  background: var(--grey-light);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 24px; }
.team-info h4 { color: var(--dark); font-size: 1.1rem; margin-bottom: 4px; }
.team-info .role { font-size: 0.82rem; color: var(--teal); font-weight: 600; }
/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(20,184,166,0.2);
}
.contact-item-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 5px;
}
.contact-item-value { font-size: 1rem; font-weight: 600; color: var(--dark); }
.contact-item-value a { color: var(--dark); transition: color var(--transition); }
.contact-item-value a:hover { color: var(--teal); }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { color: var(--dark); margin-bottom: 6px; }
.contact-form > p { margin-bottom: 32px; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--grey-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  font-size: 1rem;
  padding: 17px;
  border-radius: var(--radius);
}
.form-success {
  display: none;
  text-align: center;
  padding: 18px;
  background: rgba(20,184,166,0.08);
  border: 1px solid rgba(20,184,166,0.3);
  border-radius: var(--radius);
  color: #0d9e8e;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
}
/* ── Footer ── */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 72px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 18px 0 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.social-link:hover { background: var(--teal); border-color: var(--teal); }
.social-link svg { width: 16px; height: 16px; fill: white; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--teal); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 0.86rem; }
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--teal); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--teal); }
/* ── Floating Call Button (mobile) ── */
.float-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--teal);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(20,184,166,0.5);
  z-index: 500;
  transition: transform var(--transition);
}
.float-call:hover { transform: scale(1.08); }
.float-call svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 2; }
/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--teal);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
  box-shadow: 0 4px 16px rgba(20,184,166,0.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2.5; }
/* ── Before & After Slider ── */
.ba-wrap { max-width: 900px; margin: 0 auto; }
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  box-shadow: var(--shadow-lg);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba-before-img {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 2px;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
}
.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  pointer-events: none;
  z-index: 5;
}
.ba-label--before { left: 16px; background: rgba(0,0,0,0.55); color: white; }
.ba-label--after  { right: 16px; background: var(--teal); color: white; }
.ba-hint {
  text-align: center;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--grey-mid);
}
/* ── Gallery Preview ── */
.gallery-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px;
  gap: 10px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.gp-item {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: default;
  pointer-events: auto;
}
.gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gp-item:hover img { transform: scale(1.05); }
.gp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.7) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gp-item:hover .gp-overlay { opacity: 1; }
.gp-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.87rem;
  font-family: var(--font-head);
}
/* ── FAQ ── */
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-header { position: sticky; top: 100px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.faq-icon::after { content: '+'; }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: white;
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 220px; }
.faq-a p {
  padding-bottom: 24px;
  color: var(--grey-mid);
  line-height: 1.75;
  font-size: 0.93rem;
}
/* ── Helpers ── */
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey-mid);
  font-size: 0.82rem;
}
.image-placeholder svg { width: 44px; height: 44px; opacity: 0.3; }
/* ── Homepage Quote Form ── */
.home-quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.home-quote-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hq-point {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
}
.hq-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(20,184,166,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hq-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 3;
}
.home-quote-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}
.home-quote-form .form-group label { color: var(--dark); }
.home-quote-form .form-group input,
.home-quote-form .form-group select,
.home-quote-form .form-group textarea {
  background: var(--grey-light);
  border-color: var(--border);
}
@media (max-width: 900px) {
  .home-quote-layout { grid-template-columns: 1fr; gap: 40px; }
  .home-quote-form { padding: 28px; }
}
/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features-split { grid-template-columns: 1fr; }
  .features-image-side { min-height: 320px; }
  .features-image-side .img-overlay { background: linear-gradient(to bottom, transparent 60%, var(--grey-light) 100%); }
}
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { position: static; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .gp-item--large { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .float-call { display: flex; }
  .scroll-top { display: none; }
  .section { padding: 64px 0; }
  .trust-bar .container { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .process-step { padding: 0 20px 48px; }
  .stats-strip .container { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card:nth-child(even) .service-detail-content { order: 0; }
  .service-detail-content { padding: 32px; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .features-content-side { padding: 48px 28px; }
  .hero-divider { display: none; }
  .gallery-preview-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 220px); }
  .gp-item--large { grid-column: auto; }
  .gp-overlay { opacity: 1; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .hero-bottom .container { justify-content: center; gap: 16px; }
  .stats-strip .container { grid-template-columns: 1fr 1fr; }
  .trust-bar .container { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .trust-item:last-child { border-bottom: none; }
}
