/* ==========================================================================
   Leak Freak Plumbing - Jackson, MS
   Official Design System & Stylesheet
   Color Palette: #AC7A06, #C9900B, #EECC7B, #F8EDD3
   ========================================================================== */

:root {
  /* Core Brand Colors */
  --primary-gold: #AC7A06;
  --secondary-gold: #C9900B;
  --accent-gold: #EECC7B;
  --bg-cream: #F8EDD3;
  
  /* Contrast Tones */
  --dark-bg: #140E02;
  --dark-surface: #1E1504;
  --dark-card: #271C06;
  --dark-border: #3D2C0A;
  
  --light-surface: #FFFDF7;
  --light-card: #FAF2DF;
  --light-border: #E8D5A9;
  
  --text-dark: #1F1704;
  --text-muted-dark: #5C4B23;
  --text-light: #FFFDF7;
  --text-muted-light: #E0CE9E;
  
  /* Gradients */
  --grad-gold: linear-gradient(135deg, #EECC7B 0%, #C9900B 50%, #AC7A06 100%);
  --grad-gold-hover: linear-gradient(135deg, #FFFDF7 0%, #EECC7B 40%, #C9900B 100%);
  --grad-dark: linear-gradient(180deg, #140E02 0%, #201704 100%);
  --grad-card-dark: linear-gradient(145deg, #241A05 0%, #181102 100%);
  --grad-card-light: linear-gradient(145deg, #FFFDF7 0%, #F8EDD3 100%);
  --grad-hero-overlay: linear-gradient(180deg, rgba(20, 14, 2, 0.88) 0%, rgba(30, 21, 4, 0.92) 100%);
  
  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(20, 14, 2, 0.08);
  --shadow-md: 0 6px 20px rgba(20, 14, 2, 0.14);
  --shadow-lg: 0 12px 35px rgba(20, 14, 2, 0.22);
  --gold-glow: 0 0 25px rgba(201, 144, 11, 0.35);
  --gold-glow-lg: 0 0 40px rgba(238, 204, 123, 0.45);
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout */
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.3rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1.25rem;
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-gold);
}

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

ul, ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

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

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

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

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.section-padding-sm {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

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

/* Top Announcement Bar */
.top-bar {
  background: var(--dark-bg);
  border-bottom: 1px solid var(--dark-border);
  color: var(--text-muted-light);
  font-size: 0.875rem;
  padding: 0.55rem 0;
  position: relative;
  z-index: 101;
}

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

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.top-bar-pulse {
  width: 9px;
  height: 9px;
  background-color: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px #22C55E;
  animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

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

.top-bar-phone {
  color: var(--text-light);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-phone:hover {
  color: var(--accent-gold);
}

/* Main Header Navigation */
.site-header {
  background: rgba(20, 14, 2, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 144, 11, 0.25);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

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

.brand-logo img {
  height: 52px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-surface);
  border: 1px solid var(--secondary-gold);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  min-width: 280px;
  box-shadow: var(--shadow-lg), var(--gold-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  list-style: none;
  z-index: 110;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li {
  margin: 0;
  padding: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--text-light);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-dropdown-menu a:hover {
  background: rgba(201, 144, 11, 0.15);
  color: var(--accent-gold);
  padding-left: 1.55rem;
}

/* Header CTR Call Button */
.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--grad-gold);
  color: var(--dark-bg);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.75rem 1.45rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(201, 144, 11, 0.4);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.header-cta-btn:hover {
  background: var(--grad-gold-hover);
  color: var(--dark-bg);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(238, 204, 123, 0.6);
}

.header-cta-btn .phone-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  animation: wiggle 2.5s infinite ease-in-out;
}

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

/* Mobile Menu Toggle Button */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--secondary-gold);
  color: var(--accent-gold);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 5.5rem 0 6rem 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 2px solid var(--secondary-gold);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 14, 2, 0.94) 0%, rgba(32, 23, 5, 0.90) 50%, rgba(15, 10, 2, 0.96) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(201, 144, 11, 0.15) 1px, transparent 0);
  background-size: 32px 32px;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 144, 11, 0.18);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text-muted-light);
  margin-bottom: 2.25rem;
  max-width: 780px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--grad-gold);
  color: var(--dark-bg);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 30px rgba(201, 144, 11, 0.5);
  text-decoration: none;
  transition: var(--transition);
}

.hero-btn-primary:hover {
  background: var(--grad-gold-hover);
  color: var(--dark-bg);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(238, 204, 123, 0.7);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(248, 237, 211, 0.08);
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
}

.hero-btn-secondary:hover {
  background: rgba(201, 144, 11, 0.2);
  color: var(--text-light);
  transform: translateY(-2px);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  border-top: 1px solid rgba(201, 144, 11, 0.25);
  padding-top: 1.75rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted-light);
}

