/* ============================================
   HomeServices.us - Global Stylesheet
   ============================================ */

:root {
  --navy: #0f2744;
  --navy-light: #1a3a5c;
  --navy-dark: #0a1a2f;
  --orange: #e85d04;
  --orange-light: #f97316;
  --orange-hover: #d45303;
  --gold: #f59e0b;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --text: #1e293b;
  --text-muted: #64748b;
  --shadow-sm: 0 2px 8px rgba(15, 39, 68, 0.06);
  --shadow: 0 6px 24px rgba(15, 39, 68, 0.1);
  --shadow-lg: 0 20px 50px rgba(15, 39, 68, 0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: "Outfit", sans-serif; line-height: 1.15; color: var(--navy); letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1200px, 92vw); margin-inline: auto; }
.text-center { text-align: center; }

/* ============================================
   HEADER / NAV
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(15, 39, 68, 0.06);
  transition: all var(--transition);
}
header.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.3);
}
.logo span { color: var(--orange); }
nav ul {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
}
nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
nav a:not(.nav-cta):hover { color: var(--navy); }
nav a:not(.nav-cta):hover::after,
nav a.active::after { width: 100%; }
nav a.active { color: var(--navy); font-weight: 600; }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(232, 93, 4, 0.35);
}
.nav-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.45);
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 200;
}
.menu-btn span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  margin: 6px 0;
  border-radius: 2px;
  transition: var(--transition);
}
.menu-btn.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gray-700);
}
.dropdown a:hover { background: var(--off-white); color: var(--navy); }
.dropdown a::after { display: none; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 93, 4, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.1); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-3px); }
.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 9rem 0 6rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-40V6h-2v4h-4v2h4v4h2v-4h4v-2h-4zM10 50v-4H8v4H4v2h4v4h2v-4h4v-2h-4zM10 10V6H8v4H4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  animation: floatBlob 12s ease-in-out infinite;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 40px) scale(1.1); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 93, 4, 0.2);
  color: #ffb380;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(232, 93, 4, 0.3);
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-tags span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stat .num {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.hero-stat .label {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Hero visual collage */
.hero-visual {
  position: relative;
  height: 520px;
}
.hv-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}
.hv-img img { width: 100%; height: 100%; object-fit: cover; }
.hv-1 {
  top: 0;
  left: 0;
  width: 60%;
  height: 60%;
  animation: floatY 6s ease-in-out infinite;
}
.hv-2 {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  animation: floatY 6s ease-in-out infinite -2s;
}
.hv-3 {
  top: 18%;
  right: 0;
  width: 40%;
  height: 38%;
  animation: floatY 6s ease-in-out infinite -4s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.hv-badge {
  position: absolute;
  bottom: 18%;
  left: -3%;
  background: var(--white);
  color: var(--navy);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: floatY 5s ease-in-out infinite -1s;
}
.hv-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}
.hv-badge strong { display: block; font-size: 0.95rem; }
.hv-badge small { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================
   PAGE HEADER (sub-pages)
   ============================================ */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
}
.page-header p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
  position: relative;
}
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb .sep { opacity: 0.5; }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 5.5rem 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-bottom: 0.85rem;
  font-weight: 800;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"] { transform: scale(0.9); }
