/* ==========================================================================
   GAMBINO HOME SERVICES - CORE STYLESHEET
   Brand Palette: Deep Charcoal/Black, Metallic Gold, Brushed Steel, Neutral Whites
   Serving: Central Florida (Ocala, Marion County, Gainesville, The Villages, Crystal River)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors - Dark */
  --bg-dark: #0c0e12;
  --bg-dark-surface: #141720;
  --bg-dark-card: #1c202d;
  --bg-dark-card-hover: #222838;
  --border-dark: #2a3144;
  --border-dark-subtle: #1e2330;

  /* Brand Colors - Metallic Gold */
  --gold-primary: #c5a059;
  --gold-metallic: #d4af37;
  --gold-bright: #e5c158;
  --gold-dark: #9e7d3b;
  --gold-tint: rgba(197, 160, 89, 0.12);
  --gold-border: rgba(212, 175, 55, 0.35);
  --gold-gradient: linear-gradient(135deg, #ecd178 0%, #d4af37 40%, #b8860b 100%);
  --gold-gradient-hover: linear-gradient(135deg, #f3de98 0%, #e0bd49 40%, #c59218 100%);

  /* Brand Colors - Light / Neutrals */
  --bg-light: #f8fafc;
  --bg-light-surface: #ffffff;
  --bg-light-muted: #f1f5f9;
  --border-light: #e2e8f0;
  --border-light-subtle: #cbd5e1;

  /* Text Colors */
  --text-light-primary: #ffffff;
  --text-light-secondary: #e2e8f0;
  --text-light-muted: #94a3b8;

  --text-dark-primary: #0f172a;
  --text-dark-secondary: #334155;
  --text-dark-muted: #64748b;

  /* Steel / Metallic Accents */
  --steel-highlight: #e2e8f0;
  --steel-border: #94a3b8;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-wide: 1320px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.25);
  --shadow-dark-card: 0 8px 30px rgba(0,0,0,0.35);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark-secondary);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   ON-LOAD ANIMATIONS, BRAND PRELOADER & SCROLL REVEALS
   -------------------------------------------------------------------------- */

/* 1. Fullscreen Brand Splash Preloader */
.page-preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #161b26 0%, #07090c 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.6s ease;
  will-change: opacity, transform;
}

.page-preloader.fade-out {
  opacity: 0;
  transform: scale(1.04);
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  max-width: 440px;
}

.preloader-logo-ring {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.preloader-logo-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold-bright);
  border-right-color: var(--gold-metallic);
  border-bottom-color: rgba(212, 175, 55, 0.2);
  border-left-color: rgba(212, 175, 55, 0.2);
  animation: preloaderSpin 1.4s linear infinite;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

.preloader-logo-ring::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.15);
  animation: preloaderPulse 2s ease-in-out infinite alternate;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  0% { transform: scale(0.95); opacity: 0.4; }
  100% { transform: scale(1.08); opacity: 0.9; }
}

.preloader-logo-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold-metallic);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  animation: preloaderLogoZoom 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes preloaderLogoZoom {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.preloader-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  animation: fadeInUpDramatic 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.preloader-title span {
  color: var(--gold-bright);
}

.preloader-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--steel-border);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUpDramatic 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.preloader-bar {
  width: 170px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.85rem;
}

.preloader-progress {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  box-shadow: 0 0 8px rgba(223, 183, 88, 0.8);
  border-radius: 9999px;
  animation: preloaderFill 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes preloaderFill {
  0% { width: 0%; }
  40% { width: 45%; }
  75% { width: 85%; }
  100% { width: 100%; }
}

.preloader-location {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-metallic);
  text-transform: uppercase;
  animation: fadeInOnly 0.8s ease 0.35s both;
}

/* 2. Top Golden Progress Line (Persists during navigation) */
.page-load-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(223, 183, 88, 0.9), 0 0 24px rgba(212, 175, 55, 0.6);
  z-index: 10000;
  pointer-events: none;
  transition: width 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease 0.65s;
}

body.page-loaded .page-load-progress {
  width: 100%;
  opacity: 0;
}

