/*
Theme Name: Lord Mechanical LTD
Theme URI: https://lordmechanical.ca
Description: Premium plumbing, heating and drainage website
Author: Lord Mechanical LTD
Version: 2.0.0
License: Proprietary
*/

/* ============================================================
   1. CSS CUSTOM PROPERTIES (BRAND TOKENS)
   ============================================================ */
:root {
  /* ---- Brand Colors ---- */
  --gold:             #D4A745;
  --gold-light:       #E8C76B;
  --gold-dark:        #B8922F;
  --gold-subtle:      rgba(212, 167, 69, 0.12);
  --gold-glow:        rgba(212, 167, 69, 0.35);

  --dark:             #1A1A2E;
  --dark-light:       #222240;
  --dark-card:        #252545;
  --dark-surface:     #2A2A4A;
  --dark-border:      rgba(255,255,255,0.06);

  --charcoal:         #2D2D2D;
  --charcoal-light:   #3A3A3A;

  --cream:            #FAF6EE;
  --cream-dark:       #F0EAD6;
  --off-white:        #F5F5F5;

  --white:            #FFFFFF;
  --white-90:         rgba(255,255,255,0.9);
  --white-70:         rgba(255,255,255,0.7);
  --white-50:         rgba(255,255,255,0.5);
  --white-20:         rgba(255,255,255,0.2);
  --white-10:         rgba(255,255,255,0.1);
  --white-05:         rgba(255,255,255,0.05);

  --black:            #000000;
  --black-50:         rgba(0,0,0,0.5);
  --black-30:         rgba(0,0,0,0.3);
  --black-10:         rgba(0,0,0,0.1);

  /* Accent Colors */
  --blue:             #4A90D9;
  --blue-light:       #6AAEEF;
  --blue-dark:        #2E6BB5;

  --orange:           #E87C3E;
  --orange-light:     #F0A060;
  --orange-glow:      rgba(232, 124, 62, 0.3);

  --green:            #4CAF50;
  --green-light:      #81C784;
  --red:              #E74C3C;
  --red-light:        #FF6B6B;

  /* ---- Typography ---- */
  --font-heading:     'Montserrat', sans-serif;
  --font-body:        'Inter', sans-serif;
  --font-accent:      'Playfair Display', serif;

  --fw-regular:       400;
  --fw-medium:        500;
  --fw-semibold:      600;
  --fw-bold:          700;
  --fw-extrabold:     800;

  --fs-xs:            0.75rem;
  --fs-sm:            0.875rem;
  --fs-base:          1rem;
  --fs-md:            1.125rem;
  --fs-lg:            1.25rem;
  --fs-xl:            1.5rem;

  /* ---- Spacing ---- */
  --space-xxs:        0.25rem;
  --space-xs:         0.5rem;
  --space-sm:         0.75rem;
  --space-md:         1rem;
  --space-lg:         1.5rem;
  --space-xl:         2rem;
  --space-2xl:        3rem;
  --space-3xl:        4rem;
  --space-4xl:        6rem;
  --space-5xl:        8rem;

  /* ---- Shadows ---- */
  --shadow-sm:        0 1px 3px rgba(0,0,0,0.12);
  --shadow-md:        0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg:        0 8px 30px rgba(0,0,0,0.2);
  --shadow-xl:        0 16px 50px rgba(0,0,0,0.25);
  --shadow-gold:      0 4px 20px rgba(212,167,69,0.3);
  --shadow-gold-lg:   0 8px 35px rgba(212,167,69,0.4);
  --shadow-inset:     inset 0 2px 6px rgba(0,0,0,0.1);

  /* ---- Border Radius ---- */
  --radius-sm:        4px;
  --radius-md:        8px;
  --radius-lg:        12px;
  --radius-xl:        16px;
  --radius-2xl:       24px;
  --radius-pill:      50px;
  --radius-round:     50%;

  /* ---- Transitions ---- */
  --ease-out:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast:  0.2s var(--ease-out);
  --transition-base:  0.3s var(--ease-out);
  --transition-slow:  0.5s var(--ease-out);
  --transition-xslow: 0.8s var(--ease-out);

  /* ---- Layout ---- */
  --container-max:    1200px;
  --container-wide:   1400px;
  --container-narrow: 800px;
  --header-height:    80px;
  --header-shrink:    64px;
  --top-bar-height:   40px;

  /* ---- Z-Index ---- */
  --z-behind:         -1;
  --z-base:           1;
  --z-dropdown:       100;
  --z-sticky:         200;
  --z-header:         500;
  --z-overlay:        900;
  --z-modal:          1000;
  --z-toast:          1100;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--top-bar-height) + 20px);
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--white-90);
  background-color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--gold-light); }

/* Accessible link underlines for body text */
p a, .accordion__answer a, .article a, .footer__about a:not(.site-logo):not(.footer__social-link) {
  text-decoration: underline;
  text-underline-offset: 3px;
}
p a:hover, .accordion__answer a:hover, .article a:hover {
  text-decoration-color: var(--gold-light);
}

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button { cursor: pointer; }

::selection {
  background: var(--gold);
  color: var(--dark);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: var(--fw-extrabold); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1rem, 2vw, 1.25rem); }
h6 { font-size: clamp(0.9rem, 1.5vw, 1.1rem); }

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--white-50); }
.text-dark  { color: var(--dark); }

.text-center { text-align: center; }
.text-center .btn-group { justify-content: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.gold { color: var(--gold); }

p {
  margin-bottom: 1rem;
  color: var(--white-70);
}

.lead {
  font-size: var(--fs-lg);
  line-height: 1.8;
  color: var(--white-70);
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--white-50);
  max-width: 650px;
  margin: 0 auto var(--space-2xl);
}

