/*
Theme Name: Galaxy Mobile DJ
Theme URI: https://www.galaxymobiledj.com
Author: Galaxy Mobile DJ
Author URI: https://www.galaxymobiledj.com
Description: Custom premium theme for Galaxy Mobile DJ & Photo Booth — Sacramento's premier DJ and photo booth company.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://www.galaxymobiledj.com
Text Domain: galaxy-mobile-dj
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ========================================================================== */

:root {
  --color-red:       #800000;
  --color-red-dark:  #5a0000;
  --color-gold:      #c9a84c;
  --color-gold-light:#e0c068;
  --color-black:     #0d0d0d;
  --color-dark:      #1a1a1a;
  --color-dark-2:    #222222;
  --color-dark-3:    #2d2d2d;
  --color-offwhite:  #f8f7f5;
  --color-gray:      #555555;
  --color-gray-light:#999999;
  --color-white:     #ffffff;
  --color-border:    rgba(255,255,255,0.1);

  --gradient-red:    linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  --gradient-gold:   linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  --gradient-hero:   linear-gradient(to bottom, rgba(13,13,13,0.65) 0%, rgba(13,13,13,0.75) 100%);
  --gradient-card-top: linear-gradient(90deg, var(--color-red) 0%, var(--color-gold) 100%);

  --font-heading:    'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body:       'Inter', 'Segoe UI', Arial, sans-serif;

  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-pill:     50px;

  --shadow-sm:       0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:       0 8px 30px rgba(0,0,0,0.15);
  --shadow-lg:       0 20px 60px rgba(0,0,0,0.2);
  --shadow-red:      0 8px 30px rgba(128,0,0,0.4);
  --shadow-gold:     0 8px 30px rgba(201,168,76,0.35);

  --transition-fast: 0.2s ease;
  --transition-med:  0.35s ease;
  --transition-slow: 0.5s ease;

  --nav-height:      80px;
  --topbar-height:   42px;
  --container-max:   1200px;
  --container-wide:  1400px;
}

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--color-red-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong { font-weight: 700; }
em { font-style: italic; }

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding: 90px 0;
}

.section--sm {
  padding: 60px 0;
}

.section--lg {
  padding: 120px 0;
}

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

.section--darker {
  background-color: var(--color-black);
  color: var(--color-white);
}

.section--red {
  background: var(--gradient-red);
  color: var(--color-white);
}

.section--offwhite {
  background-color: var(--color-offwhite);
}

.section--white {
  background-color: var(--color-white);
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.grid {
  display: grid;
  gap: 28px;
}

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

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

.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;
}

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray);
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subtitle {
  margin-bottom: 0;
}

/* On dark sections */
.section--dark .section-title,
.section--darker .section-title,
.section--red .section-title {
  color: var(--color-white);
}

.section--dark .section-subtitle,
.section--darker .section-subtitle,
.section--red .section-subtitle {
  color: rgba(255,255,255,0.75);
}

.section--dark h2,
.section--darker h2,
.section--red h2 {
  color: var(--color-white);
}

.section--dark h3,
.section--darker h3,
.section--red h3 {
  color: var(--color-white);
}

.section--dark p,
.section--darker p,
.section--red p {
  color: rgba(255,255,255,0.8);
}

/* Decorative underline on section titles */
.section-title--underline {
  position: relative;
  padding-bottom: 20px;
}

.section-title--underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-card-top);
  border-radius: 2px;
}

.text-left .section-title--underline::after {
  left: 0;
  transform: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-med);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: var(--gradient-red);
  color: var(--color-white);
  border-color: var(--color-red);
  box-shadow: 0 2px 14px rgba(128,0,0,0.28);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(128,0,0,0.55), 0 4px 16px rgba(128,0,0,0.35);
  color: var(--color-white);
}

.btn--gold {
  background: var(--gradient-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
  box-shadow: 0 2px 14px rgba(201,168,76,0.3);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(201,168,76,0.55), 0 4px 16px rgba(201,168,76,0.35);
  color: var(--color-dark);
}

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

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

.btn--outline-red {
  background: transparent;
  color: var(--color-red);
  border-color: var(--color-red);
}

.btn--outline-red:hover {
  background: var(--color-red);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: rgba(26,26,26,0.28);
}

.btn--outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 18px 48px;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Nav quote button */
.nav-quote-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--gradient-red);
  color: var(--color-white) !important;
  border: none;
  overflow: visible;
  cursor: pointer;
  transition: all var(--transition-med);
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(128,0,0,0.28);
  white-space: nowrap;
}

