/* ===================================
   FIRED UP BBQ - Main Base Styles
   =================================== */

/* Root Variables */
:root {
  /* Primary Colors */
  --ember-orange: #d2691e;
  --charcoal-black: #1c1c1c;
  --smoke-gray: #4a4a4a;

  /* Accent Colors */
  --flame-red: #b22222;
  --hickory-brown: #8b4513;
  --fresh-green: #228b22;

  /* Neutral Colors */
  --warm-white: #fff8f0;
  --ash-gray: #e8e8e8;
  --white: #ffffff;

  /* Typography */
  --heading-font: 'Bebas Neue', sans-serif;
  --body-font: 'Source Sans 3', sans-serif;
  --accent-font: 'Satisfy', cursive;

  /* Spacing */
  --section-padding: 80px 0;
  --section-padding-mobile: 60px 0;

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-base: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-round: 50px;
  --radius-circle: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

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

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal-black);
  background-color: var(--warm-white);
  overflow-x: hidden;
  position: relative;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  color: var(--charcoal-black);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

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

a:hover {
  color: var(--ember-orange);
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

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

li {
  margin-bottom: 0.5rem;
}

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

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

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 576px) {
  .container {
    padding: 0 30px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}

section {
  padding: var(--section-padding);
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: var(--section-padding-mobile);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  color: var(--charcoal-black);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--smoke-gray);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  color: var(--ember-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* ===================================
   FORMS
   =================================== */

input,
textarea,
select {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.5;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--charcoal-black);
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */

.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--ember-orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 99;
  box-shadow: var(--shadow-lg);
  font-size: 1.25rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--flame-red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* Mobile styling - match quick-quote-mobile button exactly */
@media (max-width: 1024px) {
  .back-to-top {
    bottom: 70px;
    right: 5px;
    width: 45px;
    height: 45px;
  }
}

/* ===================================
   MOBILE BOTTOM BAR
   =================================== */

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--ash-gray);
  z-index: 100;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }
}

.bottom-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
  color: var(--smoke-gray);
  text-decoration: none;
  transition: var(--transition-base);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body-font);
}

.bottom-bar-item:hover,
.bottom-bar-item:active {
  color: var(--ember-orange);
  background: var(--warm-white);
}