/* Shimmer gold text */
.shimmer-text {
  background: linear-gradient(
    120deg,
    var(--gold-dark) 0%,
    var(--gold-light) 30%,
    var(--gold) 50%,
    var(--gold-light) 70%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerFlow 4s linear infinite;
}

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.section--dark {
  background: var(--dark);
}

.section--darker {
  background: var(--dark-light);
}

.section--cream {
  background: var(--cream);
}
.section--cream h1,.section--cream h2,.section--cream h3,.section--cream h4,.section--cream h5,.section--cream h6 {
  color: var(--dark);
}
.section--cream p,.section--cream .lead { color: var(--charcoal); }
.section--cream .section-subtitle { color: var(--charcoal-light); }
.section--cream .eyebrow { color: var(--gold-dark); }

/* Cards inside cream sections keep their dark-bg / light-text scheme */
.section--cream .card { background: var(--dark-card) !important; border-color: var(--dark-border) !important; }
.section--cream .card h1,.section--cream .card h2,.section--cream .card h3,
.section--cream .card h4,.section--cream .card h5,.section--cream .card h6 { color: var(--white) !important; }
.section--cream .card p,
.section--cream .card .card__text,
.section--cream .card .lead { color: var(--white-70) !important; }
.section--cream .card .card__title { color: var(--white) !important; }
.section--cream .card .card__link { color: var(--gold) !important; }
.section--cream .card .card__icon { color: var(--gold) !important; }
.section--cream .card:hover .card__icon { color: var(--white) !important; }

/* Review cards inside cream sections */
.section--cream .review-card__text { color: var(--white-70); }
.section--cream .review-card__name { color: var(--white); }
.section--cream .review-card__source { color: var(--white-50); }
.section--cream .review-card__author strong { color: var(--white); }
.section--cream .review-card__author span { color: var(--white-50); }

/* Accordion inside cream sections */
.section--cream .accordion__header { background: var(--dark-card); }
.section--cream .accordion__header:hover { background: var(--dark-surface); }
.section--cream .accordion__question { color: var(--white); }
.section--cream .accordion__answer { color: var(--white-70); }
.section--cream .accordion__item { border-color: var(--dark-border); }

/* Trust badges inside cream sections */
.section--cream .trust-badge { background: linear-gradient(135deg, rgba(212,167,69,0.12) 0%, rgba(212,167,69,0.05) 100%); border-color: rgba(212,167,69,0.3); }
.section--cream .trust-badge span { color: var(--white); }

/* Area cards inside cream sections */
.section--cream .area-card { background: var(--dark-card); border-color: var(--dark-border); }
.section--cream .area-card .card__title { color: var(--white); }
.section--cream .area-card .card__text { color: var(--white-50); }

/* Service cards inside cream sections */
.section--cream .service-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-xl); }
.section--cream .service-card .card__title { color: var(--white); }
.section--cream .service-card .card__text { color: var(--white-50); }
.section--cream .service-card .card__link { color: var(--gold); }
.section--cream .service-card .card__icon { color: var(--gold); }

/* Portfolio cards inside cream sections */
.section--cream .portfolio-card { background: var(--dark-card); border: 1px solid var(--dark-border); }
.section--cream .portfolio-card .card__title { color: var(--white); }
.section--cream .portfolio-card .card__text { color: var(--white-50); }

/* Image placeholders inside cream sections */
.section--cream .img-placeholder { background: var(--dark-card); border-color: var(--dark-border); }
.section--cream .placeholder-label { color: var(--white-50); }
.section--cream .placeholder-size { color: var(--white-20); }

/* Blog cards inside cream sections */
.section--cream .blog-card { background: var(--dark-card); border: 1px solid var(--dark-border); }
.section--cream .blog-card__body { color: var(--white-70); }
.section--cream .blog-card__title { color: var(--white); }
.section--cream .blog-card__date { color: var(--white-50); }
.section--cream .blog-card__excerpt { color: var(--white-50); }

/* Links inside cream sections (non-card) */
.section--cream a:not(.btn):not(.card__link):not(.service-card):not(.area-card):not(.nav__link) { color: var(--gold-dark); }
.section--cream a:not(.btn):not(.card__link):not(.service-card):not(.area-card):not(.nav__link):hover { color: var(--gold); }

/* Lists inside cream sections (non-card) */
.section--cream > .container > div > ul li,
.section--cream > .container > div > ol li { color: var(--charcoal); }
.section--cream strong { color: var(--dark); }

.section--gold-gradient {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, rgba(212,167,69,0.08) 100%);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(207,175,112,0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--dark);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white-20);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--fs-xs);
}

.btn-lg {
  padding: 18px 42px;
  font-size: var(--fs-base);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-round);
}

.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   6. TOP BAR
   ============================================================ */