.nav-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(128,0,0,0.5), 0 4px 12px rgba(128,0,0,0.3);
  color: var(--color-white) !important;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.site-topbar {
  background-color: var(--color-black);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
  z-index: 1001;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar-phone a {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.topbar-phone a:hover {
  color: var(--color-gold-light);
}

.topbar-phone .phone-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 400;
  margin-right: 6px;
  font-family: var(--font-body);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.topbar-social a:hover {
  color: var(--color-gold);
  transform: translateY(-1px);
}

.topbar-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ==========================================================================
   MAIN NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition-med), background-color var(--transition-med);
}

body.scrolled .site-header {
  box-shadow: 0 4px 30px rgba(0,0,0,0.14);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

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

.site-logo img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity var(--transition-fast);
}

.site-logo:hover img {
  opacity: 0.85;
}

/* Primary nav */
.primary-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav > ul > li {
  position: relative;
}

.primary-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.primary-nav > ul > li > a:hover,
.primary-nav > ul > li.current-menu-item > a,
.primary-nav > ul > li.current-menu-ancestor > a {
  color: var(--color-red);
  background-color: rgba(128,0,0,0.05);
}

/* Dropdown arrow */
.primary-nav .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  transition: transform var(--transition-fast);
}

.primary-nav .has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* Dropdown menu */
.primary-nav .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-med), transform var(--transition-med), visibility var(--transition-med);
  z-index: 100;
}

.primary-nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.primary-nav .dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--color-white);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-left: 1px solid rgba(0,0,0,0.06);
  transform: translateX(-50%) rotate(45deg);
}

.primary-nav .dropdown li {
  list-style: none;
}

.primary-nav .dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.primary-nav .dropdown a:hover {
  color: var(--color-red);
  background-color: rgba(128,0,0,0.04);
}

/* Nav right (CTA) */
.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
  z-index: 1010;
}

.hamburger:hover {
  background-color: rgba(128,0,0,0.06);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition-med), opacity var(--transition-fast), width var(--transition-med);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1005;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.mobile-nav-overlay.active {
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90vw;
  height: 100dvh;
  background: var(--color-dark);
  z-index: 1010;
  overflow-y: auto;
  transition: right var(--transition-med);
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition-fast);
}

.mobile-nav-close:hover {
  color: var(--color-white);
}

.mobile-nav-body {
  flex: 1;
  padding: 16px 0;
}

.mobile-nav-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-body > ul > li > a {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.mobile-nav-body > ul > li > a:hover {
  color: var(--color-gold);
  background-color: rgba(255,255,255,0.03);
}

.mobile-nav-body .mobile-submenu {
  background: rgba(0,0,0,0.2);
}

.mobile-nav-body .mobile-submenu a {
  display: block;
  padding: 10px 24px 10px 40px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: color var(--transition-fast);
}

.mobile-nav-body .mobile-submenu a:hover {
  color: var(--color-gold);
}

.mobile-nav-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-pill);
  transition: background-color var(--transition-fast);
}

.mobile-nav-phone:hover {
  background-color: var(--color-gold);
  color: var(--color-dark);
}

.mobile-nav-quote {
  display: block;
  text-align: center;
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 80vh;
}

.hero--full {
  min-height: calc(100vh - var(--topbar-height));
}

.hero--tall {
  min-height: 75vh;
}

.hero--medium {
  min-height: 55vh;
}

.hero--sm {
  min-height: 380px;
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg--photo {
  background-image: url('https://www.galaxymobiledj.com/wp-content/uploads/2021/05/Galaxy-Header-Image-web.jpg');
}

.hero-bg--dark {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark) 40%, #1a0000 100%);
}

.hero-bg--red {
  background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-red) 50%, #650000 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 24px 24px 32px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

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

/* Hero particles / decorative elements */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(128,0,0,0.08) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay ~ .hero::before { z-index: 2; }

/* ==========================================================================
   STATS BAR
   ========================================================================== */

.stats-bar {
  background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-red) 50%, #8a0000 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px 24px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stat-number .stat-plus {
  color: var(--color-gold);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */

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

.services-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-card-top);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-red);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card .card-link:hover {
  gap: 10px;
  color: var(--color-red-dark);
}

.service-card .card-link::after {
  content: '→';
}

/* ==========================================================================
   FEATURE / BENEFIT CARDS
   ========================================================================== */

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-card-top);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(128,0,0,0.1);
}

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

.feature-card-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

/* On dark backgrounds */
.section--dark .feature-card,
.section--darker .feature-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.section--dark .feature-card h3,
.section--darker .feature-card h3 {
  color: var(--color-white);
}

.section--dark .feature-card p,
.section--darker .feature-card p {
  color: rgba(255,255,255,0.6);
}

