/* ===========================================
   QUADRON ELECTRICAL PROJECTS
   components.css — All UI Components
   =========================================== */

/* ==============================
   FLOATING ACTION BUTTONS
   ============================== */
.fab-container {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
  color: var(--white);
}

.fab:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: var(--shadow-lg);
}

.fab-call {
  background: var(--gold);
  color: var(--black);
}

.fab-call svg { width: 22px; height: 22px; }

.fab-whatsapp {
  background: #25D366;
}

.fab-whatsapp svg { width: 26px; height: 26px; }

@media (max-width: 480px) {
  .fab-container { bottom: 20px; right: 16px; }
  .fab { width: 48px; height: 48px; }
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--t-slow), padding var(--t-base), box-shadow var(--t-base);
}

.navbar.scrolled {
  background: rgba(11, 20, 55, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar.transparent {
  background: transparent;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-brand em {
  font-style: normal;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: var(--gold);
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t-base);
  border-radius: 1px;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  transform: scaleX(1);
}

.arrow-icon {
  transition: transform var(--t-fast);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .arrow-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(11, 20, 55, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-width: 560px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
  box-shadow: var(--shadow-lg);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(244, 180, 0, 0.12);
  color: var(--gold);
}

.dropdown-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  transition: color var(--t-fast);
}

.nav-phone:hover { color: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 0;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  transition: background var(--t-fast);
}

.hamburger:hover { background: rgba(244, 180, 0, 0.15); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base), margin var(--t-base);
  transform-origin: center;
}

.hamburger span:nth-child(2) { margin: 6px 0; }

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); margin: 6px 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 40px 32px;
  overflow-y: auto;
}

.nav-overlay.open {
  transform: translateX(0);
}

.nav-overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast);
}

.nav-overlay-close:hover { background: rgba(244,180,0,0.2); }

.nav-links-overlay {
  list-style: none;
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.nav-links-overlay > li > a,
.nav-links-overlay > li > span {
  display: block;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--t-fast);
  cursor: pointer;
}

.nav-links-overlay > li > a:hover,
.nav-links-overlay > li > span:hover { color: var(--gold); }

.nav-links-overlay .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.nav-links-overlay .submenu.open { max-height: 600px; }

.nav-links-overlay .submenu li a {
  display: block;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  transition: color var(--t-fast);
}

.nav-links-overlay .submenu li a:hover { color: var(--gold); }

.nav-overlay .btn-primary {
  margin-top: 32px;
  width: 100%;
  max-width: 280px;
  text-align: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-phone { display: none; }
  .hamburger { display: flex; }
}

@media (min-width: 1025px) {
  .nav-overlay { display: none; }
  .hamburger   { display: none; }
}

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn svg { transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(3px); }

/* Primary */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(244, 180, 0, 0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 180, 0, 0.5);
}

/* WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

/* Secondary / Outline */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Gold Outline */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Dark */
.btn-dark {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* Danger */
.btn-danger {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}

/* Sizes */
.btn-sm    { padding: 10px 22px; font-size: 0.78rem; }
.btn-lg    { padding: 18px 44px; font-size: 0.92rem; }
.btn-xl    { padding: 20px 56px; font-size: 1rem; letter-spacing: 1.5px; }
.btn-block { width: 100%; display: flex; justify-content: center; }

@media (max-width: 600px) {
  .btn-xl { padding: 16px 32px; font-size: 0.9rem; }
}

/* ==============================
   HERO — HOMEPAGE
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  background-image: url("../images/Generator%201.jpeg");
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 20, 55, 0.88) 0%,
    rgba(11, 20, 55, 0.62) 50%,
    rgba(11, 20, 55, 0.82) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 820px;
  padding: 80px var(--container-px) 120px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.3; }
}

@media (max-width: 768px) {
  .hero-content { padding-top: 44px; padding-bottom: 100px; }
  .hero-stats { gap: 28px; }
  .hero-stat-num { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-content { padding-top: 28px; padding-bottom: 80px; }
  .hero-stats { gap: 16px 28px; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==============================
   PAGE HERO (Inner Pages)
   ============================== */
.page-hero {
  position: relative;
  background: var(--navy-dark);
  padding: 160px 0 80px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 0 56px; }
}