.top-bar {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--dark);
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  position: relative;
  z-index: var(--z-header);
  overflow: hidden;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.top-bar__left span {
  display: flex;
  align-items: center;
  gap: var(--space-xxs);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.7rem;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.top-bar__phone {
  display: flex;
  align-items: center;
  gap: var(--space-xxs);
  color: var(--dark);
  font-weight: var(--fw-bold);
  text-decoration: none;
}

.top-bar__badge {
  background: var(--dark);
  color: var(--gold);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================================
   7. HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: var(--z-header);
  transition: all var(--transition-base);
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
}

.header.scrolled {
  height: var(--header-shrink);
  background: rgba(26, 26, 46, 0.95);
  box-shadow: var(--shadow-lg);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  height: 44px;
  width: auto;
  transition: all var(--transition-base);
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.header.scrolled .logo-icon {
  height: 36px;
}

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

.logo-brand {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-brand .gold {
  color: var(--gold);
}

.logo-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.65rem;
  color: var(--white-50);
  letter-spacing: 0.5px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  color: var(--white-70);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 60%;
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
  z-index: var(--z-dropdown);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: var(--space-xs) var(--space-md);
  color: var(--white-70);
  font-size: var(--fs-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.nav__dropdown-link:hover {
  background: var(--gold-subtle);
  color: var(--gold);
}

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__phone {
  display: flex;
  align-items: center;
  gap: var(--space-xxs);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  text-decoration: none;
  white-space: nowrap;
}

.header__phone svg {
  width: 18px;
  height: 18px;
  animation: ringShake 3s ease-in-out infinite;
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: calc(var(--z-overlay) + 1);
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

.hamburger__line {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(30px);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

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

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  text-decoration: none;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-nav.open .mobile-nav__link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav__link:hover {
  color: var(--gold);
  background: var(--gold-subtle);
}

/* Staggered reveal for mobile links */
.mobile-nav__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav__link:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav__link:nth-child(7) { transition-delay: 0.35s; }
.mobile-nav__link:nth-child(8) { transition-delay: 0.4s; }

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + var(--top-bar-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
}

/* Animated radial glows */
.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,167,69,0.08) 0%, transparent 70%);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: hero-glow-pulse 6s ease-in-out infinite;
  pointer-events: none;
}
.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,167,69,0.05) 0%, transparent 70%);
  top: 30%;
  animation-delay: -3s;
  animation-duration: 8s;
}
@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.7) 0%, rgba(26,26,46,0.9) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Logo with animated ring */
.hero__logo {
  margin-bottom: var(--space-lg);
}
.hero__logo-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,167,69,0.1) 0%, rgba(212,167,69,0.03) 100%);
  border: 2px solid transparent;
  position: relative;
  animation: hero-logo-float 4s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero__logo-ring::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(212,167,69,0.3);
  animation: hero-ring-spin 8s linear infinite;
}
.hero__logo-ring::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: rgba(212,167,69,0.2);
  border-left-color: rgba(212,167,69,0.1);
  animation: hero-ring-spin 12s linear infinite reverse;
}
.hero__logo-ring img {
  border-radius: 50%;
  transition: transform 0.4s ease;
}
.hero__logo-ring:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(212,167,69,0.25);
}
.hero__logo-ring:hover img {
  transform: scale(1.08);
}
@keyframes hero-ring-spin {
  to { transform: rotate(360deg); }
}
@keyframes hero-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: linear-gradient(135deg, rgba(212,167,69,0.12) 0%, rgba(212,167,69,0.04) 100%);
  border: 1px solid rgba(212,167,69,0.3);
  color: var(--gold);
  padding: 8px var(--space-lg);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
  transition: all 0.4s ease;
  cursor: default;
  backdrop-filter: blur(8px);
}
.hero__badge:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,167,69,0.2) 0%, rgba(212,167,69,0.08) 100%);
  box-shadow: 0 0 25px rgba(212,167,69,0.15), inset 0 0 15px rgba(212,167,69,0.05);
  transform: translateY(-2px);
}
.hero__badge svg {
  animation: hero-badge-pulse 2s ease-in-out infinite;
}
@keyframes hero-badge-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; filter: drop-shadow(0 0 4px var(--gold)); }
}

/* Title */
.hero__title {
  margin-bottom: var(--space-sm);
}

/* Subtitle — single line, no wrapping */
.hero__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: var(--white-50);
  margin-bottom: var(--space-xl);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: color 0.3s ease;
}
.hero__subtitle:hover {
  color: rgba(255,255,255,0.8);
}

/* Buttons — tighter spacing */
.hero__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

/* Call button — gold glow on hover */
.hero__btn-call {
  position: relative;
  overflow: hidden;
}
.hero__btn-call::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: width 0.5s ease, height 0.5s ease, top 0.5s ease, left 0.5s ease;
}
.hero__btn-call:hover::after {
  width: 300px;
  height: 300px;
  top: calc(50% - 150px);
  left: calc(50% - 150px);
}
.hero__btn-call:hover {
  box-shadow: 0 8px 30px rgba(212,167,69,0.4), 0 0 60px rgba(212,167,69,0.15);
  transform: translateY(-3px) scale(1.02);
}
.hero__btn-call:active {
  transform: translateY(0) scale(0.98);
}

/* Book button — border glow on hover */
.hero__btn-book {
  position: relative;
}
.hero__btn-book:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212,167,69,0.15), inset 0 0 15px rgba(212,167,69,0.05);
  transform: translateY(-3px) scale(1.02);
  background: rgba(212,167,69,0.05);
}
.hero__btn-book:active {
  transform: translateY(0) scale(0.98);
}

/* SVG icon hover animation inside buttons */
.hero__btn-call:hover svg,
.hero__btn-book:hover svg {
  animation: hero-btn-icon-ring 0.6s ease;
}
@keyframes hero-btn-icon-ring {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  50% { transform: rotate(15deg); }
  75% { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}

/* Trust section — tighter */
.hero__trust {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--white-50);
  font-size: var(--fs-sm);
}
.hero__trust-item svg { color: var(--gold); width: 20px; height: 20px; }

/* Page Hero (shorter for inner pages) */
.page-hero {
  padding: calc(var(--header-height) + var(--top-bar-height) + var(--space-3xl)) 0 var(--space-3xl);
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero__content {
  position: relative;
  z-index: 10;
}

/* ============================================================
   9. BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  justify-content: center;
}

.breadcrumbs a {
  color: var(--white-50);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumbs a:hover { color: var(--gold); }

.breadcrumbs__sep {
  color: var(--white-20);
  font-size: var(--fs-sm);
}

.breadcrumbs__current {
  color: var(--gold);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

/* ============================================================
   10. CARDS
   ============================================================ */
.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: transform 0.5s cubic-bezier(.22,.68,0,1.2), box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Gold border glow — animated sweep on hover */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(
    90deg,
    rgba(207,175,112,0.05),
    rgba(207,175,112,0.5),
    rgba(184,143,60,0.6),
    rgba(207,175,112,0.5),
    rgba(207,175,112,0.05)
  );
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  filter: blur(0.5px);
}