.section--dark .feature-card:hover,
.section--darker .feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.2);
}

/* ==========================================================================
   TESTIMONIAL CARDS
   ========================================================================== */

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

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-card-top);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.75;
  margin-bottom: 20px;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-red);
  opacity: 0.2;
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.testimonial-event {
  font-size: 0.78rem;
  color: var(--color-gray-light);
  font-style: italic;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */

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

.why-card {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-red);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-left-color var(--transition-med);
}

.why-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-gold);
}

.why-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.why-card p {
  font-size: 0.875rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   INCLUDED / CHECKLIST SECTIONS
   ========================================================================== */

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

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.included-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.included-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(128,0,0,0.08);
  color: var(--color-red);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.included-text {
  flex: 1;
}

.included-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.included-text span {
  font-size: 0.825rem;
  color: var(--color-gray);
}

/* ==========================================================================
   TWO-COLUMN INTRO SECTION
   ========================================================================== */

.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-section--reverse {
  direction: rtl;
}

.intro-section--reverse > * {
  direction: ltr;
}

.intro-text .section-eyebrow {
  display: block;
}

.intro-text h2 {
  margin-bottom: 20px;
}

.intro-text p {
  color: var(--color-gray);
  font-size: 1rem;
  margin-bottom: 16px;
}

.intro-image-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-red) 60%, #650000 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  position: relative;
}

.intro-image-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.intro-image-text {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.intro-image-text .image-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
}

.intro-image-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}

.intro-image-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

/* ==========================================================================
   QUOTE CTA BANNER
   ========================================================================== */

.quote-cta {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.quote-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.quote-cta-text h2 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.quote-cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.quote-cta-text .trust-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-cta-text .trust-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.quote-cta-text .trust-bullet::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 0.75rem;
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.quote-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(10px);
}

/* ==========================================================================
   GRAVITY FORMS — THEME INTEGRATION ONLY
   GF + GF Styles Pro handle all layout/input/field CSS themselves.
   We only override buttons and colors to match the Galaxy theme.
   ========================================================================== */

/* Next / Submit buttons — match theme red pill style */
.gform_wrapper .gform_button,
.gform_wrapper .gform_submit_button,
.gform_wrapper input[type="submit"],
.gform_wrapper .gform_next_button {
  background: var(--gradient-red) !important;
  color: var(--color-white) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  border-radius: var(--radius-pill) !important;
  border: none !important;
  padding: 14px 36px !important;
  cursor: pointer !important;
  box-shadow: 0 2px 14px rgba(128,0,0,0.28) !important;
  transition: all 0.35s ease !important;
}

.gform_wrapper .gform_button:hover,
.gform_wrapper .gform_submit_button:hover,
.gform_wrapper input[type="submit"]:hover,
.gform_wrapper .gform_next_button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0 24px rgba(128,0,0,0.5), 0 4px 14px rgba(128,0,0,0.3) !important;
}

/* On dark/red background sections — gold buttons instead */
.section--red .gform_wrapper .gform_button,
.section--red .gform_wrapper .gform_submit_button,
.section--red .gform_wrapper input[type="submit"],
.section--red .gform_wrapper .gform_next_button,
.quote-form-wrap .gform_wrapper .gform_button,
.quote-form-wrap .gform_wrapper .gform_submit_button,
.quote-form-wrap .gform_wrapper input[type="submit"],
.quote-form-wrap .gform_wrapper .gform_next_button {
  background: var(--gradient-gold) !important;
  color: var(--color-dark) !important;
  box-shadow: 0 2px 14px rgba(201,168,76,0.3) !important;
}

.section--red .gform_wrapper .gform_button:hover,
.section--red .gform_wrapper .gform_submit_button:hover,
.section--red .gform_wrapper input[type="submit"]:hover,
.section--red .gform_wrapper .gform_next_button:hover,
.quote-form-wrap .gform_wrapper .gform_button:hover,
.quote-form-wrap .gform_wrapper .gform_submit_button:hover,
.quote-form-wrap .gform_wrapper input[type="submit"]:hover,
.quote-form-wrap .gform_wrapper .gform_next_button:hover {
  box-shadow: 0 0 24px rgba(201,168,76,0.5), 0 4px 14px rgba(201,168,76,0.3) !important;
}

/* Labels — white on dark backgrounds */
.section--red .gform_wrapper .gfield_label,
.section--red .gform_wrapper .gfield_label *,
.quote-form-wrap .gform_wrapper .gfield_label,
.quote-form-wrap .gform_wrapper .gfield_label * {
  color: rgba(255,255,255,0.9) !important;
}

