/* ============================================
   ProBuild Master Inc. — Main Stylesheet
   Colors: Navy #0C1F5E | Orange #FF6B1A | White #FFFFFF
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0C1F5E;
  --navy-dark: #081544;
  --navy-mid: #152873;
  --navy-light: #1e3a8a;
  --orange: #FF6B1A;
  --orange-dark: #e85d10;
  --orange-light: #FF8C4A;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-light: #f1f4f9;
  --gray: #8896b3;
  --gray-mid: #5a6a8a;
  --text: #1a2340;
  --text-light: #4a5670;
  --shadow-sm: 0 2px 8px rgba(12,31,94,0.08);
  --shadow-md: 0 8px 32px rgba(12,31,94,0.12);
  --shadow-lg: 0 20px 60px rgba(12,31,94,0.18);
  --shadow-orange: 0 8px 24px rgba(255,107,26,0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.highlight { color: var(--orange); }

.mt-2 { margin-top: 24px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
  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: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,107,26,0.45);
}

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

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

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

.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   SECTION HEADER
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(255,107,26,0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-left span, .topbar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.82);
}

.badge-top {
  background: var(--orange);
  color: var(--white) !important;
  padding: 3px 12px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(12,31,94,0.3);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(12,31,94,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 88px;
  width: auto;
  display: block;
  flex-shrink: 0;
  /* Shift logo colours → website orange (#FF6B1A) on navy */
  filter: hue-rotate(-28deg) saturate(2) brightness(1.12) drop-shadow(0 0 6px rgba(255,107,26,0.35));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-img:hover {
  filter: hue-rotate(-28deg) saturate(2.2) brightness(1.2) drop-shadow(0 0 10px rgba(255,107,26,0.55));
  transform: scale(1.03);
}

.logo-img--footer {
  height: 88px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-pro { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 400; color: var(--white); }
.logo-build { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--orange); }
.logo-master { font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; color: rgba(255,255,255,0.55); text-transform: uppercase; margin-top: 2px; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.32;
  pointer-events: none;
}

.hero-yt-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-yt-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  opacity: 0.7;
  pointer-events: none;
  border: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,21,68,0.52) 0%, rgba(12,31,94,0.45) 50%, rgba(21,40,115,0.50) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.12) 0%, transparent 70%);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 70%); }
.shape-3 { width: 300px; height: 300px; top: 50%; right: 30%; transform: translateY(-50%); background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%); }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,26,0.15);
  border: 1px solid rgba(255,107,26,0.3);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* Hero image */
.hero-visual { position: relative; }

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.card-float-1 { bottom: -20px; left: -20px; animation-delay: 0s; }
.card-float-2 { top: -20px; right: -20px; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,26,0.08);
  border-radius: 10px;
  flex-shrink: 0;
}
.card-num { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1; }
.card-lbl { font-size: 12px; color: var(--gray-mid); font-weight: 500; }

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.scroll-dot {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(0.6); }
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(12,31,94,0.08);
  padding: 48px 0;
  box-shadow: 0 -4px 20px rgba(12,31,94,0.06);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 56px;
  flex: 1;
  min-width: 160px;
}

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  display: inline;
  vertical-align: super;
}

.stat-lbl {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-mid);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(12,31,94,0.12);
  flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--off-white); }

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

.about-visual { position: relative; }

.about-img-stack {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

.about-badge-box {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.badge-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,26,0.08);
  border-radius: 10px;
  flex-shrink: 0;
}
.badge-title { font-weight: 700; color: var(--navy); font-size: 14px; }
.badge-sub { font-size: 12px; color: var(--gray-mid); }

.about-deco-line {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--orange);
  border-radius: var(--radius);
  opacity: 0.3;
  z-index: -1;
}

.about-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 8px;
}

.about-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feat-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,107,26,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feat strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-feat p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--white);
  position: relative;
}

.services-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(12,31,94,0.02), transparent);
  pointer-events: none;
}

.services-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-category {
  background: var(--white);
  border: 1px solid rgba(12,31,94,0.09);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-category:hover {
  border-color: rgba(255,107,26,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-category:hover::before { transform: scaleX(1); }

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(12,31,94,0.07);
}

.cat-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255,107,26,0.1), rgba(255,107,26,0.05));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,107,26,0.15);
}

.category-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-list { display: flex; flex-direction: column; gap: 16px; }