/* Interior gold shine sweep */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(207,175,112,0.04) 35%,
    rgba(207,175,112,0.10) 50%,
    rgba(207,175,112,0.04) 65%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 5;
}

.card:hover {
  transform: perspective(1200px) rotateY(-4deg) translateY(-8px) scale(1.02);
  box-shadow:
    0 8px 40px rgba(207,175,112,0.12),
    0 20px 60px rgba(0,0,0,0.35);
  border-color: rgba(207,175,112,0.3);
}
.card:hover::before {
  opacity: 1;
  animation: borderShineGold 2s ease forwards;
}
.card:hover::after {
  animation: cardShine 0.8s 0.1s ease-out forwards;
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
  color: var(--gold);
}

.card:hover .card__icon {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.card__text {
  color: var(--white-50);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xxs);
  color: var(--gold);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: gap var(--transition-fast);
}
.card__link:hover { gap: var(--space-sm); }

/* Service Card variant */
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  transition: transform 0.5s cubic-bezier(.22,.68,0,1.2), box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
  transform-style: preserve-3d;
}

/* Gold border glow */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(
    90deg,
    rgba(207,175,112,0.05),
    rgba(207,175,112,0.5),
    rgba(184,143,60,0.6),
    rgba(207,175,112,0.5),
    rgba(207,175,112,0.05)
  );
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  filter: blur(0.5px);
}

/* Interior shine sweep */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(207,175,112,0.04) 35%,
    rgba(207,175,112,0.10) 50%,
    rgba(207,175,112,0.04) 65%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 5;
}

.service-card:hover {
  transform: perspective(1200px) rotateY(-5deg) translateY(-10px) scale(1.03);
  box-shadow:
    0 8px 40px rgba(207,175,112,0.15),
    0 20px 60px rgba(0,0,0,0.35);
  border-color: rgba(207,175,112,0.3);
  color: inherit;
}
.service-card:hover::before {
  opacity: 1;
  animation: borderShineGold 2s ease forwards;
}
.service-card:hover::after {
  animation: cardShine 0.8s 0.1s ease-out forwards;
}

.service-card .card__icon {
  margin-left: auto;
  margin-right: auto;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
}

.service-card:hover .card__icon {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

/* Portfolio Card */
.portfolio-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: transform 0.5s cubic-bezier(.22,.68,0,1.2), box-shadow 0.4s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
}
.portfolio-card:hover {
  transform: perspective(1200px) rotateY(-3deg) translateY(-8px) scale(1.02);
  box-shadow:
    0 8px 40px rgba(207,175,112,0.12),
    0 20px 60px rgba(0,0,0,0.35);
  border-color: rgba(207,175,112,0.3);
}

.portfolio-card__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-card__img {
  transform: scale(1.08);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,26,46,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-card__overlay { opacity: 1; }

.portfolio-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.portfolio-card:hover img {
  transform: scale(1.08);
}
.portfolio-card .card__text {
  padding: var(--space-lg);
}

.portfolio-card__category {
  font-size: var(--fs-xs);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-xxs);
}

.portfolio-card__title {
  font-size: var(--fs-lg);
  color: var(--white);
}

/* Review Card */
.review-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: transform 0.5s cubic-bezier(.22,.68,0,1.2), box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Gold border glow */
.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(
    90deg,
    rgba(207,175,112,0.05),
    rgba(207,175,112,0.5),
    rgba(184,143,60,0.6),
    rgba(207,175,112,0.5),
    rgba(207,175,112,0.05)
  );
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  filter: blur(0.5px);
}

/* Interior shine sweep */
.review-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(207,175,112,0.04) 35%,
    rgba(207,175,112,0.10) 50%,
    rgba(207,175,112,0.04) 65%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 5;
}

.review-card:hover {
  transform: perspective(1200px) rotateY(4deg) translateY(-8px) scale(1.02);
  box-shadow:
    0 8px 40px rgba(207,175,112,0.12),
    0 20px 60px rgba(0,0,0,0.35);
  border-color: rgba(207,175,112,0.3);
}
.review-card:hover::before {
  opacity: 1;
  animation: borderShineGold 2s ease forwards;
}
.review-card:hover::after {
  animation: cardShine 0.8s 0.1s ease-out forwards;
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.review-card__star { color: var(--gold); width: 20px; height: 20px; }

.review-card__text {
  font-style: italic;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-size: var(--fs-sm);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-round);
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  color: var(--gold);
}

.review-card__name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--white);
}

.review-card__source {
  font-size: var(--fs-xs);
  color: var(--white-50);
}

/* Blog Card */
.blog-card {
  padding: 0;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: var(--space-lg);
}

.blog-card__category {
  display: inline-block;
  background: var(--gold-subtle);
  color: var(--gold);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
  color: var(--white);
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--white-50);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--white-50);
}

/* ============================================================
   11. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark-light);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: var(--space-2xl) 0;
}

.stats-bar .container,
.container .stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat {
  position: relative;
  transition: transform 0.3s ease;
}
.stat:hover {
  transform: translateY(-4px);
}
.stat:hover .stat__number {
  text-shadow: 0 0 20px rgba(207,175,112,0.4);
}

.stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--dark-border);
}
.stat:last-child::after { display: none; }

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-extrabold);
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: var(--fs-sm);
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   12. PROCESS TIMELINE
   ============================================================ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-gold);
  position: relative;
}

.process-step__number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-round);
  border: 2px solid var(--gold-glow);
  animation: pulseRing 3s ease-in-out infinite;
}

.process-step__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
  color: var(--white);
}

.process-step__text {
  font-size: var(--fs-sm);
  color: var(--white-50);
}

/* ============================================================
   13. FAQ / ACCORDION
   ============================================================ */