/* Inputs — frosted on dark backgrounds */
.section--red .gform_wrapper input,
.section--red .gform_wrapper select,
.section--red .gform_wrapper textarea,
.quote-form-wrap .gform_wrapper input,
.quote-form-wrap .gform_wrapper select,
.quote-form-wrap .gform_wrapper textarea {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.22) !important;
  color: var(--color-white) !important;
}

.section--red .gform_wrapper input::placeholder,
.section--red .gform_wrapper textarea::placeholder,
.quote-form-wrap .gform_wrapper input::placeholder,
.quote-form-wrap .gform_wrapper textarea::placeholder {
  color: rgba(255,255,255,0.4) !important;
}

.section--red .gform_wrapper input:focus,
.section--red .gform_wrapper select:focus,
.section--red .gform_wrapper textarea:focus,
.quote-form-wrap .gform_wrapper input:focus,
.quote-form-wrap .gform_wrapper select:focus,
.quote-form-wrap .gform_wrapper textarea:focus {
  border-color: var(--color-gold) !important;
  outline: none !important;
}

/* Checkbox/radio labels on dark backgrounds */
.section--red .gform_wrapper label,
.quote-form-wrap .gform_wrapper label {
  color: rgba(255,255,255,0.88) !important;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
  background: var(--color-dark-2);
  padding: 36px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1;
  min-width: 140px;
}

.trust-item-icon {
  font-size: 2rem;
  line-height: 1;
}

.trust-item-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.trust-item-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   REVIEW BADGES ROW
   ========================================================================== */

.review-badges {
  padding: 40px 0;
  background: var(--color-offwhite);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.review-badges-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.review-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 28px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  min-width: 160px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.review-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-badge-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.04em;
}

.review-badge-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.review-badge-count {
  font-size: 0.72rem;
  color: var(--color-gray-light);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

/* Pure CSS accordion using hidden checkbox */
.faq-item input[type="checkbox"] {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  user-select: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(128,0,0,0.03);
  color: var(--color-red);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-red);
  flex-shrink: 0;
  transition: transform var(--transition-med);
  line-height: 1;
}

.faq-item input:checked ~ .faq-question {
  background-color: rgba(128,0,0,0.04);
  color: var(--color-red);
}

.faq-item input:checked ~ .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-med);
  padding: 0 28px;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.75;
  margin: 0;
}

.faq-item input:checked ~ .faq-answer {
  max-height: 400px;
  padding-top: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--color-dark);
  color: rgba(255,255,255,0.75);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 56px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gradient-card-top);
  border-radius: 1px;
}

.footer-logo {
  display: block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-col-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-phone:hover {
  color: var(--color-gold-light);
}

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

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.footer-links a::before {
  content: '›';
  color: var(--color-red);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--color-white);
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
}

.footer-contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}

.footer-contact-text {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-contact-text a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-contact-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1px;
}

/* Footer bottom */
.footer-bottom {
  background-color: var(--color-black);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-red);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* ==========================================================================
   FLOATING CALL BUTTON (MOBILE)
   ========================================================================== */

.floating-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.floating-call a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-red);
  color: var(--color-white);
  text-decoration: none;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px rgba(128,0,0,0.5), 0 0 0 0 rgba(128,0,0,0.4);
  animation: ring-pulse 2.5s infinite;
}

.floating-call a:hover {
  color: var(--color-white);
  transform: translateY(-2px);
}

.floating-call-icon {
  font-size: 1.2rem;
  animation: wiggle 2s infinite;
}

@keyframes ring-pulse {
  0% { box-shadow: 0 4px 24px rgba(128,0,0,0.5), 0 0 0 0 rgba(128,0,0,0.4); }
  70% { box-shadow: 0 4px 24px rgba(128,0,0,0.5), 0 0 0 14px rgba(128,0,0,0); }
  100% { box-shadow: 0 4px 24px rgba(128,0,0,0.5), 0 0 0 0 rgba(128,0,0,0); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(10deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(5deg); }
  50% { transform: rotate(0); }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.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; }

/* ==========================================================================
   GENERIC PAGE CONTENT
   ========================================================================== */

.page-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-content h1, .page-content h2, .page-content h3,
.page-content h4, .page-content h5, .page-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content p {
  margin-bottom: 1.4rem;
  color: var(--color-gray);
  font-size: 1.02rem;
  line-height: 1.8;
}

.page-content ul, .page-content ol {
  margin-bottom: 1.4rem;
  padding-left: 24px;
  color: var(--color-gray);
}

.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }

.page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.page-content a {
  color: var(--color-red);
  border-bottom: 1px solid rgba(128,0,0,0.2);
  transition: border-color var(--transition-fast);
}

