@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #d4af37; /* Metallic Gold */
  --primary-hover: #c5a02e;
  --primary-light: rgba(212, 175, 55, 0.12);
  --secondary: #10b981; /* Eco Emerald Green */
  --secondary-hover: #059669;
  --secondary-light: rgba(16, 185, 129, 0.1);
  --bg-dark: #0a0b0d; /* Charcoal black */
  --bg-card: #12141a; /* Elevated card grey */
  --bg-input: #1a1d26; /* Form input bg */
  --text-main: #f3f4f6; /* Off-white body */
  --text-muted: #9ca3af; /* Medium grey */
  --text-gold: #e5c158; /* Warm golden text */
  --border: rgba(255, 255, 255, 0.05);
  --border-gold: rgba(212, 175, 55, 0.2);
  --border-focus: rgba(212, 175, 55, 0.5);
  --shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.15);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-header: 'Cinzel', Georgia, serif;
  --font-body: 'Outfit', 'Inter', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #252833;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

/* Custom Header with Glassmorphism */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 11, 13, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(10, 11, 13, 0.95);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition);
}

header.scrolled .header-container {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.logo svg {
  fill: var(--primary);
  width: 32px;
  height: 32px;
  transition: var(--transition);
}

.logo:hover svg {
  transform: rotate(-10deg) scale(1.1);
  filter: drop-shadow(0 0 8px var(--primary));
}

.logo img,
.logo-img {
  height: 46px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 6px;
  transition: var(--transition);
}

.logo:hover img,
.logo:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.logo-text span {
  color: var(--primary);
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--primary);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.8rem 1.6rem;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.nav-btn:hover {
  background: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1010;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: var(--transition);
    z-index: 1005;
    padding: 3rem;
  }

  nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(10, 11, 13, 0.95) 40%,
    rgba(10, 11, 13, 0.7) 70%,
    rgba(10, 11, 13, 0.4) 100%
  );
  z-index: 2;
}

@media (max-width: 992px) {
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 11, 13, 0.95) 60%,
      rgba(10, 11, 13, 0.8) 100%
    );
  }
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 650px;
}

.badge-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  color: var(--text-main);
}

.badge-tag.gold {
  border-color: var(--border-gold);
  background: var(--primary-light);
  color: var(--primary);
}

.badge-tag.green {
  border-color: rgba(16, 185, 129, 0.2);
  background: var(--secondary-light);
  color: var(--secondary);
}

.hero h1 {
  font-family: var(--font-header);
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

.hero h1 span {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 4px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-highlight {
  background: linear-gradient(120deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  background: var(--text-main);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Feature Grid Section */
.section-title-area {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-title-area span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 3px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title-area h2 {
  font-family: var(--font-header);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .section-title-area h2 {
    font-size: 2.2rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  padding: 3rem 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-icon-box {
  width: 65px;
  height: 65px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
  background: var(--primary-light);
  border-color: var(--border-gold);
  transform: scale(1.05) rotate(5deg);
}

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

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Service Scope (Interactive House Zones) */
.scope-section {
  background: var(--bg-card);
  position: relative;
}

.scope-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .scope-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.scope-visual-wrapper {
  position: relative;
  background: var(--bg-dark);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border);
  padding: 3rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
}

.house-wireframe-svg {
  width: 100%;
  max-width: 500px;
  height: auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1.5;
  transition: var(--transition);
}

.house-wireframe-svg .zone-path {
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
}

.house-wireframe-svg .zone-path:hover,
.house-wireframe-svg .zone-path.active {
  stroke: var(--primary);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

.house-wireframe-svg .zone-fill {
  fill: transparent;
  transition: var(--transition);
}

.house-wireframe-svg .zone-path:hover + .zone-fill,
.house-wireframe-svg .zone-path.active + .zone-fill {
  fill: rgba(212, 175, 55, 0.08);
}

.scope-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scope-item-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.scope-item-card:hover, .scope-item-card.active {
  border-color: var(--border-gold);
  background: rgba(212, 175, 55, 0.03);
  transform: translateX(8px);
}

.scope-num {
  font-family: var(--font-header);
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  margin-top: 2px;
}

.scope-item-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  transition: var(--transition);
}

.scope-item-card:hover h4, .scope-item-card.active h4 {
  color: var(--primary);
}

.scope-item-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Covered Pests Section */
.pests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.pest-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.pest-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.pest-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition);
}

.pest-card:hover .pest-card-icon {
  background: var(--primary-light);
  border-color: var(--border-gold);
  transform: scale(1.05);
}

.pest-card-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--text-muted);
  transition: var(--transition);
}

.pest-card:hover .pest-card-icon svg {
  fill: var(--primary);
}

.pest-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pest-info-hint {
  font-size: 0.8rem;
  color: var(--primary);
  opacity: 0;
  transform: translateY(5px);
  transition: var(--transition);
  font-weight: 600;
}

.pest-card:hover .pest-info-hint {
  opacity: 1;
  transform: translateY(0);
}

.pest-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.pest-badge.orange {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary);
  border: 1px solid var(--border-gold);
}

.pest-badge.blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

/* Modal Popup for Pest Detail */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  max-width: 550px;
  width: 90%;
  padding: 3rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.modal-pest-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.modal-pest-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
}