.accordion {
  max-width: 100%;
  margin: 0 auto;
}

.accordion__item {
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2), box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
}

.accordion__item:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 30px rgba(207,175,112,0.08), 0 12px 40px rgba(0,0,0,0.2);
  border-color: rgba(207,175,112,0.2);
}

.accordion__item.active {
  border-color: rgba(207,175,112,0.35);
  box-shadow: 0 4px 25px rgba(207,175,112,0.10);
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  background: var(--dark-card);
  border: none;
  text-align: left;
  font-family: inherit;
  transition: background var(--transition-fast);
}

.accordion__header:hover {
  background: var(--dark-surface);
}

.accordion__question {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  color: var(--white);
  flex: 1;
  padding-right: var(--space-md);
}

.accordion__icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.accordion__item.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion__answer {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--white-70);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

/* ============================================================
   14. FORMS
   ============================================================ */
.form-group {
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 10;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--white-70);
  margin-bottom: var(--space-xs);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: var(--fs-base);
  transition: all var(--transition-fast);
  position: relative;
  z-index: 10;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle);
  outline: 2px solid transparent;
}

.form-control::placeholder {
  color: var(--white-20);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A745' fill='none' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-error {
  color: var(--red-light);
  font-size: var(--fs-xs);
  margin-top: var(--space-xxs);
}

.form-success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid var(--green);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  color: var(--green-light);
  text-align: center;
}

/* Honeypot */
.form-honey { display: none !important; }

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer {
  background: var(--dark-light);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark)) 1;
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__about p {
  color: var(--white-50);
  font-size: var(--fs-sm);
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--gold);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: var(--white-50);
  font-size: var(--fs-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: var(--space-xs);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-50);
  transition: all var(--transition-base);
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid var(--dark-border);
  padding: var(--space-lg) 0;
  text-align: center;
  color: var(--white-50);
  font-size: var(--fs-xs);
}

/* ============================================================
   16. STICKY CALL BAR (Mobile)
   ============================================================ */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 12px var(--space-lg);
  z-index: var(--z-sticky);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  text-decoration: none;
  letter-spacing: 1px;
}

.sticky-call svg {
  width: 22px;
  height: 22px;
  animation: ringShake 2s ease-in-out infinite;
}

/* ============================================================
   17. CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 50%, rgba(212,167,69,0.05) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__phone {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin: var(--space-lg) 0 var(--space-xl);
  transition: all var(--transition-base);
}

.cta-section__phone:hover {
  text-shadow: 0 0 30px var(--gold-glow);
  transform: scale(1.03);
}

/* ============================================================
   18. GOOGLE MAP
   ============================================================ */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ============================================================
   19. IMAGE PLACEHOLDERS
   ============================================================ */
.img-placeholder {
  background: var(--dark-card);
  border: 2px dashed var(--dark-border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: var(--space-2xl);
}

.placeholder-inner {
  text-align: center;
}

.placeholder-inner svg {
  width: 48px;
  height: 48px;
  color: var(--white-20);
  margin-bottom: var(--space-md);
}

.placeholder-label {
  font-size: var(--fs-sm);
  color: var(--white-50);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-xs);
}

.placeholder-size {
  font-size: var(--fs-xs);
  color: var(--white-20);
}

/* ============================================================
   20. GOLDEN BUBBLES / PARTICLES
   ============================================================ */
.bubbles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(207,175,112,0.15) 0%,
    rgba(207,175,112,0.05) 40%,
    transparent 70%
  );
  border: 1.5px solid rgba(207,175,112,0.18);
  box-shadow:
    inset -4px -4px 10px rgba(207,175,112,0.06),
    inset 2px 2px 6px rgba(255,255,255,0.08),
    0 0 12px rgba(207,175,112,0.04);
  opacity: 1;
  animation: floatBubble linear infinite, bubbleWobble 6s ease-in-out infinite;
  will-change: transform;
}

/* Bath bubble gloss highlight */
.bubble::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 18%;
  width: 35%;
  height: 20%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.25) 0%,
    transparent 70%
  );
  transform: rotate(-30deg);
}

.bubble--sm { width: 14px; height: 14px; border-width: 1px; }
.bubble--sm::before { display: none; }
.bubble--md { width: 36px; height: 36px; }
.bubble--lg { width: 80px; height: 80px; }
.bubble--xl { width: 140px; height: 140px; border-width: 1px; opacity: 0.7; }
.bubble--2xl { width: 200px; height: 200px; border-width: 1px; opacity: 0.5; }

/* Spark variants */
.bubble--spark {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border: none;
  box-shadow: 0 0 6px rgba(207,175,112,0.4);
  opacity: 0.3;
  animation: sparkle 4s ease-in-out infinite;
}
.bubble--spark::before { display: none; }

/* ============================================================
   21. PARTNER LOGOS
   ============================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-xl);
  align-items: center;
}

.partner-logo {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2), box-shadow 0.4s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
}

.partner-logo:hover {
  border-color: rgba(207,175,112,0.3);
  box-shadow: 0 8px 30px rgba(207,175,112,0.12), 0 15px 40px rgba(0,0,0,0.25);
  transform: perspective(1000px) rotateY(-3deg) translateY(-6px);
}

.partner-logo img {
  max-height: 50px;
  filter: grayscale(1) brightness(0.6);
  transition: filter var(--transition-base);
}

.partner-logo:hover img {
  filter: grayscale(0) brightness(1);
}

/* ============================================================
   22. BLOG ARTICLE
   ============================================================ */
.article {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.article h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--dark-border);
}