/* 3. Dramatic Post-Load Page Cascading Animations */
@keyframes slideDownIn {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUpDramatic {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomInDramatic {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeInOnly {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* When site-animated is triggered on body */
body.site-animated .top-bar {
  animation: slideDownIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.site-animated .site-header {
  animation: slideDownIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

body.site-animated .hero-location-badge {
  animation: fadeInUpDramatic 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

body.site-animated .hero-title {
  animation: fadeInUpDramatic 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

body.site-animated .hero-description {
  animation: fadeInUpDramatic 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

body.site-animated .hero-actions {
  animation: fadeInUpDramatic 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

body.site-animated .hero-trust-bar {
  animation: fadeInUpDramatic 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

body.site-animated .hero-visual {
  animation: zoomInDramatic 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

/* Inner Page Hero Entrance */
body.site-animated .page-hero .breadcrumbs {
  animation: fadeInOnly 0.5s ease-out 0.15s both;
}

body.site-animated .page-hero .page-hero-title {
  animation: fadeInUpDramatic 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

body.site-animated .page-hero .page-hero-desc {
  animation: fadeInUpDramatic 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

/* Scroll and Stagger Reveal System */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark-primary);
  letter-spacing: -0.02em;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & UTILITY HELPERS
   -------------------------------------------------------------------------- */
.text-gold {
  color: var(--gold-metallic) !important;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-tag.gold {
  background-color: var(--gold-tint);
  color: var(--gold-dark);
  border: 1px solid var(--gold-border);
}

.section-tag.gold-dark {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--gold-bright);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-header.left-aligned {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

.dark-section .section-title {
  color: var(--text-light-primary);
}

.dark-section .section-subtitle {
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   4. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0c0e12;
  border-color: #dfb758;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: #050608;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light-primary);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-metallic);
  color: var(--gold-bright);
}

.btn-dark {
  background-color: var(--bg-dark);
  color: #ffffff;
  border-color: var(--border-dark);
}

.btn-dark:hover {
  background-color: var(--bg-dark-surface);
  border-color: var(--gold-metallic);
  color: var(--gold-bright);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold-dark);
  border-color: var(--gold-metallic);
}

.btn-outline-gold:hover {
  background-color: var(--gold-metallic);
  color: #0c0e12;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.825rem;
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.05rem;
}

.btn-phone {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  color: var(--text-light-primary);
}

.btn-phone:hover {
  border-color: var(--gold-metallic);
  color: var(--gold-bright);
  background-color: rgba(212, 175, 55, 0.08);
}

/* --------------------------------------------------------------------------
   5. TOP ANNOUNCEMENT BAR & HEADER
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: #07080a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
  font-size: 0.825rem;
  color: var(--text-light-muted);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item svg {
  color: var(--gold-metallic);
  flex-shrink: 0;
}

.top-bar-item a:hover {
  color: var(--gold-bright);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(12, 14, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(10, 11, 15, 0.98);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  min-height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.logo-img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--radius-full);
  border: 2px solid var(--gold-metallic);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  background-color: #000;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-name span {
  color: var(--gold-bright);
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--steel-border);
  text-transform: uppercase;
}

/* Main Navigation */
.main-nav {
  display: none;
}

@media (min-width: 992px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0;
  position: relative;
}

.nav-link:hover {
  color: var(--gold-bright);
}

.nav-link.active {
  color: var(--gold-metallic);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone-btn {
  display: none;
}

@media (min-width: 1200px) {
  .header-phone-btn {
    display: inline-flex;
  }
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  gap: 5px;
  transition: all var(--transition-fast);
}

.mobile-nav-toggle:hover {
  border-color: var(--gold-metallic);
}

.mobile-nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--gold-bright);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background-color: #0c0e12;
  border-left: 1px solid var(--border-dark);
  z-index: 2000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-dark);
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  color: var(--text-light-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-drawer-close:hover {
  color: var(--gold-bright);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-list a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light-primary);
  text-transform: uppercase;
  padding: 0.5rem 0;
  display: block;
}

.mobile-nav-list a.active, .mobile-nav-list a:hover {
  color: var(--gold-bright);
}

.mobile-drawer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-color: var(--bg-dark);
  color: var(--text-light-primary);
  padding: 4rem 0 5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}

.hero-bg-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(12, 14, 18, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-bright);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Trust Pill Badges */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light-secondary);
}

.trust-item svg {
  color: var(--gold-metallic);
}

/* Hero Media Display */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-dark-card), 0 0 30px rgba(212, 175, 55, 0.15);
  background-color: var(--bg-dark-card);
}

.hero-card-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-card-frame:hover .hero-card-img {
  transform: scale(1.02);
}

.hero-floating-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(12, 14, 18, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.floating-badge-text h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.floating-badge-text p {
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 600;
}

.floating-call-btn {
  background: var(--gold-gradient);
  color: #0c0e12;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* --------------------------------------------------------------------------
   7. VALUE RIBBON / TRUST BAR
   -------------------------------------------------------------------------- */
.value-ribbon {
  background: linear-gradient(90deg, #10131a 0%, #171b26 50%, #10131a 100%);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.25rem 0;
  color: var(--text-light-primary);
}

.value-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .value-ribbon-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 0;
}

.value-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: var(--gold-tint);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.value-text h4 {
  font-size: 0.925rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.value-text p {
  font-size: 0.785rem;
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   8. SERVICES OVERVIEW SECTION
   -------------------------------------------------------------------------- */
.services-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--bg-light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background-color: var(--bg-dark);
  border: 1px solid var(--gold-metallic);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark-primary);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dark-secondary);
  font-weight: 500;
}

.service-feature-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

.service-card-action {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-link:hover {
  color: #0c0e12;
}

.service-link svg {
  transition: transform var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9. FEATURED SERVICE / APPLIANCE INSTALLATION SPOTLIGHT
   -------------------------------------------------------------------------- */
.spotlight-section {
  padding: 6rem 0;
  background-color: var(--bg-dark-surface);
  color: var(--text-light-primary);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .spotlight-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.spotlight-media {
  position: relative;
}

.spotlight-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-dark-card);
}

.spotlight-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.spotlight-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: rgba(12, 14, 18, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold-metallic);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spotlight-content h2 {
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .spotlight-content h2 {
    font-size: 2.75rem;
  }
}

.spotlight-content p {
  color: var(--text-light-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.spotlight-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 640px) {
  .spotlight-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.spotlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: var(--bg-dark-card);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
}

.spotlight-item svg {
  color: var(--gold-bright);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.spotlight-item h4 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.spotlight-item p {
  font-size: 0.825rem;
  color: var(--text-light-muted);
  line-height: 1.4;
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. OUR WORK / GALLERY SECTION
   -------------------------------------------------------------------------- */
.work-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--bg-light-muted);
  border: 1px solid var(--border-light);
  color: var(--text-dark-secondary);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: var(--border-light);
  color: var(--text-dark-primary);
}

.filter-btn.active {
  background: #0c0e12;
  color: var(--gold-bright);
  border-color: var(--gold-metallic);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  aspect-ratio: 4 / 3;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-metallic);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 14, 18, 0.95) 0%, rgba(12, 14, 18, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-bright);
  background-color: rgba(212, 175, 55, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.gallery-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gallery-view-hint {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --------------------------------------------------------------------------
   11. LIGHTBOX MODAL
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 7, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-wrapper {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-container {
  width: 100%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.35);
  background-color: #000;
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
  color: #ffffff;
}

.lightbox-caption h4 {
  font-size: 1.25rem;
  color: var(--gold-bright);
  margin-bottom: 0.25rem;
}

.lightbox-caption p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--gold-bright);
}

/* --------------------------------------------------------------------------
   12. ABOUT & WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.about-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

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

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-badge-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  background-color: #0c0e12;
}

.about-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .about-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pillar-card {
  background-color: var(--bg-light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: all var(--transition-fast);
}

.pillar-card:hover {
  border-color: var(--gold-metallic);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--gold-tint);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.pillar-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark-primary);
}

.pillar-card p {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   13. SERVICE AREAS SECTION & CHECKER WIDGET
   -------------------------------------------------------------------------- */
.areas-section {
  padding: 6rem 0;
  background-color: var(--bg-dark);
  color: var(--text-light-primary);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.areas-checker-box {
  background-color: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  max-width: 720px;
  margin: 0 auto 3.5rem;
  box-shadow: var(--shadow-dark-card);
}

.checker-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.checker-hint {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  margin-bottom: 1.25rem;
}

.checker-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .checker-input-group {
    flex-direction: row;
  }
}

.checker-input {
  flex: 1;
  background-color: #0c0e12;
  border: 1px solid var(--border-dark);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast);
}

.checker-input:focus {
  border-color: var(--gold-metallic);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.checker-result {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.checker-result.success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.checker-result.info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-bright);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.area-card:hover {
  border-color: var(--gold-metallic);
  background-color: var(--bg-dark-card-hover);
  transform: translateY(-3px);
}

.area-card svg {
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}

.area-card h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.area-card p {
  color: var(--text-light-muted);
  font-size: 0.8rem;
}

.areas-footer-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.05rem;
  color: var(--text-light-secondary);
}

.areas-footer-note a {
  color: var(--gold-bright);
  font-weight: 700;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   14. HIGH CONVERSION CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  background: radial-gradient(circle at center, #1b202c 0%, #0c0e12 100%);
  padding: 5.5rem 0;
  color: #ffffff;
  text-align: center;
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-light-secondary);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   15. CONTACT & QUOTE SECTION / FORMS
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr 1.35fr;
  }
}

.contact-info-card {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-dark-card);
}

.contact-info-top h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.contact-info-top p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.channel-content h4 {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.channel-content a, .channel-content span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.channel-content a:hover {
  color: var(--gold-bright);
}

.contact-card-badge {
  background-color: var(--bg-dark-surface);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-card-badge svg {
  color: var(--gold-bright);
  flex-shrink: 0;
}

.contact-card-badge p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light-secondary);
}

/* Form Styles */
.form-container {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark-primary);
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-label .required {
  color: #e11d48;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light-subtle);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--text-dark-primary);
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-metallic);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

.form-status {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.form-status.error {
  display: block;
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #07080b;
  color: var(--text-light-muted);
  border-top: 1px solid var(--border-dark);
  padding: 5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-col-brand .brand-logo {
  margin-bottom: 1.25rem;
}

.footer-col-brand p {
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--gold-bright);
  font-weight: 700;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list a {
  color: var(--text-light-muted);
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--gold-bright);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item svg {
  color: var(--gold-metallic);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-item a, .footer-contact-item span {
  color: var(--text-light-secondary);
}

.footer-contact-item a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
  font-size: 0.825rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--gold-bright);
}

/* --------------------------------------------------------------------------
   17. PAGE HERO (INNER PAGES)
   -------------------------------------------------------------------------- */
.page-hero {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 3.5rem;
  }
}

.page-hero-desc {
  font-size: 1.2rem;
  color: var(--text-light-secondary);
  max-width: 720px;
  line-height: 1.6;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--text-light-muted);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumbs a {
  color: var(--text-light-secondary);
}

.breadcrumbs a:hover {
  color: var(--gold-bright);
}

.breadcrumbs span.current {
  color: var(--gold-bright);
}

/* --------------------------------------------------------------------------
   18. SERVICE DETAIL CARDS (SERVICES PAGE)
   -------------------------------------------------------------------------- */
.service-detail-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  transition: box-shadow var(--transition-normal);
}

@media (min-width: 992px) {
  .service-detail-card {
    grid-template-columns: 1fr 1.25fr;
  }

  .service-detail-card.reversed {
    grid-template-columns: 1.25fr 1fr;
  }

  .service-detail-card.reversed .service-detail-media {
    order: 2;
  }
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-detail-media {
  position: relative;
  background-color: var(--bg-dark);
  min-height: 320px;
}

.service-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark-primary);
}

.service-detail-content p {
  color: var(--text-dark-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.service-includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .service-includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.include-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark-primary);
}

.include-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   19. MODAL QUOTE REQUEST DIALOG
   -------------------------------------------------------------------------- */
.quote-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 7, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-modal.open {
  opacity: 1;
  visibility: visible;
}

.quote-modal-content {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  max-width: 580px;
  width: 100%;
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  max-height: 90vh;
  overflow-y: auto;
}

.quote-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  color: var(--text-dark-muted);
  cursor: pointer;
  line-height: 1;
}

.quote-modal-close:hover {
  color: var(--text-dark-primary);
}

/* --------------------------------------------------------------------------
   20. FLOATING MOBILE ACTIONS (TAP TO CALL & QUOTE)
   -------------------------------------------------------------------------- */
.mobile-floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 14, 18, 0.98);
  border-top: 1px solid var(--border-dark);
  backdrop-filter: blur(10px);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 999;
}

@media (min-width: 768px) {
  .mobile-floating-bar {
    display: none;
  }
}

.mobile-floating-bar .btn {
  flex: 1;
  padding: 0.7rem 0.5rem;
  font-size: 0.85rem;
}