.service-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.svc-check {
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-list strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.service-list p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.services-cta {
  text-align: center;
  margin-top: 56px;
  padding: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  color: var(--white);
}

.services-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

/* ============================================
   GALLERY — Before & After
   ============================================ */
.gallery { background: var(--navy-dark); }
.gallery .section-label { background: rgba(255,107,26,0.2); }
.gallery .section-title { color: var(--white); }
.gallery .section-sub { color: rgba(255,255,255,0.6); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.gallery-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.gallery-card:hover {
  border-color: rgba(255,107,26,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-6px);
}

.gallery-badge {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  text-align: center;
}

/* Before/After Slider */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-after { z-index: 1; }
.ba-before {
  z-index: 2;
  width: 50%;
  border-right: none;
}

.ba-after img,
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* The before img must fill the full slider width */
.ba-before img {
  width: calc(100% / var(--ratio, 0.5));
  max-width: none;
}

/* Drag handle */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  width: 4px;
}

.ba-handle-line {
  flex: 1;
  width: 3px;
  background: var(--white);
  opacity: 0.9;
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  color: var(--navy);
  flex-shrink: 0;
  border: 3px solid var(--orange);
}

/* Before / After labels */
.ba-label {
  position: absolute;
  top: 14px;
  z-index: 5;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; }

/* Gallery info below slider */
.gallery-info {
  padding: 20px 22px 22px;
}

.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

.meta-item svg { flex-shrink: 0; }

.gallery-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.gallery-cta {
  text-align: center;
  padding: 44px;
  background: rgba(255,107,26,0.08);
  border: 1px solid rgba(255,107,26,0.2);
  border-radius: var(--radius-xl);
}
.gallery-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid rgba(12,31,94,0.07);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(255,107,26,0.15);
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255,107,26,0.1), rgba(255,107,26,0.05));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255,107,26,0.12);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, rgba(255,107,26,0.18), rgba(255,107,26,0.08));
}

.why-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--white);
  position: relative;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 10% 50%, rgba(12,31,94,0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(255,107,26,0.04) 0%, transparent 60%);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.process-step {
  flex: 1;
  text-align: center;
  max-width: 240px;
}

.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(12,31,94,0.06);
  line-height: 1;
  margin-bottom: -16px;
}

.step-content {
  background: var(--white);
  border: 1px solid rgba(12,31,94,0.09);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  position: relative;
  transition: var(--transition);
}

.process-step:hover .step-content {
  border-color: rgba(255,107,26,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255,107,26,0.12), rgba(255,107,26,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(255,107,26,0.2);
}

.step-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.step-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.step-connector {
  flex: 0 0 auto;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,107,26,0.3), rgba(255,107,26,0.6), rgba(255,107,26,0.3));
  margin-top: 100px;
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -5px;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255,107,26,0.6);
  border-top: 2px solid rgba(255,107,26,0.6);
  transform: rotate(45deg);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.testimonials .section-label { background: rgba(255,107,26,0.2); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.65); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.testi-card.featured {
  background: rgba(255,107,26,0.1);
  border-color: rgba(255,107,26,0.3);
  transform: scale(1.03);
}

.testi-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.testi-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.testi-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}

.testi-author strong { display: block; color: var(--white); font-size: 14px; }
.testi-author span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1 {
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -200px; right: -100px;
}
.cta-shape-2 {
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  bottom: -150px; left: 10%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.85); }

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--off-white); }

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

.contact-info .section-title { font-size: 40px; }

.contact-info > p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-items { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(12,31,94,0.07);
  transition: var(--transition);
}

a.contact-item:hover {
  border-color: rgba(255,107,26,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,107,26,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label { display: block; font-size: 12px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-value { display: block; font-size: 15px; font-weight: 600; color: var(--navy); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(12,31,94,0.06);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(12,31,94,0.12);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6a8a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(90,106,138,0.5); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.show { display: block; }

.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-orange);
}

.form-success h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.form-success p { color: var(--text-light); font-size: 15px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-dark); }

.footer-top { padding: 72px 0 48px; }

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.3fr;
  gap: 48px;
}

.footer-brand .logo { margin-bottom: 18px; }

.logo-light .logo-pro { color: var(--white); }
.logo-light .logo-master { color: rgba(255,255,255,0.4); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-contact-pills { display: flex; flex-direction: column; gap: 8px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  width: fit-content;
}
.pill:hover {
  background: rgba(255,107,26,0.15);
  border-color: rgba(255,107,26,0.3);
  color: var(--orange-light);
}

.footer-nav h5,
.footer-services h5,
.footer-hours h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: inline-block;
}
.footer-nav a:hover { color: var(--orange-light); transform: translateX(4px); }