.bottom-bar-icon {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.bottom-bar-label {
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===================================
   ABOUT PREVIEW SECTION
   =================================== */

.about-preview-section {
  background: var(--white);
  padding: var(--section-padding);
}

.about-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 968px) {
  .about-preview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-text-side {
  padding: 2rem 0;
}
@media (max-width: 968px) {
  .about-text-side {
    order: 2;
    text-align: center;
  }
}

.about-title {
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.125rem;
  color: var(--smoke-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 968px) {
  .about-stats {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .about-stats {
    gap: 2rem;
  }
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ember-orange);
  font-family: var(--heading-font);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--smoke-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* CREATIVE DUAL IMAGE LAYOUT */
.about-image-side {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (max-width: 968px) {
  .about-image-side {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .about-image-side {
    gap: 1rem;
  }
}

/* Main image (Todd) */
.about-image-main {
  flex: 0 0 55%;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
  max-height: 450px;
}
.about-image-main:hover {
  transform: rotate(0deg) scale(1.02);
}

@media (max-width: 968px) {
  .about-image-main {
    flex: none;
    width: 70%;
    transform: rotate(-1deg);
  }
}
@media (max-width: 576px) {
  .about-image-main {
    width: 85%;
  }
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

@media (max-width: 576px) {
  .about-image-main img {
    max-height: 700px;
  }
}

/* ServSafe badge overlay (bigger) */
.about-cert-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  max-width: 140px; /* was 100px */
  background: var(--white);
  padding: 0.25rem; /* was 0.5rem */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
  z-index: 2;
}
.about-cert-badge:hover {
  transform: rotate(0deg) scale(1.05);
}
@media (max-width: 968px) {
  .about-cert-badge {
    max-width: 110px;
  } /* was 90px */
}
@media (max-width: 576px) {
  .about-cert-badge {
    max-width: 120px;
  }
}
.about-cert-badge img {
  width: 100%;
  height: auto;
  display: block;
}

/* Secondary image + container */
.about-image-secondary-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
}
@media (max-width: 968px) {
  .about-image-secondary-container {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 0;
  }
}
@media (max-width: 576px) {
  .about-image-secondary-container {
    flex-direction: column;
  }
}

.about-image-secondary {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}
.about-image-secondary:hover {
  transform: rotate(0deg) scale(1.05);
}
@media (max-width: 968px) {
  .about-image-secondary {
    max-width: 280px;
  }
}
@media (max-width: 576px) {
  .about-image-secondary {
    max-width: 85%;
  }
}

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

/* Fun decorative elements */
.about-image-side::before {
  content: '';
  position: absolute;
  top: -20px;
  right: 20%;
  width: 80px;
  height: 80px;
  background: var(--ember-orange);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.about-image-side::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--flame-red);
  border-radius: 50%;
  opacity: 0.08;
  z-index: -1;
}
/* ===================================
   SERVICE MAP SECTION
   =================================== */

.service-map-section {
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--white) 100%);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.service-map-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(214, 105, 30, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Map Placeholder/Container */
.map-placeholder {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 3rem;
  background: var(--ash-gray);
}

.map-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

/* Map Overlay Elements */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center Pin */
.map-center-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  animation: pinDrop 1s ease-out, pinBounce 2s ease-in-out 1s infinite;
}

.map-center-pin i {
  font-size: 3rem;
  color: var(--flame-red);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes pinDrop {
  0% {
    transform: translate(-50%, -300%);
    opacity: 0;
  }
  60% {
    transform: translate(-50%, -40%);
  }
  80% {
    transform: translate(-50%, -55%);
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes pinBounce {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -55%) scale(1.1);
  }
}

/* Radius Circle */
.map-radius-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border: 3px solid var(--ember-orange);
  border-radius: 50%;
  opacity: 0.3;
  animation: radiusPulse 3s ease-in-out infinite;
}

.map-radius-circle::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px dashed var(--ember-orange);
  border-radius: 50%;
  animation: radiusRotate 20s linear infinite;
}

@keyframes radiusPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.5;
  }
}

@keyframes radiusRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Service Cities Section */
.service-cities {
  text-align: center;
}

.service-cities h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--charcoal-black);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.service-cities h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--ember-orange);
  border-radius: 2px;
}

/* Cities Grid */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

/* City Tags */
.city-tag {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--ash-gray);
  border-radius: var(--radius-round);
  color: var(--charcoal-black);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.city-tag::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--ember-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: -1;
}

.city-tag:hover {
  color: var(--white);
  border-color: var(--ember-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-base);
}

.city-tag:hover::before {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-round);
}

/* Popular cities get special styling */
.city-tag:first-child {
  background: var(--ember-orange);
  color: var(--white);
  border-color: var(--ember-orange);
  font-size: 1.125rem;
  position: relative;
}

.city-tag:first-child::after {
  content: '📍';
  position: absolute;
  top: -10px;
  right: -5px;
  font-size: 1rem;
}

/* Distance indicator */
.map-distance-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
  backdrop-filter: blur(10px);
}

.distance-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ember-orange);
  font-family: var(--heading-font);
}

.distance-label {
  font-size: 0.875rem;
  color: var(--smoke-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Interactive elements when real map is added */
.map-controls {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
}

.map-control-btn {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 2px solid var(--ash-gray);
  border-radius: var(--radius-base);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.map-control-btn:hover {
  background: var(--ember-orange);
  border-color: var(--ember-orange);
  color: var(--white);
  transform: scale(1.1);
}

/* Loading state for when real map loads */
.map-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}

.map-loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--ash-gray);
  border-top-color: var(--ember-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .service-map-section {
    padding: var(--section-padding-mobile);
  }

  .cities-grid {
    gap: 0.75rem;
  }

  .city-tag {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .map-center-pin i {
    font-size: 2rem;
  }

  .map-radius-circle {
    width: 80%;
    height: 80%;
  }
}

/* Print Styles */
@media print {
  .service-map-section {
    page-break-inside: avoid;
  }

  .map-overlay,
  .map-radius-circle::before {
    animation: none;
  }
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--charcoal-black) 0%, #0f0f0f 100%);
  padding: 120px 0; /* More explicit padding */
  overflow: hidden;
  text-align: center;
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: 80px 0; /* Adjusted for mobile */
  }
}

