/*
Theme Name: Pristine Sanitation Co
Theme URI: https://kyle.brandonstirrup.com
Author: Brandon Stirrup
Description: Custom theme for Pristine Sanitation Co LLC — premium commercial & residential cleaning in Atlanta, GA.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: pristine
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --gold: #C9A84C;
  --gold-light: #E0C76A;
  --gold-dark: #A8892E;
  --purple: #6B2FA0;
  --purple-light: #8B4FC6;
  --purple-dark: #4A1D73;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray: #CCCCCC;
  --gray-dark: #888888;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--white);
  background-color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  border-color: var(--purple);
}

.btn-purple:hover {
  background: transparent;
  color: var(--purple-light);
  border-color: var(--purple-light);
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: var(--transition);
  overflow: visible;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

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

.site-logo-img {
  height: 70px;
  width: auto;
  transition: var(--transition);
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  position: relative;
}

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

.nav-menu a:hover {
  color: var(--gold);
}

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

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
  color: var(--black) !important;
  background: var(--gold) !important;
  border-radius: 4px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger to X animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('assets/img/hero.png') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(26, 26, 26, 0.85) 40%,
    rgba(74, 29, 115, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--white);
}

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

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SECTION DEFAULTS
   ============================================ */
.section {
  padding: 100px 0;
}

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

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

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--purple-light);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.section-header h2 .gold {
  color: var(--gold);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-dark);
  max-width: 600px;
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--black-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* ============================================
   ADD-ONS SECTION
   ============================================ */
.addons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.addon-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(107, 47, 160, 0.15);
  border: 1px solid rgba(107, 47, 160, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  cursor: default;
}

.addon-tag:hover {
  background: rgba(107, 47, 160, 0.3);
  border-color: var(--purple-light);
}

.addon-tag .icon {
  font-size: 1.1rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 24px;
}

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

.about-text p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--gold);
}

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

.highlight-item p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 0;
}

.about-visual {
  position: relative;
}

.about-card {
  background: linear-gradient(135deg, var(--black-light), rgba(107, 47, 160, 0.1));
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
}

.about-card-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  color: var(--gold);
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-card p {
  color: var(--gray-dark);
  font-style: italic;
  font-size: 1.1rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-item {
  text-align: center;
  padding: 30px 20px;
}

.why-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--purple-light);
  margin-bottom: 12px;
}

.why-item h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--purple-dark), var(--black));
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple), var(--gold));
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail-text span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-dark);
  margin-bottom: 4px;
}

.contact-detail-text a,
.contact-detail-text p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

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