.footer-services li {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding-left: 12px;
  position: relative;
}
.footer-services li::before {
  content: '—';
  position: absolute;
  left: -4px;
  color: var(--orange);
  font-size: 10px;
}

.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-list li span:first-child { font-weight: 500; color: rgba(255,255,255,0.7); }
.closed { color: rgba(255,107,26,0.6) !important; font-style: italic; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-up"] { transform: translateY(32px); }

[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* Mobile menu overlay dimmer */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 997;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-overlay.show {
  display: block;
  opacity: 1;
}

/* ============================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }

  /* Hero */
  .hero { min-height: auto; padding: 72px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { max-width: 640px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .hero-badge { justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 520px; margin: 0 auto; }

  /* Services */
  .services-categories { grid-template-columns: 1fr 1fr; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Process */
  .process-steps { gap: 0; }
  .step-connector { width: 40px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .testi-card.featured { transform: scale(1); }

  /* Footer */
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================
   RESPONSIVE — Large Mobile (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* Top bar */
  .topbar { display: none; }

  /* Navbar */
  .nav-inner { padding-top: 12px; padding-bottom: 12px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    height: 100dvh;
    width: min(300px, 85vw);
    background: var(--navy-dark);
    flex-direction: column;
    padding: 88px 28px 40px;
    gap: 4px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -10px 0 50px rgba(0,0,0,0.5);
    z-index: 998;
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-link {
    font-size: 17px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-link::after { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  /* Sections */
  .section { padding: 52px 0; }
  .section-title { font-size: 28px; }
  .section-sub { font-size: 15px; }
  .section-header { margin-bottom: 40px; }

  /* Hero */
  .hero { min-height: 0; padding: 52px 0 48px; }
  .hero-title { font-size: 38px; line-height: 1.1; }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-actions { gap: 12px; }
  .hero-trust { gap: 12px; }
  .trust-item { font-size: 13px; }
  .trust-divider { display: none; }
  .hero-trust { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .hero-scroll-hint { display: none; }
  .card-float-1, .card-float-2 { display: none; }
  .shape-1, .shape-2, .shape-3 { opacity: 0.5; }

  /* Stats */
  .stats-strip { padding: 32px 0; }
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-item {
    padding: 20px 12px;
    border-bottom: 1px solid rgba(12,31,94,0.08);
    min-width: 0;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(12,31,94,0.08); }
  .stat-num { font-size: 36px; }
  .stat-divider { display: none; }

  /* About */
  .about { padding: 52px 0; }
  .about-visual { max-width: 100%; }
  .about-features { grid-template-columns: 1fr; gap: 14px; }
  .about-deco-line { display: none; }
  .about-text { font-size: 15px; }

  /* Services */
  .services-categories { grid-template-columns: 1fr; gap: 16px; }
  .service-category { padding: 24px 20px; }
  .services-cta { margin-top: 36px; padding: 36px 24px; }
  .services-cta p { font-size: 16px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-cta { padding: 28px 20px; }
  .gallery-cta p { font-size: 16px; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 24px 18px; }

  /* Process */
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .step-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, rgba(255,107,26,0.3), rgba(255,107,26,0.6));
  }
  .step-connector::after { display: none; }
  .process-step { max-width: 100%; width: 100%; }
  .step-number { font-size: 40px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card.featured { transform: scale(1); }

  /* CTA Banner */
  .cta-banner { padding: 52px 0; }
  .cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-content h2 { font-size: clamp(24px, 6vw, 36px); }
  .cta-content p { font-size: 15px; }
  .cta-actions { justify-content: center; flex-wrap: wrap; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info .section-title { font-size: 30px; }
  .contact-info > p { font-size: 15px; }
  .contact-item { padding: 14px 16px; gap: 12px; }
  .contact-icon { width: 40px; height: 40px; min-width: 40px; }
  .contact-value { font-size: 14px; word-break: break-all; }

  /* Footer */
  .footer-top { padding: 48px 0 32px; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }
  .footer-contact-pills { flex-direction: column; align-items: flex-start; }
  .hours-list li { font-size: 13px; }
}

/* ============================================
   RESPONSIVE — Phone (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Typography */
  .hero-title { font-size: 32px; line-height: 1.1; }
  .section-title { font-size: 25px; }
  .section-sub { font-size: 14px; }
  .hero-sub { font-size: 14px; line-height: 1.65; }

  /* Buttons */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { padding: 15px 24px; font-size: 15px; justify-content: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Navbar */
  .logo-img { height: 70px; }
  .logo-icon { width: 38px; height: 38px; }
  .logo-pro, .logo-build { font-size: 18px; }
  .logo-master { font-size: 8px; }

  /* Hero */
  .hero { padding: 44px 0 40px; }
  .hero-badge { font-size: 11px; padding: 6px 12px; gap: 6px; }
  .hero-img { border-radius: var(--radius-lg); }
  .hero-trust { gap: 8px; }
  .trust-item { font-size: 12px; gap: 6px; }
  .trust-item svg { width: 16px; height: 16px; }

  /* Stats — keep 2 columns */
  .stats-strip { padding: 24px 0; }
  .stat-num { font-size: 30px; }
  .stat-plus { font-size: 22px; }
  .stat-lbl { font-size: 11px; letter-spacing: 0.03em; }
  .stat-item { padding: 16px 10px; }

  /* About */
  .about-badge-box { left: 10px; bottom: 10px; padding: 10px 12px; gap: 10px; }
  .badge-icon { width: 36px; height: 36px; }
  .badge-title { font-size: 12px; }
  .badge-sub { font-size: 11px; }
  .about-text { font-size: 14px; }
  .about-feat strong { font-size: 13px; }
  .about-feat p { font-size: 12px; }

  /* Services */
  .service-category { padding: 20px 16px; }
  .category-header { gap: 12px; margin-bottom: 20px; padding-bottom: 16px; }
  .cat-icon { width: 44px; height: 44px; flex-shrink: 0; }
  .category-header h3 { font-size: 16px; }
  .service-list { gap: 14px; }
  .service-list strong { font-size: 14px; }
  .services-cta { margin-top: 28px; padding: 28px 16px; }
  .services-cta p { font-size: 14px; }

  /* Gallery */
  .gallery-info { padding: 14px 14px 16px; }
  .gallery-meta { gap: 10px; }
  .gallery-desc { font-size: 12px; }
  .gallery-cta { padding: 24px 16px; }
  .gallery-cta p { font-size: 14px; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 22px 16px; }
  .why-icon { width: 52px; height: 52px; }
  .why-card h4 { font-size: 16px; }
  .why-card p { font-size: 13px; }

  /* Process */
  .step-content { padding: 20px 16px; }
  .step-content h4 { font-size: 14px; }
  .step-content p { font-size: 12px; }
  .step-number { font-size: 36px; }

  /* Testimonials */
  .testi-card { padding: 22px 18px; }
  .testi-text { font-size: 14px; }

  /* CTA */
  .cta-content h2 { font-size: 24px; }
  .cta-content p { font-size: 14px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact-form-wrap { padding: 20px 14px; }
  .contact-info .section-title { font-size: 26px; }
  .contact-info > p { font-size: 14px; }
  .contact-value { font-size: 13px; }
  .form-group label { font-size: 12px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; padding: 12px 14px; } /* Prevents iOS zoom */

  /* Footer */
  .footer-top { padding: 36px 0 24px; }
  .footer-contact-pills .pill { font-size: 12px; padding: 7px 12px; }
  .footer-nav h5,
  .footer-services h5,
  .footer-hours h5 { font-size: 13px; }
  .hours-list li { font-size: 12px; }
  .footer-tagline { font-size: 13px; }
  .footer-bottom p { font-size: 12px; }

  /* Scroll top button */
  .scroll-top { bottom: 20px; right: 16px; width: 44px; height: 44px; }
}

/* ============================================
   RESPONSIVE — Very Small (≤360px)
   ============================================ */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 28px; }
  .section-title { font-size: 22px; }
  .logo-img { height: 60px; }
  .logo-pro, .logo-build { font-size: 16px; }
  .logo-master { font-size: 7px; }
  .stat-num { font-size: 26px; }
  .stat-plus { font-size: 18px; }
  .btn-lg { padding: 13px 18px; font-size: 14px; }
  .service-category { padding: 18px 14px; }
  .testi-card { padding: 18px 14px; }
  .contact-form-wrap { padding: 18px 12px; }
  .why-card { padding: 18px 14px; }
}

/* ============================================
   GLOBAL MOBILE OVERFLOW FIX
   ============================================ */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .hero, .cta-banner, .gallery, .testimonials { overflow: hidden; }
  * { min-width: 0; }
}