.modal-container h3 {
  font-family: var(--font-header);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.modal-container h3 span {
  font-size: 0.9rem;
  font-family: var(--font-body);
  display: block;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.modal-container p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.modal-details-list {
  list-style: none;
  margin-bottom: 2rem;
}

.modal-details-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.modal-details-list li svg {
  fill: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Pricing and Interactive Booking Widget */
.booking-section {
  position: relative;
  background-color: var(--bg-dark);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.pricing-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  position: relative;
}

.pricing-info-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.pricing-header {
  position: relative;
  z-index: 1;
}

.pricing-title {
  font-family: var(--font-header);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.pricing-price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 2.2rem;
  font-family: var(--font-header);
  color: var(--primary);
  font-weight: 900;
}

.price-val {
  font-size: 5rem;
  font-family: var(--font-header);
  color: var(--primary);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

.price-term {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.pricing-features-list li svg {
  fill: var(--primary);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.pricing-badge-safe {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary-light);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-sm);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.pricing-badge-safe svg {
  fill: var(--secondary);
  width: 24px;
  height: 24px;
}

/* Booking Interactive Calculator Form */
.booking-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.booking-form-header {
  margin-bottom: 2.5rem;
}

.booking-form-header h3 {
  font-family: var(--font-header);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.booking-form-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.calc-widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.calc-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gold);
  margin-bottom: 1rem;
  display: block;
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.calc-beds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .calc-beds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.calc-opt-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-sm);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.calc-opt-card.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}

.calc-opt-card h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.calc-opt-card span {
  font-size: 0.8rem;
  opacity: 0.8;
  display: block;
}

.calc-addons-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.calc-addon-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.calc-addon-item.active {
  border-color: var(--primary-hover);
  background: rgba(212, 175, 55, 0.05);
}

.calc-addon-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.calc-addon-item.active .calc-checkbox {
  border-color: var(--primary);
  background: var(--primary);
}

.calc-checkbox svg {
  width: 12px;
  height: 12px;
  fill: var(--bg-dark);
  opacity: 0;
  transition: var(--transition);
}

.calc-addon-item.active .calc-checkbox svg {
  opacity: 1;
}

.calc-addon-right {
  font-weight: 700;
  color: var(--primary);
}

.calc-total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.calc-total-label {
  font-size: 1rem;
  font-weight: 600;
}

.calc-total-val {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
}

/* Contact / Details Input Section */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

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

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

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

@media (max-width: 576px) {
  .form-group.full-width {
    grid-column: span 1;
  }
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 0.9rem 1.2rem;
  border-radius: var(--border-radius-sm);
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
  background: rgba(255, 255, 255, 0.01);
}

.form-group textarea {
  height: 100px;
  resize: none;
}

.form-nav-btns {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-form-submit {
  flex-grow: 1;
}

/* Success Message State */
.booking-success-box {
  text-align: center;
  padding: 3rem 1.5rem;
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.5s ease forwards;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary-light);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.success-icon-wrapper svg {
  width: 40px;
  height: 40px;
  fill: var(--secondary);
}

.booking-success-box h4 {
  font-family: var(--font-header);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.booking-success-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 350px;
}

/* Warranty Section */
.warranty-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  position: relative;
  overflow: hidden;
}

.warranty-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.warranty-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .warranty-box {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3.5rem 2.5rem;
  }
}

.warranty-badge-big {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.warranty-seal {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 4px double var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-card);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.1), inset 0 0 20px rgba(212, 175, 55, 0.05);
  animation: float 6s ease-in-out infinite;
  padding: 2rem;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.warranty-seal-title {
  font-family: var(--font-header);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.warranty-seal-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-main);
  margin-top: 5px;
  font-weight: 700;
}

.warranty-seal-term {
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 700;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 5px 15px;
  margin-top: 10px;
  color: var(--primary);
}

.warranty-seal-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 8px;
  letter-spacing: 1px;
}

.warranty-info-left h2 {
  font-family: var(--font-header);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.warranty-info-left h2 span {
  display: block;
  font-size: 0.95rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.warranty-info-left p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.warranty-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-step {
  display: flex;
  gap: 1.25rem;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.timeline-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.timeline-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, #171920 0%, #0a0b0d 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-banner h2 {
  font-family: var(--font-header);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Section */
footer {
  background: #050608;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-col h4 {
  font-family: var(--font-header);
  color: var(--text-main);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-col p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-list svg {
  fill: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

/* Submit Form Spinner & Disabled State */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(10, 11, 13, 0.25);
  border-radius: 50%;
  border-top-color: var(--bg-dark);
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

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

button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Location Card Hover Styling */
.location-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold) !important;
  box-shadow: var(--shadow-gold);
}

/* Treatment Directory Links */
.treatment-dir-links a {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.treatment-dir-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Facebook Button Styling System */
.btn-facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d52b7 100%);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.35);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.btn-facebook:hover {
  background: linear-gradient(135deg, #2884ff 0%, #1060d4 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
  color: #ffffff !important;
}

.btn-facebook svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Nav Facebook Icon Button */
.nav-facebook-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(24, 119, 242, 0.15);
  border: 1px solid rgba(24, 119, 242, 0.4);
  color: #38bdf8;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.nav-facebook-btn:hover {
  background: #1877f2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.6);
}

.nav-facebook-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Floating Facebook Action Badge */
.floating-facebook-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 20, 26, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(24, 119, 242, 0.5);
  padding: 10px 18px 10px 12px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(24, 119, 242, 0.35);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.floating-facebook-btn:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: #1877f2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(24, 119, 242, 0.6);
  color: #ffffff;
}

.floating-facebook-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1877f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.floating-facebook-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 600px) {
  .floating-facebook-btn span {
    display: none;
  }
  .floating-facebook-btn {
    padding: 8px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
}

/* Nav Phone Button */
.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-phone-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #ffffff;
  border-color: #ffffff;
}

/* Floating Call Badge */
.floating-call-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 20, 26, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 10px 18px 10px 12px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.35);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.floating-call-btn:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.6);
  color: var(--primary);
}

.floating-call-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .floating-call-btn span {
    display: none;
  }
  .floating-call-btn {
    padding: 8px;
    border-radius: 50%;
    bottom: 20px;
    left: 20px;
  }
}