[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }
[data-reveal-delay="500"] { transition-delay: 0.5s; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-bg { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 93, 4, 0.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-top {
  padding: 1.75rem 1.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}
.service-card .icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(15, 39, 68, 0.15);
}
.service-card .icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card:hover .icon {
  transform: scale(1.08) rotate(-3deg);
}
.service-card .icon--plumbing { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.service-card .icon--electrical { background: linear-gradient(135deg, #f59e0b, #d97706); }
.service-card .icon--cleaning { background: linear-gradient(135deg, #10b981, #059669); }
.service-card .icon--roofing { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.service-card .icon--kitchen { background: linear-gradient(135deg, #ec4899, #db2777); }
.service-card .icon--handyman { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.service-card .icon--appliance { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.service-card .icon--custom { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }

.service-card-head { flex: 1; min-width: 0; padding-top: 0.15rem; }
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.service-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  background: rgba(232, 93, 4, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.service-card-body {
  padding: 0.85rem 1.75rem 1.25rem;
  flex: 1;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.service-card-footer {
  padding: 1rem 1.75rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.service-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.service-card-actions--single {
  grid-template-columns: 1fr;
}
.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-card svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-card-learn {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn-card-learn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.btn-card-call {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232, 93, 4, 0.35);
}
.btn-card-call:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 93, 4, 0.45);
}
.service-card-phone {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}
.service-card-phone strong {
  color: var(--navy);
  font-weight: 700;
}

/* ============================================
   WHY US / FEATURES
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-item {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-item .icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(232, 93, 4, 0.25);
}
.why-item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.why-item p { font-size: 0.92rem; color: var(--text-muted); }

/* ============================================
   STATS (animated counters)
   ============================================ */
.stats-section {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: transparent;
  border: 2px solid var(--gray-200);
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--off-white);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 39, 68, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay-content {
  color: var(--white);
  transform: translateY(10px);
  transition: transform var(--transition);
}
.gallery-item:hover .overlay-content { transform: translateY(0); }
.gallery-item .overlay h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.2rem; }
.gallery-item .overlay p { font-size: 0.85rem; opacity: 0.85; }
.gallery-item .zoom-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: var(--transition);
}
.gallery-item:hover .zoom-icon { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 47, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}
.lightbox.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: zoomIn 0.4s ease;
}
@keyframes zoomIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--orange); color: var(--white); transform: scale(1.1); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-nav.prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-nav.next:hover { transform: translateY(-50%) scale(1.1); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-bg {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 100%;
  padding: 2.5rem;
  text-align: center;
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.author-info { text-align: left; }
.author-info strong { display: block; color: var(--navy); }
.author-info span { font-size: 0.85rem; color: var(--text-muted); }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dots button.active { background: var(--orange); width: 28px; border-radius: 5px; }

/* ============================================
   CTA / OFFER
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(232, 93, 4, 0.3);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.5rem;
}
.cta-band p { opacity: 0.95; max-width: 540px; }
.cta-band .btn-light { position: relative; }

/* ============================================
   FORM / CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-list {
  list-style: none;
  margin-top: 2rem;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-list .icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-info-list strong { display: block; color: var(--navy); margin-bottom: 0.15rem; }
.contact-info-list a, .contact-info-list span:not(.icon-box) { color: var(--text-muted); }

form.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
form input,
form select,
form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  background: var(--white);
  transition: var(--transition);
}
form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.1);
}
form textarea { min-height: 120px; resize: vertical; }
form .btn { width: 100%; justify-content: center; }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-hero {
  padding: 7.5rem 0 4rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.service-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
}
.service-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.service-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.service-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}
.content-block h2 { margin-bottom: 1rem; }
.content-block p { color: var(--text-muted); margin-bottom: 1.25rem; }
.checklist { list-style: none; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.98rem;
}
.checklist li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  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: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured h3, .pricing-card.featured .price { color: var(--white); }
.pricing-card.featured .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.pricing-card .price {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 1rem 0;
}
.pricing-card .price small { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.pricing-card.featured .price small { color: rgba(255, 255, 255, 0.7); }
.pricing-card ul { list-style: none; margin-bottom: 1.5rem; }
.pricing-card li { padding: 0.4rem 0; font-size: 0.92rem; opacity: 0.95; }
.pricing-card li::before { content: "✓ "; color: var(--orange); font-weight: 700; }
.pricing-card.featured li::before { color: var(--orange-light); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.faq-q::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--orange);
  transition: transform var(--transition);
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted);
  padding: 0 1.5rem;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 1.5rem;
}
.process-step .step-num {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 3px solid var(--orange);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
  background: var(--off-white);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.92rem; color: var(--text-muted); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col p { font-size: 0.92rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); }
.footer-col a:hover { color: var(--orange-light); }
.socials { display: flex; gap: 0.75rem; margin-top: 1rem; }
.socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white);
}
.socials a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.88rem;
}
.footer-bottom .logo { display: inline-flex; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 50;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--orange-hover); transform: translateY(-4px); }

/* Floating WhatsApp/Call button */
.float-call {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: #25d366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 50;
  animation: pulse 2s ease-in-out infinite;
}
.float-call:hover { transform: scale(1.1); }

/* ============================================
   SERVICE TABS (single-page detail switcher)
   ============================================ */
.tabs-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; align-items: start; }
.tabs-nav {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  margin-bottom: 0.2rem;
}
.tab-btn .ic {
  width: 36px; height: 36px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  transition: var(--transition);
}
.tab-btn:hover { background: var(--off-white); color: var(--navy); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  box-shadow: 0 6px 16px rgba(15, 39, 68, 0.2);
}
.tab-btn.active .ic { background: var(--orange); color: var(--white); }

.tab-panel { display: none; animation: fadeUp 0.5s ease; }
.tab-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel .panel-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 16/8;
  box-shadow: var(--shadow);
}
.tab-panel .panel-image img { width: 100%; height: 100%; object-fit: cover; }
.tab-panel h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.tab-panel > p { color: var(--text-muted); margin-bottom: 1.5rem; max-width: 640px; }
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.panel-grid h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* In-page section nav (sticky pill bar) */
.section-nav {
  position: sticky;
  top: 76px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  padding: 0.75rem 0;
}
.section-nav-inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.section-nav-inner::-webkit-scrollbar { display: none; }
.section-nav a {
  padding: 0.45rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: 100px;
  white-space: nowrap;
  transition: var(--transition);
}
.section-nav a:hover, .section-nav a.active {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .tabs-wrap { grid-template-columns: 1fr; }
  .tabs-nav { position: static; display: flex; overflow-x: auto; gap: 0.5rem; }
  .tab-btn { flex-shrink: 0; }
  .panel-grid { grid-template-columns: 1fr; }
  .hero-grid, .contact-grid, .service-hero-grid, .content-block { grid-template-columns: 1fr; }
  .content-block.reverse { direction: ltr; }
  .why-grid, .stats-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { height: 420px; margin-top: 2rem; }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-inner { height: 68px; }
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
    z-index: 99;
  }
  nav ul.open { right: 0; }
  nav a { font-size: 1.05rem; }
  nav a.nav-cta { width: 100%; text-align: center; }
  .menu-btn { display: block; }
  .hero { padding: 7rem 0 4rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 2.25rem; text-align: center; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid, .stats-grid, .process-grid, .services-grid { grid-template-columns: 1fr; }
  .service-card-actions { grid-template-columns: 1fr; }
  .float-call, .back-top { bottom: 1rem; }
  .float-call { left: 1rem; width: 50px; height: 50px; font-size: 1.4rem; }
  .back-top { right: 1rem; width: 42px; height: 42px; }
  .hv-badge { padding: 0.75rem 1rem; }
  .lightbox-nav { width: 44px; height: 44px; }
}