@media (max-width: 480px) {
  .page-hero { padding: 100px 0 40px; }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,180,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(244,180,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,42,108,0.6) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); font-size: 0.65rem; }

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  line-height: 1.8;
}

.page-hero-accent {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-hero-accent.dark {
  background: var(--grey-light);
}

/* ==============================
   TRUST BAR
   ============================== */
.trust-bar {
  padding: 24px 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 48px;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.trust-bar-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
}

@media (max-width: 768px) {
  .trust-sep { display: none; }
  .trust-bar-items { gap: 16px 32px; }
}

/* ==============================
   SERVICE CARDS
   ============================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--navy-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t-base);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before { transform: scaleY(1); }

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(244, 180, 0, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: background var(--t-base), transform var(--t-base);
}

.service-card:hover .service-card-icon {
  background: rgba(244, 180, 0, 0.2);
  transform: scale(1.1);
}

.service-card-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--grey-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t-fast);
}

.service-card-link:hover { gap: 10px; }

.service-card-link svg { width: 14px; height: 14px; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ==============================
   STATS SECTION
   ============================== */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F4B400' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.stat-card:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-card:nth-child(3),
  .stat-card:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================
   ABOUT PREVIEW
   ============================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap .main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-badge .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge .lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
}

.about-feature-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(244, 180, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 1px;
}

.check-icon svg { width: 12px; height: 12px; }

@media (max-width: 900px) {
  .about-preview { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 0; }
}

/* ==============================
   EMERGENCY BANNER
   ============================== */
.emergency-banner {
  background: linear-gradient(135deg, #1a0505 0%, #2d0a0a 50%, #1a0505 100%);
  border-top: 2px solid rgba(224, 60, 60, 0.5);
  border-bottom: 2px solid rgba(224, 60, 60, 0.5);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.emergency-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(244,180,0,0.06) 0%, transparent 70%);
}

.emergency-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.emergency-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.emergency-icon {
  width: 64px;
  height: 64px;
  background: rgba(224, 60, 60, 0.15);
  border: 2px solid rgba(224, 60, 60, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E03C3C;
  flex-shrink: 0;
  animation: pulseRing 2s ease-in-out infinite;
}

.emergency-icon svg { width: 28px; height: 28px; }

@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,60,60,0.3); }
  50%       { box-shadow: 0 0 0 14px rgba(224,60,60,0); }
}

.emergency-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E03C3C;
  margin-bottom: 6px;
}

.emergency-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

.emergency-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 4px;
}

.emergency-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.emergency-number {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t-fast);
}

.emergency-number:hover { color: var(--gold-light); }
.emergency-number svg { color: var(--gold); }