.hero-feature-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}

/* Trust Bar / Stats Section */
.trust-bar {
  background: var(--dark-surface);
  color: var(--text-light);
  border-bottom: 1px solid var(--dark-border);
  padding: 2.25rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  text-align: center;
}

.trust-item h4 {
  font-size: 1.85rem;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: 0.925rem;
  color: var(--text-muted-light);
  margin: 0;
}

/* General Section Headers */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-gold);
  background: rgba(172, 122, 6, 0.12);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(172, 122, 6, 0.25);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
}

/* Service Cards Matrix */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--light-surface);
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-gold);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(201, 144, 11, 0.15);
}

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

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg-cream);
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
}

.service-icon-box svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-gold);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.service-card p {
  color: var(--text-muted-dark);
  font-size: 0.975rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.service-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-link:hover {
  color: var(--secondary-gold);
  gap: 0.55rem;
}

.service-call-action {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-bg);
  background: var(--grad-gold);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
}

.service-call-action:hover {
  background: var(--grad-gold-hover);
  color: var(--dark-bg);
  transform: scale(1.04);
}

/* Content Deep Dive Blocks */
.content-section {
  background: var(--light-surface);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.content-block {
  margin-bottom: 3.5rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.content-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
}

.content-block h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-cream);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-border);
  font-weight: 500;
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Callout Box */
.callout-box {
  background: linear-gradient(135deg, #1E1504 0%, #291D06 100%);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--secondary-gold);
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-md), var(--gold-glow);
  position: relative;
  overflow: hidden;
}

.callout-box h3 {
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.callout-box p {
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
}

.callout-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--grad-gold);
  color: var(--dark-bg);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
}

.callout-cta:hover {
  background: var(--grad-gold-hover);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 204, 123, 0.5);
}

/* Legal Disclaimer Box */
.disclaimer-box {
  background: rgba(172, 122, 6, 0.08);
  border-left: 4px solid var(--primary-gold);
  border-top: 1px solid var(--light-border);
  border-right: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  padding: 1.75rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2.5rem 0;
}

.disclaimer-box h4 {
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}

/* Local Coverage Grid */
.coverage-section {
  background: var(--bg-cream);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.coverage-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.coverage-card:hover {
  border-color: var(--secondary-gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.coverage-card h4 {
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.coverage-card p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  margin: 0;
}

/* FAQ Accordion Section */
.faq-section {
  background: var(--light-surface);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-cream);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--secondary-gold);
  box-shadow: 0 4px 15px rgba(201, 144, 11, 0.12);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.35rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(172, 122, 6, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-gold);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary-gold);
  transform: rotate(180deg);
}

.faq-item.active .faq-icon svg {
  fill: var(--text-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.35rem 1.5rem;
  color: var(--text-muted-dark);
  font-size: 1rem;
  line-height: 1.65;
}

/* Global Footer */
.site-footer {
  background: var(--dark-bg);
  color: var(--text-light);
  border-top: 3px solid var(--secondary-gold);
  padding: 4.5rem 0 2rem 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: var(--accent-gold);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-col p {
  color: var(--text-muted-light);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-muted-light);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-phone-card {
  background: var(--dark-card);
  border: 1px solid var(--secondary-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
}

.footer-phone-card .call-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-phone-number {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-light);
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

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

.footer-disclaimer-wrapper {
  background: rgba(30, 21, 4, 0.85);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-disclaimer-wrapper p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted-light);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted-light);
}

.footer-bottom a {
  color: var(--text-muted-light);
}

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

/* Sticky Bottom Call Bar for Mobile */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-bg);
  border-top: 2px solid var(--secondary-gold);
  padding: 0.65rem 1rem;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--grad-gold);
  color: var(--dark-bg);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0.85rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  width: 100%;
  box-shadow: 0 4px 15px rgba(201, 144, 11, 0.4);
}

.mobile-call-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  animation: wiggle 2s infinite ease-in-out;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    border-bottom: 2px solid var(--secondary-gold);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem 2.5rem 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition);
    max-height: calc(100vh - 85px);
    overflow-y: auto;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--dark-card);
    border-left: 2px solid var(--secondary-gold);
    border-top: none;
    border-right: none;
    border-bottom: none;
    box-shadow: none;
    margin-top: 0.5rem;
    margin-left: 1rem;
    padding: 0.5rem 0;
  }

  .mobile-toggle {
    display: block;
  }

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

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

  .mobile-call-bar {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 640px) {
  .top-bar-inner {
    justify-content: center;
  }

  .top-bar-links {
    display: none;
  }

  .hero-section {
    padding: 3.5rem 0 4.5rem 0;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn-primary, .hero-btn-secondary {
    justify-content: center;
    width: 100%;
  }

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

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