.contact-form {
  background: var(--black-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 16px;
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

.form-group select option {
  background: var(--black);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-addons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.addon-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--black);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}

.addon-check:hover {
  border-color: var(--gold);
  color: var(--white);
}

.addon-check input[type="checkbox"] {
  accent-color: var(--gold);
  width: auto;
  cursor: pointer;
}

/* ============================================
   FLOATING CTA BUTTON
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A0A;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.45), 0 3px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.floating-cta i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 0.8rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--gray-dark);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-dark);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    font-size: 1.2rem;
    padding: 18px 0;
    width: 80%;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 12px;
    padding: 14px 36px !important;
    font-size: 1rem !important;
    width: auto !important;
    border-bottom: none !important;
  }

  .menu-toggle {
    display: flex;
  }

  .site-logo-img {
    height: 50px;
  }

  .nav-wrapper {
    padding: 8px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

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

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ============================================
   LIGHT THEME (System Preference)
   ============================================ */
@media (prefers-color-scheme: light) {
  :root {
    --black: #FFFFFF;
    --black-light: #F5F5F5;
    --white: #1A1A1A;
    --gray: #444444;
    --gray-dark: #666666;
    --gray-light: #EEEEEE;
    --gold: #A8892E;
    --gold-light: #C9A84C;
    --gold-dark: #8A6F1E;
    --purple: #6B2FA0;
    --purple-light: #7B3FB5;
    --purple-dark: #E8E0F0;
  }

  body {
    background-color: #FFFFFF;
    color: #1A1A1A;
  }

  .site-header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: rgba(201, 168, 76, 0.15);
  }

  .nav-menu a {
    color: #CCCCCC;
  }

  .nav-menu a:hover {
    color: #C9A84C;
  }

  .nav-cta {
    color: #0A0A0A !important;
    background: #C9A84C !important;
  }

  .nav-cta:hover {
    background: #E0C76A !important;
  }

  .menu-toggle span {
    background: #C9A84C;
  }

  .hero::before {
    background: linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.92) 0%,
      rgba(26, 26, 26, 0.85) 40%,
      rgba(74, 29, 115, 0.8) 100%
    );
  }

  .hero h1,
  .hero p,
  .hero .hero-tagline,
  .hero .hero-badge {
    color: #FFFFFF;
  }

  .hero h1 .gold {
    color: #C9A84C;
  }

  .hero .hero-tagline {
    color: #C9A84C;
  }

  .hero p {
    color: #CCCCCC;
  }

  .hero .hero-badge {
    color: #C9A84C;
    border-color: rgba(201, 168, 76, 0.4);
  }

  .service-card {
    background: #FFFFFF;
    border-color: rgba(168, 137, 46, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .service-card:hover {
    border-color: rgba(168, 137, 46, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  .addon-tag {
    background: rgba(107, 47, 160, 0.08);
    border-color: rgba(107, 47, 160, 0.2);
    color: #1A1A1A;
  }

  .about-card {
    background: linear-gradient(135deg, #F5F5F5, rgba(107, 47, 160, 0.06));
    border-color: rgba(168, 137, 46, 0.15);
  }

  .cta-section {
    background: linear-gradient(135deg, #F5F5F5, #E8E0F0);
  }

  .cta-section h2 {
    color: #1A1A1A;
  }

  .btn-outline {
    color: var(--gold);
    border-color: var(--gold);
  }

  .btn-outline:hover {
    background: var(--gold);
    color: #FFFFFF;
  }

  .btn-gold {
    color: #FFFFFF;
  }

  .btn-gold:hover {
    background: transparent;
    color: var(--gold);
  }

  .contact-form {
    background: #FFFFFF;
    border-color: rgba(168, 137, 46, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: #F5F5F5;
    color: #1A1A1A;
    border-color: rgba(168, 137, 46, 0.2);
  }

  .form-group select option {
    background: #FFFFFF;
    color: #1A1A1A;
  }

  .addon-check {
    background: #F5F5F5;
    color: #666666;
    border-color: rgba(168, 137, 46, 0.2);
  }

  .contact-detail-icon {
    background: rgba(168, 137, 46, 0.08);
    border-color: rgba(168, 137, 46, 0.15);
  }

  .site-footer {
    background: #F5F5F5;
    border-top-color: rgba(168, 137, 46, 0.15);
  }

  .footer-social a {
    background: rgba(168, 137, 46, 0.08);
    border-color: rgba(168, 137, 46, 0.2);
  }

  .footer-social a:hover {
    background: var(--gold);
    color: #FFFFFF;
  }

  .nav-menu {
    background: rgba(10, 10, 10, 0.98);
  }

  @media (max-width: 768px) {
    .nav-menu {
      background: rgba(10, 10, 10, 0.98);
    }

    .nav-menu a {
      color: #CCCCCC;
      border-bottom-color: rgba(201, 168, 76, 0.1);
    }
  }

  .floating-cta {
    background: linear-gradient(135deg, #A8892E, #C9A84C);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(168, 137, 46, 0.35), 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .floating-cta:hover {
    background: linear-gradient(135deg, #C9A84C, #A8892E);
    color: #FFFFFF;
    box-shadow: 0 6px 28px rgba(168, 137, 46, 0.5), 0 3px 12px rgba(0, 0, 0, 0.2);
  }
}