@media (max-width: 768px) {
  .emergency-inner { flex-direction: column; text-align: center; }
  .emergency-left { flex-direction: column; text-align: center; }
  .emergency-right { align-items: center; }
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: transform var(--t-base), border-color var(--t-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.quote-icon {
  color: var(--gold);
  opacity: 0.3;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: 16px;
  left: 24px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  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: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.author-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

/* ==============================
   WHY CHOOSE US
   ============================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-item {
  text-align: center;
  padding: 32px 20px;
}

.why-icon {
  width: 72px;
  height: 72px;
  background: rgba(244,180,0,0.08);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.why-item:hover .why-icon {
  background: rgba(244,180,0,0.15);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.why-icon svg { width: 30px; height: 30px; }
.why-item h4 { color: var(--white); margin-bottom: 10px; }
.why-item p { font-size: 0.88rem; color: var(--grey-mid); }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
  background:
    linear-gradient(135deg, rgba(11, 20, 55, 0.9) 0%, rgba(26, 42, 108, 0.8) 50%, rgba(11, 20, 55, 0.92) 100%),
    url("../images/fixing%20generator.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(244,180,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p  { font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 40px; }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 250px;
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==============================
   FEATURE LIST (Service Pages)
   ============================== */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-list li .icon-check {
  width: 24px;
  height: 24px;
  background: rgba(244,180,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 1px;
}

.feature-list li .icon-check svg { width: 12px; height: 12px; }

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card .icon {
  color: var(--gold);
  margin-bottom: 14px;
}

.benefit-card .icon svg { width: 28px; height: 28px; }
.benefit-card h4 { margin-bottom: 8px; color: var(--text-dark); }
.benefit-card p  { font-size: 0.88rem; }

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* Service Page Layout */
.service-page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--navy-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-services-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-services-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color var(--t-fast);
}

.sidebar-services-list li a:hover { color: var(--gold); }
.sidebar-services-list li a.active { color: var(--gold); }

.sidebar-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}

.sidebar-cta h4 { color: var(--black); margin-bottom: 12px; }
.sidebar-cta p { color: rgba(0,0,0,0.65); font-size: 0.9rem; margin-bottom: 20px; }
.sidebar-cta .phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .service-page-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

/* ==============================
   CONTACT FORM
   ============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(244,180,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; }
.contact-info-item h5 { color: var(--white); margin-bottom: 4px; }
.contact-info-item p  { font-size: 0.92rem; color: var(--grey-mid); }
.contact-info-item a  { color: var(--gold); }

.contact-form {
  background: var(--navy-mid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--t-fast), background var(--t-fast);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group select option { background: var(--navy-dark); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(244,180,0,0.05);
}

.form-group textarea { resize: vertical; min-height: 130px; }


.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error,
.form-success {
  display: none;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 16px;
}

.form-success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.form-error {
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.32);
  color: #dc3545;
}

.form-error.show,
.form-success.show { display: block; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .contact-form { padding: 28px 20px; }
}

/* ==============================
   GALLERY
   ============================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 22px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,20,55,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base);
}

.gallery-item:hover .gallery-view-btn { transform: translate(-50%,-50%) scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--t-fast);
}

.lightbox-close:hover { background: rgba(244,180,0,0.3); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast);
  border: none;
}

.lightbox-nav:hover { background: rgba(244,180,0,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ==============================
   FAQ ACCORDION
   ============================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.faq-item.active { border-color: var(--border-gold); }

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--navy-mid);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: color var(--t-fast);
  border: none;
}

.faq-item.active .faq-question { color: var(--gold); }

.faq-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(244,180,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform var(--t-base), background var(--t-base);
}

.faq-item.active .faq-plus {
  transform: rotate(45deg);
  background: rgba(244,180,0,0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding var(--t-base);
  background: var(--navy-dark);
}

.faq-item.active .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 20px 28px 26px;
  color: var(--grey-mid);
  font-size: 0.92rem;
  line-height: 1.8;
}

.faq-category-label {
  margin: 48px 0 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-category-label:first-child { margin-top: 0; }

.faq-category-label span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244,180,0,0.1);
  border: 1px solid rgba(244,180,0,0.25);
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.faq-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ==============================
   BLOG
   ============================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-card-body { padding: 24px; }

.blog-meta {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color var(--t-fast);
}

.blog-card:hover .blog-card-body h3 { color: var(--gold-dark); }

.blog-card-body p { font-size: 0.88rem; margin-bottom: 20px; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap var(--t-fast);
}

.read-more:hover { gap: 10px; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}

.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--t-fast);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.social-link svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(244,180,0,0.2);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a:hover { color: var(--gold); }

.footer-links li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color var(--t-fast);
  font-size: 0.8rem;
}

.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==============================
   MAP EMBED
   ============================== */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 380px;
  background: var(--navy-mid);
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.85);
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--grey-mid);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.map-placeholder svg { width: 40px; height: 40px; color: var(--gold); opacity: 0.5; }