/* Background smoke effect already defined in smoke-animation.css */
.cta-smoke-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* CTA Content */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

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

/* CTA Title */
.cta-title {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  line-height: 1.1;
  position: relative;
}

/* Add fire glow effect to title */
.cta-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(214, 105, 30, 0.4) 0%,
    transparent 70%
  );
  filter: blur(30px);
  animation: fireGlow 3s ease-in-out infinite;
}

@keyframes fireGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.3);
  }
}

/* CTA Subtitle */
.cta-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media (max-width: 576px) {
  .cta-buttons {
    gap: 1rem;
  }
}

/* Enhanced button styles for CTA section */
.final-cta-section .btn-xl {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.final-cta-section .btn-flame {
  background: linear-gradient(
    135deg,
    var(--flame-red) 0%,
    var(--ember-orange) 100%
  );
  border: none;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(178, 34, 34, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(178, 34, 34, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(178, 34, 34, 0.5);
  }
}

.final-cta-section .btn-flame:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(178, 34, 34, 0.6);
}

.final-cta-section .btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  position: relative;
  transition: all 0.3s ease;
}

.final-cta-section .btn-outline-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--white);
  transition: width 0.3s ease;
  z-index: -1;
}

.final-cta-section .btn-outline-light:hover {
  color: var(--charcoal-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.final-cta-section .btn-outline-light:hover::before {
  width: 100%;
}

/* Decorative elements */
.final-cta-section::before,
.final-cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(214, 105, 30, 0.3) 0%,
    /* More visible */ transparent 70%
  );
  animation: float 8s ease-in-out infinite;
}

.final-cta-section::before {
  top: 50px; /* Now visible in viewport */
  left: 50px; /* Now visible in viewport */
  animation-delay: 0s;
}

.final-cta-section::after {
  bottom: 50px; /* Now visible in viewport */
  right: 50px; /* Now visible in viewport */
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(50px, -50px); /* CHANGE THIS - was 30px */
  }
  66% {
    transform: translate(-40px, 40px); /* CHANGE THIS - was -20px, 20px */
  }
}

/* Ember particles */
.final-cta-section .ember-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* Add floating embers */
@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.ember {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--ember-orange);
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: 0 0 6px var(--ember-orange);
  animation: floatUp 10s linear infinite;
}