.article h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.article p {
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.article ul, .article ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.article li {
  margin-bottom: var(--space-sm);
  color: var(--white-70);
  list-style: disc;
}

.article ol li { list-style: decimal; }

.article img {
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.article blockquote {
  border-left: 3px solid var(--gold);
  padding: var(--space-md) var(--space-xl);
  margin: var(--space-xl) 0;
  background: var(--dark-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--white-70);
}

/* TOC */
.article-toc {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.article-toc__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.article-toc ol {
  padding-left: var(--space-lg);
}

.article-toc li {
  margin-bottom: var(--space-xs);
  list-style: decimal;
}

.article-toc a {
  color: var(--white-50);
  font-size: var(--fs-sm);
  text-decoration: none;
}
.article-toc a:hover { color: var(--gold); }

/* Author Box */
.author-box {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.author-box__avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-round);
  background: var(--gold-subtle);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-box__avatar img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-round);
  object-fit: cover;
}

.author-box__name {
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--space-xxs);
}

.author-box__bio {
  font-size: var(--fs-sm);
  color: var(--white-50);
}

/* ============================================================
   23. NEIGHBORHOOD / CITY LIST
   ============================================================ */
.area-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: transform 0.5s cubic-bezier(.22,.68,0,1.2), box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Gold border glow */
.area-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(
    90deg,
    rgba(207,175,112,0.05),
    rgba(207,175,112,0.5),
    rgba(184,143,60,0.6),
    rgba(207,175,112,0.5),
    rgba(207,175,112,0.05)
  );
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  filter: blur(0.5px);
}

/* Interior shine sweep */
.area-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(207,175,112,0.04) 35%,
    rgba(207,175,112,0.10) 50%,
    rgba(207,175,112,0.04) 65%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 5;
}

.area-card:hover {
  border-color: rgba(207,175,112,0.3);
  transform: perspective(1200px) rotateY(-4deg) translateY(-8px) scale(1.03);
  box-shadow:
    0 8px 40px rgba(207,175,112,0.12),
    0 20px 60px rgba(0,0,0,0.35);
}
.area-card:hover::before {
  opacity: 1;
  animation: borderShineGold 2s ease forwards;
}
.area-card:hover::after {
  animation: cardShine 0.8s 0.1s ease-out forwards;
}

.area-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  white-space: nowrap;
}

.area-card__title svg {
  color: var(--gold);
  width: 24px;
  height: 24px;
}

.area-card__neighborhoods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}

.area-card__link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--white-50);
  font-size: var(--fs-sm);
  text-decoration: none;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.area-card__link::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--radius-round);
  background: var(--gold);
  flex-shrink: 0;
}

.area-card__link:hover {
  color: var(--gold);
  background: var(--gold-subtle);
  padding-left: var(--space-sm);
}

/* ============================================================
   24. FILTER BUTTONS (Portfolio / Blog)
   ============================================================ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-xs) var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--white-50);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: transparent;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ============================================================
   25. TRUST BADGES
   ============================================================ */
.trust-badges {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  padding: var(--space-xl) 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, rgba(212,167,69,0.08) 0%, rgba(212,167,69,0.03) 100%);
  border: 1px solid rgba(212,167,69,0.25);
  border-radius: 100px;
  padding: var(--space-sm) var(--space-lg);
  flex: 0 0 auto;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  border-color: rgba(212,167,69,0.5);
  background: linear-gradient(135deg, rgba(212,167,69,0.14) 0%, rgba(212,167,69,0.06) 100%);
  box-shadow: 0 0 20px rgba(212,167,69,0.1);
  transform: translateY(-2px);
}

.trust-badge svg {
  color: var(--gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.trust-badge span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--white);
  white-space: nowrap;
}

.trust-badge__icon {
  color: var(--gold);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.trust-badge__text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--white);
  white-space: nowrap;
}

/* ============================================================
   26. 404 PAGE
   ============================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.error-page__text {
  font-size: var(--fs-xl);
  color: var(--white-50);
  margin-bottom: var(--space-2xl);
}

/* ============================================================
   27. ANIMATION THEMES
   ============================================================ */

/* --- Gold Shimmer Theme (Core pages) --- */
@keyframes shimmerFlow {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.6; }
  50%  { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

@keyframes floatBubble {
  0%   { transform: translateY(100vh) rotate(0deg) scale(0.6); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-100px) rotate(180deg) scale(1); opacity: 0; }
}

@keyframes bubbleWobble {
  0%, 100% { border-radius: 50%; }
  25%  { border-radius: 48% 52% 51% 49% / 50% 48% 52% 50%; }
  50%  { border-radius: 52% 48% 49% 51% / 48% 52% 50% 50%; }
  75%  { border-radius: 49% 51% 50% 50% / 52% 49% 51% 48%; }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.1; transform: scale(0.8); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

@keyframes cardShine {
  0%   { left: -80%; }
  100% { left: 130%; }
}

@keyframes borderShineGold {
  0%   { background-position: 100% 0; }
  100% { background-position: -200% 0; }
}

@keyframes tiltCard {
  0%   { transform: perspective(1200px) rotateY(0deg); }
  40%  { transform: perspective(1200px) rotateY(-6deg); }
  100% { transform: perspective(1200px) rotateY(0deg); }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(207,175,112,0); border-color: var(--dark-border); }
  50%      { box-shadow: 0 0 20px rgba(207,175,112,0.08); border-color: rgba(207,175,112,0.15); }
}

@keyframes ringShake {
  0%, 100% { transform: rotate(0deg); }
  10%      { transform: rotate(14deg); }
  20%      { transform: rotate(-10deg); }
  30%      { transform: rotate(8deg); }
  40%      { transform: rotate(-6deg); }
  50%      { transform: rotate(0deg); }
}

/* --- Scroll Reveal (all pages) --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInBottom {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Category-specific reveal variants */
.reveal--left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s var(--ease-out);
}
.reveal--left.visible { opacity: 1; transform: translateX(0); }