/* ==============================
   SERVICE INTRO CARD
   ============================== */
.service-intro-card {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px;
  margin-bottom: 48px;
}

.service-intro-card .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
}

/* ==============================
   AREAS SERVED
   ============================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.area-chip {
  background: var(--navy-mid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  transition: border-color var(--t-fast), color var(--t-fast);
}

.area-chip:hover {
  border-color: var(--border-gold);
  color: var(--gold);
}

@media (max-width: 768px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================
   MISSING UTILITY CLASSES
   ============================== */

/* Blog post category badge (used on article pages) */
.blog-card-category {
  display: inline-block;
  background: rgba(244,180,0,0.12);
  color: var(--gold);
  border: 1px solid rgba(244,180,0,0.3);
  border-radius: 50px;
  padding: 4px 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Sidebar services block (blog/service pages) */
.sidebar-services {
  background: var(--navy-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-services h5 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(244,180,0,0.2);
}

/* ==============================
   MOBILE RESPONSIVE ENHANCEMENTS
   ============================== */

/* Service intro card */
@media (max-width: 768px) {
  .service-intro-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .service-intro-card { padding: 20px 16px; }
}

/* About section image height */
@media (max-width: 900px) {
  .about-image-wrap .main-img { height: 340px; }
  .about-badge { right: 0; bottom: -16px; }
}

@media (max-width: 600px) {
  .about-image-wrap .main-img { height: 260px; }
}

/* FAQ compact padding on small screens */
@media (max-width: 480px) {
  .faq-question { padding: 16px 18px; font-size: 0.88rem; }
  .faq-answer-inner { padding: 14px 18px 20px; }
}

/* Trust bar on small screens */
@media (max-width: 480px) {
  .trust-bar-item { font-size: 0.7rem; gap: 7px; }
  .trust-bar-items { gap: 12px 20px; }
}

/* Section spacing on mobile */
@media (max-width: 480px) {
  .section-header { margin-bottom: 36px; }
  .section-subtitle { margin-bottom: 32px; }
}

/* Lightbox nav on mobile */
@media (max-width: 600px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox-img { max-width: 95vw; }
}

/* Nav overlay very small screens */
@media (max-width: 380px) {
  .nav-overlay { padding: 40px 20px; }
  .nav-links-overlay > li > a,
  .nav-links-overlay > li > span { font-size: 0.95rem; padding: 14px 0; }
}

/* Testimonials grid on mobile */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr !important; }
}

/* Service list cards (services.html) */
@media (max-width: 600px) {
  .service-list-card { padding: 24px 20px; }
}

/* Ensure tables in blog articles scroll horizontally */
article table {
  min-width: 480px;
}

/* Overflow wrapper for all inline tables */
.table-wrap,
article > div > table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  width: 100%;
}

/* Gallery filter buttons on mobile */
@media (max-width: 480px) {
  .filter-btn { padding: 7px 16px; font-size: 0.72rem; }
  .gallery-filters { gap: 8px; }
}

/* CTA section padding on mobile */
@media (max-width: 768px) {
  .cta-section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .cta-section { padding: 56px 0; }
}

/* Footer padding on mobile */
@media (max-width: 600px) {
  .footer { padding-top: 56px; }
  .footer-grid { padding-bottom: 40px; gap: 28px; }
}

/* Service page sidebar CTA on mobile */
@media (max-width: 1024px) {
  .service-sidebar { margin-top: 0; }
  .sidebar-cta { margin-bottom: 20px; }
}

/* Stats section padding on mobile */
@media (max-width: 768px) {
  .stats-section { padding: 60px 0; }
}

/* Breadcrumb font size on mobile */
@media (max-width: 480px) {
  .breadcrumb { font-size: 0.72rem; }
}

/* Page hero sub text on mobile */
@media (max-width: 480px) {
  .page-hero .page-hero-sub { font-size: 0.95rem; }
}