/* Border decoration */
.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--ember-orange) 25%,
    var(--flame-red) 50%,
    var(--ember-orange) 75%,
    transparent
  );
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .final-cta-section {
    padding: var(--section-padding-mobile);
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .final-cta-section .btn-xl {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .final-cta-section::before,
  .final-cta-section::after,
  .cta-title::before,
  .final-cta-section .btn-flame,
  .ember {
    animation: none;
  }
}

/* Print styles */
@media print {
  .final-cta-section {
    background: none;
    border: 2px solid #000;
    color: #000;
  }

  .cta-title,
  .cta-subtitle {
    color: #000;
  }

  .final-cta-section::before,
  .final-cta-section::after,
  .cta-smoke-bg,
  .ember-container {
    display: none;
  }
}

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

/* Display */
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-grid {
  display: grid !important;
}

/* Flexbox */
.flex-column {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-stretch {
  align-self: stretch !important;
}

/* Gap */
.gap-1 {
  gap: 0.5rem !important;
}
.gap-2 {
  gap: 1rem !important;
}
.gap-3 {
  gap: 1.5rem !important;
}
.gap-4 {
  gap: 2rem !important;
}
.gap-5 {
  gap: 3rem !important;
}

/* Text Alignment */
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-justify {
  text-align: justify !important;
}

/* Text Transform */
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}

/* Font Weight */
.fw-normal {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}

/* Colors */
.text-primary {
  color: var(--ember-orange) !important;
}
.text-secondary {
  color: var(--smoke-gray) !important;
}
.text-danger {
  color: var(--flame-red) !important;
}
.text-success {
  color: var(--fresh-green) !important;
}
.text-white {
  color: var(--white) !important;
}
.text-dark {
  color: var(--charcoal-black) !important;
}

.bg-primary {
  background-color: var(--ember-orange) !important;
}
.bg-secondary {
  background-color: var(--smoke-gray) !important;
}
.bg-danger {
  background-color: var(--flame-red) !important;
}
.bg-success {
  background-color: var(--fresh-green) !important;
}
.bg-white {
  background-color: var(--white) !important;
}
.bg-warm-white {
  background-color: var(--warm-white) !important;
}
.bg-dark {
  background-color: var(--charcoal-black) !important;
}

/* Margin */
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.5rem !important;
}
.m-2 {
  margin: 1rem !important;
}
.m-3 {
  margin: 1.5rem !important;
}
.m-4 {
  margin: 2rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-auto {
  margin: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.5rem !important;
}
.mt-2 {
  margin-top: 1rem !important;
}
.mt-3 {
  margin-top: 1.5rem !important;
}
.mt-4 {
  margin-top: 2rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mt-auto {
  margin-top: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.5rem !important;
}
.mb-2 {
  margin-bottom: 1rem !important;
}
.mb-3 {
  margin-bottom: 1.5rem !important;
}
.mb-4 {
  margin-bottom: 2rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.5rem !important;
}
.ms-2 {
  margin-left: 1rem !important;
}
.ms-3 {
  margin-left: 1.5rem !important;
}
.ms-4 {
  margin-left: 2rem !important;
}
.ms-5 {
  margin-left: 3rem !important;
}
.ms-auto {
  margin-left: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 0.5rem !important;
}
.me-2 {
  margin-right: 1rem !important;
}
.me-3 {
  margin-right: 1.5rem !important;
}
.me-4 {
  margin-right: 2rem !important;
}
.me-5 {
  margin-right: 3rem !important;
}
.me-auto {
  margin-right: auto !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mx-1 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.mx-2 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.mx-3 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}
.mx-4 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}
.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

/* Padding */
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.5rem !important;
}
.p-2 {
  padding: 1rem !important;
}
.p-3 {
  padding: 1.5rem !important;
}
.p-4 {
  padding: 2rem !important;
}
.p-5 {
  padding: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.5rem !important;
}
.pt-2 {
  padding-top: 1rem !important;
}
.pt-3 {
  padding-top: 1.5rem !important;
}
.pt-4 {
  padding-top: 2rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.5rem !important;
}
.pb-2 {
  padding-bottom: 1rem !important;
}
.pb-3 {
  padding-bottom: 1.5rem !important;
}
.pb-4 {
  padding-bottom: 2rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}
.ps-1 {
  padding-left: 0.5rem !important;
}
.ps-2 {
  padding-left: 1rem !important;
}
.ps-3 {
  padding-left: 1.5rem !important;
}
.ps-4 {
  padding-left: 2rem !important;
}
.ps-5 {
  padding-left: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.5rem !important;
}
.pe-2 {
  padding-right: 1rem !important;
}
.pe-3 {
  padding-right: 1.5rem !important;
}
.pe-4 {
  padding-right: 2rem !important;
}
.pe-5 {
  padding-right: 3rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-1 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-2 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-3 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Width */
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}

/* Height */
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}

/* Position */
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}

/* Visibility */
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}

/* Opacity */
.opacity-0 {
  opacity: 0 !important;
}
.opacity-25 {
  opacity: 0.25 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
.opacity-100 {
  opacity: 1 !important;
}

/* Border Radius */
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-sm {
  border-radius: var(--radius-sm) !important;
}
.rounded {
  border-radius: var(--radius-base) !important;
}
.rounded-lg {
  border-radius: var(--radius-lg) !important;
}
.rounded-xl {
  border-radius: var(--radius-xl) !important;
}
.rounded-pill {
  border-radius: var(--radius-round) !important;
}
.rounded-circle {
  border-radius: var(--radius-circle) !important;
}

/* Shadow */
.shadow-none {
  box-shadow: none !important;
}
.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}
.shadow {
  box-shadow: var(--shadow-base) !important;
}
.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}
.shadow-xl {
  box-shadow: var(--shadow-xl) !important;
}

/* Responsive Utilities */
@media (max-width: 576px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }
}

@media (min-width: 769px) {
  .desktop-only {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }
}

/* Loading States */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--ash-gray) 25%,
    #f0f0f0 50%,
    var(--ash-gray) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

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

/* Accessibility */
.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;
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }
}