.reveal--right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s var(--ease-out);
}
.reveal--right.visible { opacity: 1; transform: translateX(0); }

.reveal--scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s var(--ease-out);
}
.reveal--scale.visible { opacity: 1; transform: scale(1); }

.reveal--drop {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s var(--ease-out);
}
.reveal--drop.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Water Flow Theme (Plumbing pages) --- */
@keyframes waterRipple {
  0%   { transform: scale(1); opacity: 0.3; }
  50%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes waveBorder {
  0%   { d: path("M0,20 Q50,0 100,20 Q150,40 200,20 L200,60 L0,60 Z"); }
  50%  { d: path("M0,20 Q50,40 100,20 Q150,0 200,20 L200,60 L0,60 Z"); }
  100% { d: path("M0,20 Q50,0 100,20 Q150,40 200,20 L200,60 L0,60 Z"); }
}

@keyframes dropletBounce {
  0%, 100% { transform: translateY(0); }
  40%      { transform: translateY(-8px); }
  60%      { transform: translateY(-4px); }
}

.plumbing-theme .card__icon { animation: dropletBounce 3s ease-in-out infinite; }

.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  fill: var(--dark-light);
}

/* Ripple effect */
.ripple-effect {
  position: relative;
  overflow: hidden;
}

.ripple-effect::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold-subtle);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

/* --- Warmth Glow Theme (Heating pages) --- */
@keyframes flameFlicker {
  0%, 100% { transform: scaleY(1) rotate(0deg); opacity: 1; }
  25%      { transform: scaleY(1.1) rotate(-1deg); opacity: 0.9; }
  50%      { transform: scaleY(0.95) rotate(1deg); opacity: 1; }
  75%      { transform: scaleY(1.05) rotate(-0.5deg); opacity: 0.95; }
}

@keyframes warmPulse {
  0%, 100% { box-shadow: 0 0 15px var(--orange-glow); }
  50%      { box-shadow: 0 0 40px var(--orange-glow), 0 0 60px rgba(232, 124, 62, 0.15); }
}

.heating-theme .card__icon {
  animation: flameFlicker 4s ease-in-out infinite;
}

.heating-theme .card:hover {
  box-shadow: 0 8px 40px var(--orange-glow);
}

/* Warm bubble variant */
.bubble--warm {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(232,124,62,0.15) 0%,
    rgba(232,124,62,0.05) 40%,
    transparent 70%
  );
  border-color: rgba(232,124,62,0.2);
  box-shadow:
    inset -4px -4px 10px rgba(232,124,62,0.06),
    inset 2px 2px 6px rgba(255,255,255,0.06),
    0 0 12px rgba(232,124,62,0.04);
}

/* --- Earth/Ground Theme (Drainage pages) --- */
@keyframes groundRise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.drainage-theme .reveal {
  transform: translateY(60px);
}

.drainage-theme .card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Earth texture overlay */
.earth-texture {
  position: relative;
}

.earth-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* --- Map Pin Theme (Location pages) --- */
@keyframes pinDrop {
  0%   { transform: translateY(-100px); opacity: 0; }
  60%  { transform: translateY(5px); opacity: 1; }
  80%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

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

.location-theme .page-hero h1 svg {
  animation: pinDrop 1s var(--ease-bounce) forwards;
}

/* --- Reading Theme (Blog pages) --- */
.blog-theme .reveal {
  transition-duration: 1s;
}

.blog-theme .blog-card__title {
  position: relative;
}

.blog-theme .blog-card__title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-slow);
}

.blog-theme .blog-card:hover .blog-card__title::after {
  width: 100%;
}

/* ============================================================
   28. COUNTER ANIMATION
   ============================================================ */
.counter[data-target] {
  /* JS handles the counting */
}