.page-content a:hover {
  border-bottom-color: var(--color-red);
}

/* ==========================================================================
   PHOTO BOOTH GALLERY
   ========================================================================== */

.pb-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}

.pb-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-dark-2);
}

.pb-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.pb-gallery-item:hover img {
  transform: scale(1.04);
}

.pb-gallery-item--wide {
  grid-column: 1 / 2;
}

.pb-gallery-item--wide img {
  height: 340px;
}

.pb-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.pb-gallery-item:hover .pb-gallery-overlay {
  opacity: 1;
}

.pb-gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(128,0,0,0.85);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

@media (max-width: 768px) {
  .pb-gallery {
    grid-template-columns: 1fr;
  }
  .pb-gallery-item--wide {
    grid-column: 1;
  }
  .pb-gallery-item img,
  .pb-gallery-item--wide img {
    height: 220px;
  }
}

/* ==========================================================================
   CLIENT PORTAL PAGE
   ========================================================================== */

.client-portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.client-portal-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 4px solid var(--color-red);
  text-align: center;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.client-portal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.client-portal-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
}

.client-portal-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.client-portal-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.client-portal-card .btn {
  width: 100%;
  justify-content: center;
}

.client-resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.client-resource-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.07);
  transition: border-color var(--transition-fast);
}

.client-resource-item:hover {
  border-color: var(--color-red);
}

.client-resource-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.client-resource-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--color-dark);
}

.client-resource-item p {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin: 0;
}

@media (max-width: 900px) {
  .client-portal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .client-portal-grid,
  .client-resources-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   QUICK QUOTE PAGE
   ========================================================================== */

.quote-page-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid;
  border-image: var(--gradient-card-top) 1;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

/* ==========================================================================
   PAGE BOTTOM CTA
   ========================================================================== */

.page-cta {
  background: var(--gradient-red);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-cta h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-cta p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.page-cta .btn-group {
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.contact-info-body h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-light);
  margin-bottom: 6px;
}

.contact-info-body p,
.contact-info-body a {
  font-size: 1rem;
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.contact-info-body a:hover {
  color: var(--color-red);
}

/* ==========================================================================
   TESTIMONIALS PAGE
   ========================================================================== */

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

/* ==========================================================================
   SCHOOL DANCES / EVENT TYPES GRID
   ========================================================================== */

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

.event-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-card-top);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.event-card-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.event-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.event-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   GMJ PHONE HELPER
   ========================================================================== */

.gmj-phone {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.gmj-phone:hover {
  color: var(--color-gold);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.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;
}

.text-gold { color: var(--color-gold); }
.text-red  { color: var(--color-red); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-gray); }

.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-card-top);
  border-radius: 2px;
  margin: 0 auto 28px;
}

.divider--left {
  margin-left: 0;
}

/* ==========================================================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --nav-height: 70px;
  }

  .primary-nav > ul > li > a {
    font-size: 0.75rem;
    padding: 10px 10px;
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col:nth-child(1) {
    grid-column: 1 / -1;
  }

  .intro-section {
    gap: 40px;
  }

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

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

/* ==========================================================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================================================== */

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --topbar-height: 40px;
  }

  .primary-nav,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .hero--full {
    min-height: 90vh;
  }

  .hero--tall {
    min-height: 65vh;
  }

  .hero--medium {
    min-height: 50vh;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .section {
    padding: 64px 0;
  }

  .section--lg {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

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

  .stat-item + .stat-item::before {
    display: none;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.12);
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .services-grid,
  .services-grid--5 {
    grid-template-columns: 1fr;
  }

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

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

  .testimonials-page-grid {
    grid-template-columns: 1fr;
  }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-section--reverse {
    direction: ltr;
  }

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

  .quote-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-col:nth-child(1) {
    grid-column: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .trust-items {
    gap: 16px;
  }

  .trust-item {
    min-width: 120px;
  }

  .topbar-phone .phone-label {
    display: none;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

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

  .quote-page-form {
    padding: 32px 24px;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-group .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .floating-call {
    display: flex;
  }

  .review-badges-inner {
    gap: 16px;
  }

  .review-badge {
    min-width: 130px;
    padding: 14px 16px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* ==========================================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ========================================================================== */

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 32px 16px;
  }

  .section {
    padding: 48px 0;
  }

  .service-card,
  .feature-card,
  .why-card {
    padding: 24px 20px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

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

  .trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .floating-call a span.floating-call-number {
    display: none;
  }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .site-topbar,
  .site-header,
  .floating-call,
  .hamburger,
  .mobile-nav,
  .mobile-nav-overlay {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}