/* ============================================================
   29. PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-2xl);
}

.pagination__link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  color: var(--white-50);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.pagination__link:hover,
.pagination__link.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ============================================================
   30. UTILITIES
   ============================================================ */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mt-4 { margin-top: var(--space-3xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mb-4 { margin-bottom: var(--space-3xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.py-1 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-2 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-3 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

.gap-1 { gap: var(--space-md); }
.gap-2 { gap: var(--space-xl); }
.gap-3 { gap: var(--space-2xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }
.d-block { display: block !important; }

/* ============================================================
   31. RESPONSIVE DESIGN
   ============================================================ */

/* ---- 1200px: Desktop ---- */
@media (max-width: 1200px) {
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---- 992px: Tablet Landscape ---- */
@media (max-width: 992px) {
  :root { font-size: 15.2px; }

  .nav, .header__cta .btn { display: none; }
  .hamburger { display: flex; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline::before { display: none; }

  .stats-bar .container, .container .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat::after { display: none; }

  .footer__grid { grid-template-columns: repeat(2, 1fr); }

  .partners-grid { grid-template-columns: repeat(3, 1fr); }

  .area-card__neighborhoods { grid-template-columns: 1fr; }
}

/* ---- 768px: Tablet Portrait ---- */
@media (max-width: 768px) {
  :root { font-size: 14.4px; }

  .section { padding: var(--space-3xl) 0; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .hero { min-height: auto; padding-top: calc(var(--header-height) + var(--top-bar-height) + var(--space-xl)); }
  .hero__glow { width: 300px; height: 300px; }
  .hero__glow--2 { width: 200px; height: 200px; }
  .hero__logo-ring { width: 130px; height: 130px; }
  .hero__logo-ring img { width: 85px; height: 85px; }
  .hero__subtitle { white-space: normal; font-size: clamp(0.95rem, 3.5vw, 1.15rem); }
  .hero__trust { gap: var(--space-sm); }
  .hero__btn-call, .hero__btn-book { width: 100%; max-width: 320px; justify-content: center; }
  /* Mobile tap animations */
  .hero__btn-call:active { box-shadow: 0 4px 20px rgba(212,167,69,0.5); transform: scale(0.96); }
  .hero__btn-book:active { box-shadow: 0 0 15px rgba(212,167,69,0.2); transform: scale(0.96); }
  .trust-badge:active { transform: translateY(-1px); box-shadow: 0 0 15px rgba(212,167,69,0.15); }
  .hero__badge:active { box-shadow: 0 0 20px rgba(212,167,69,0.2); transform: translateY(-1px); }

  .top-bar__left span:not(:first-child) { display: none; }

  .sticky-call { display: block; }
  body { padding-bottom: 56px; }

  .map-container iframe { height: 300px; }

  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1fr; }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; max-width: 320px; margin: 0 auto; }

  .author-box { flex-direction: column; text-align: center; }

  /* Reduce bubbles on mobile */
  .bubble:nth-child(n+5) { display: none; }
}

/* ---- 576px: Large Phone ---- */
@media (max-width: 576px) {
  :root { font-size: 14px; }

  .container { padding: 0 var(--space-md); }

  .top-bar { font-size: 0.6rem; }
  .top-bar__badge { display: none; }

  .header { height: 60px; }
  .header.scrolled { height: 56px; }
  .logo-icon { height: 32px; }
  .logo-brand { font-size: 1rem; }
  .logo-tagline { display: none; }

  .stats-bar .container, .container .stats-bar { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

  .process-timeline { grid-template-columns: 1fr; }

  .hero__buttons { flex-direction: column; align-items: center; }
  .hero__logo-ring { width: 110px; height: 110px; }
  .hero__logo-ring img { width: 70px; height: 70px; }
  .hero__badge { font-size: 0.6rem; letter-spacing: 1px; padding: 6px var(--space-md); }

  .cta-section__phone { font-size: clamp(1.5rem, 8vw, 2.5rem); }

  .partners-grid { grid-template-columns: 1fr 1fr; }

  .filter-bar { gap: var(--space-xs); }
  .filter-btn { padding: var(--space-xs) var(--space-md); font-size: var(--fs-xs); }
}

/* ---- 375px: Small Phone ---- */
@media (max-width: 375px) {
  :root { font-size: 13.6px; }

  .container { padding: 0 12px; }
  .section { padding: var(--space-2xl) 0; }

  .card { padding: var(--space-lg); }
  .review-card { padding: var(--space-lg); }

  .map-container iframe { height: 250px; }
}

/* ---- Disable 3D on form cards ---- */
/* .card--form class for browsers that don't support :has() */
.card--form,
.card:has(form),
.card:has(.form-group) {
  transform-style: flat !important;
  transform: none !important;
  transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
  overflow: visible !important;
}
.card--form:hover,
.card:has(form):hover,
.card:has(.form-group):hover {
  transform: none !important;
  box-shadow: 0 4px 20px rgba(207,175,112,0.08) !important;
  border-color: rgba(207,175,112,0.2) !important;
}
.card--form::before,
.card--form::after,
.card:has(form)::before,
.card:has(form)::after,
.card:has(.form-group)::before,
.card:has(.form-group)::after {
  display: none !important;
}

/* Ensure form elements inside cards are always interactive */
.card form,
.card--form form {
  position: relative;
  z-index: 10;
}
.card .btn[type="submit"],
.card--form .btn[type="submit"] {
  position: relative;
  z-index: 10;
}

/* Form result messages */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.form-success {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(34,197,94,0.3);
  font-weight: var(--fw-medium);
}
.form-error {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(239,68,68,0.3);
  font-weight: var(--fw-medium);
}

/* ---- Map + Business Card Component ---- */
.map-with-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  min-height: 420px;
}
.map-with-card .map-container {
  height: 100%;
  min-height: 420px;
}
.map-with-card .map-container iframe {
  height: 100%;
  min-height: 420px;
}
.map-business-card {
  background: linear-gradient(180deg, rgba(20,20,20,1) 0%, rgba(15,15,15,1) 100%);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  border-right: 1px solid var(--dark-border);
}
.map-business-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.map-business-card__logo {
  width: 48px;
  height: 48px;
  background: rgba(207,175,112,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(207,175,112,0.2);
}
.map-business-card__name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}
.map-business-card__tagline {
  font-size: var(--fs-xs);
  color: var(--white-50);
  margin: 2px 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.map-business-card__rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.map-business-card__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}
.map-business-card__rating-text {
  font-size: var(--fs-sm);
  color: var(--white-70);
  font-weight: var(--fw-medium);
}
.map-business-card__divider {
  height: 1px;
  background: var(--dark-border);
}
.map-business-card__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.map-business-card__row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--white-70);
  line-height: 1.5;
}
.map-business-card__row svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.map-business-card__serving {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--white-70);
  background: rgba(207,175,112,0.08);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(207,175,112,0.15);
}
.map-business-card__serving strong {
  color: var(--gold);
}
.map-business-card__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: auto;
}
.map-business-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.map-business-card__btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
}
.map-business-card__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(207,175,112,0.3);
}
.map-business-card__btn--outline {
  background: transparent;
  color: var(--white-70);
  border: 1px solid var(--dark-border);
}
.map-business-card__btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
@media (max-width: 768px) {
  .map-with-card {
    grid-template-columns: 1fr;
  }
  .map-business-card {
    border-right: none;
    border-bottom: 1px solid var(--dark-border);
    padding: var(--space-lg);
  }
  .map-with-card .map-container,
  .map-with-card .map-container iframe {
    min-height: 300px;
  }
}

/* ---- Print ---- */
@media print {
  .top-bar, .header, .sticky-call, .bubbles-container,
  .mobile-nav, .hamburger, .cta-section { display: none !important; }
  body { background: white; color: black; }
  .section { padding: 1rem 0; }
}
