/* ================================================================
   CHOSENONE LLC CLEANING SERVICES — styles.css
   Built by Faery Tech (faerytech.net)

   BRAND COLORS (from flyer & shirt):
   Purple  = primary brand color
   Gold    = accent / premium feel
   Black   = contrast / authority
   White   = clean / clarity

   TABLE OF CONTENTS
   1.  CSS Variables
   2.  Global / Base Styles
   3.  Navbar
   4.  Hero Section
   5.  Trust Bar
   6.  Services Section
   7.  Pricing Section
   8.  Gallery / Carousel Section
   9.  Contact Section
   10. Footer
   11. Animations
   12. Responsive / Media Queries
================================================================ */


/* ================================================================
   1. CSS VARIABLES
   Change brand colors here and they update everywhere
================================================================ */
:root {
  /* Brand purples */
  --purple:       #6b2fa0;
  --purple-dark:  #4a1e72;
  --purple-deep:  #2d1147;
  --purple-light: #9b59d6;
  --purple-mist:  #f3eaff;

  /* Gold accent */
  --gold:         #d4a017;
  --gold-light:   #f0c040;
  --gold-pale:    #fdf6e3;

  /* Neutral */
  --black:        #0e0e0e;
  --charcoal:     #1a1a2e;
  --muted:        #6b6b8a;
  --white:        #ffffff;
  --off-white:    #fafafa;

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --section-padding: 5rem 0;
}


/* ================================================================
   2. GLOBAL / BASE STYLES
================================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

/* Elegant serif headings throughout */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}


/* ================================================================
   3. NAVBAR
   Dark purple background. Gold accent on brand name.
================================================================ */

.site-nav {
  background-color: var(--purple-deep);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

/* Droplet icon in nav brand */
.nav-logo-drop {
  color: var(--gold-light);
  margin-right: 0.4rem;
  font-size: 1.1rem;
}

/* Brand text */
.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

/* "LLC" in lighter gold */
.nav-brand-llc {
  color: var(--gold-light);
  font-weight: 400;
}

/* Nav links */
.site-nav .nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.9rem !important;
  transition: color 0.2s ease;
}

.site-nav .nav-link:hover {
  color: var(--gold-light) !important;
}

/* Mobile hamburger — white lines */
.site-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Phone CTA button in nav */
.btn-call {
  background-color: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-call:hover {
  background-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-1px);
}


/* ================================================================
   4. HERO SECTION
   Rich purple gradient background with sparkle decorations.
   Text centered for a bold, confident look.
================================================================ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  /* Deep purple gradient background */
  background: linear-gradient(
    135deg,
    var(--purple-deep) 0%,
    var(--purple-dark) 50%,
    var(--purple) 100%
  );
  overflow: hidden;
}

/* Subtle dark overlay for depth */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(212, 160, 23, 0.08) 0%,
    transparent 60%
  );
}

/* Floating sparkle characters — purely decorative CSS elements */
.hero-sparkle {
  position: absolute;
  color: var(--gold-light);
  font-size: 1.2rem;
  opacity: 0.25;
  animation: sparkleFloat 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-sparkle--1 { top: 15%; left: 8%; animation-delay: 0s; }
.hero-sparkle--2 { top: 60%; right: 10%; animation-delay: 2s; font-size: 0.8rem; }
.hero-sparkle--3 { top: 30%; right: 20%; animation-delay: 4s; font-size: 1.5rem; }

/* All hero text sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

/* "Hattiesburg, MS" location badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease both;
}

/* "Professional" small text above main headline */
.hero-title-small {
  display: block;
  font-size: 0.45em;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

/* Main headline */
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.75rem;
  animation: fadeUp 0.9s ease 0.1s both;
}

/* Tagline in italic gold */
.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

/* Supporting paragraph */
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
  animation: fadeUp 0.9s ease 0.25s both;
}

/* CTA button group */
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.3s both;
}

/* Primary (gold) hero button */
.btn-hero-primary {
  background-color: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  padding: 0.9rem 2.25rem;
  display: inline-block;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-hero-primary:hover {
  background-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
}

/* Outline hero button */
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 0.9rem 2.25rem;
  display: inline-block;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.btn-hero-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.08);
}


/* ================================================================
   5. TRUST BAR
   Light purple background. Gold icons.
================================================================ */

.trust-bar {
  background-color: var(--purple);
  padding: 1rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.trust-item i {
  color: var(--gold-light);
}


/* ================================================================
   6. SERVICES SECTION
   White background. Two rows of cards.
================================================================ */

.services-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

/* Section header block */
.section-header {
  margin-bottom: 3rem;
}

/* Small all-caps label above section title */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
  margin-bottom: 0.5rem;
}

/* Light version for dark backgrounds */
.section-label--light {
  color: var(--gold-light);
}

/* Main section title */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.15;
}

/* Light version for dark backgrounds */
.section-title--light {
  color: var(--white);
}

/* Supporting text below section title */
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 0;
}

/* Light version */
.section-sub--light {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 2rem;
}

/* Standard service card */
.service-card {
  background-color: var(--white);
  border: 1px solid #e8e0f5;
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(107, 47, 160, 0.12);
  border-color: var(--purple-light);
}

/* Accent card variant (specialty services row) */
.service-card--accent {
  background-color: var(--gold-pale);
  border-color: rgba(212, 160, 23, 0.3);
}

.service-card--accent:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.15);
}

/* Icon container */
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(107, 47, 160, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--purple);
}

/* Gold icon variant */
.service-icon--gold {
  background: rgba(212, 160, 23, 0.12);
}

.service-icon--gold i {
  color: var(--gold);
}

/* Card heading */
.service-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

/* Card body text */
.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}


/* ================================================================
   7. PRICING SECTION
   Very light purple background. Two pricing cards + add-ons.
================================================================ */

.pricing-section {
  padding: var(--section-padding);
  background-color: var(--purple-mist);
}

/* Individual pricing card */
.pricing-card {
  background-color: var(--white);
  border: 1px solid #e0d4f5;
  border-radius: 20px;
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}

.pricing-card:hover {
  box-shadow: 0 16px 48px rgba(107, 47, 160, 0.12);
}

/* Featured card — gold border treatment */
.pricing-card--featured {
  border-color: var(--gold);
  position: relative;
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.12);
}

/* "Most Thorough" badge on featured card */
.pricing-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 1.75rem;
}

/* Icon in pricing card header */
.pricing-icon {
  width: 52px;
  height: 52px;
  background: rgba(107, 47, 160, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pricing-icon i {
  font-size: 1.4rem;
  color: var(--purple);
}

/* Gold icon variant */
.pricing-icon--gold {
  background: rgba(212, 160, 23, 0.12);
}

.pricing-icon--gold i {
  color: var(--gold);
}

/* Tier heading */
.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

/* "Includes: ..." text under the tier name */
.pricing-includes {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* Container for the three size/price rows */
.pricing-tiers {
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Individual size/price row */
.pricing-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--purple-mist);
  border-radius: 8px;
  border-left: 3px solid var(--purple-light);
}

/* Gold left border for featured card tiers */
.pricing-card--featured .pricing-tier {
  background: var(--gold-pale);
  border-left-color: var(--gold);
}

/* Size label (Small / Medium / Large) */
.tier-size {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

/* Sq ft note beside size label */
.tier-size span {
  display: block;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Price (bold) */
.tier-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple);
}

/* Gold price for featured card */
.pricing-card--featured .tier-price {
  color: var(--gold);
}

/* "/ 3 hrs" note beside price */
.tier-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
}

/* Book button on pricing card */
.btn-book {
  display: block;
  text-align: center;
  background-color: var(--purple);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  padding: 0.85rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-book:hover {
  background-color: var(--purple-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Gold book button for featured card */
.btn-book--gold {
  background-color: var(--gold);
  color: var(--black);
}

.btn-book--gold:hover {
  background-color: var(--gold-light);
  color: var(--black);
}

/* Appliance add-ons block */
.appliance-addons {
  margin-top: 3rem;
  text-align: center;
}

.appliance-addons h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

/* Individual addon pill */
.addon-item {
  background: var(--white);
  border: 1px solid #e0d4f5;
  border-radius: 12px;
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 160px;
}

.addon-item i {
  font-size: 1.5rem;
  color: var(--purple-light);
  margin-bottom: 0.25rem;
}

.addon-item span {
  color: var(--muted);
  font-size: 0.85rem;
}

.addon-item strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--charcoal);
}

/* Important notices box */
.notices-box {
  margin-top: 2.5rem;
  background: rgba(107, 47, 160, 0.06);
  border: 1px solid rgba(107, 47, 160, 0.15);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.notices-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notices-box ul {
  margin: 0;
  padding-left: 1.25rem;
}

.notices-box ul li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.notices-box ul li:last-child {
  margin-bottom: 0;
}


/* ================================================================
   8. GALLERY / CAROUSEL SECTION
   Dark purple background. Bootstrap carousel.
================================================================ */

.gallery-section {
  padding: var(--section-padding);
  background-color: var(--purple-deep);
}

.gallery-section .section-label {
  color: var(--gold-light);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

/* Carousel wrapper */
#chosenCarousel {
  border-radius: 16px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Actual photo slides */
.carousel-img {
  height: 480px;
  object-fit: cover;
}

/* Placeholder until real photos are added */
.carousel-placeholder {
  height: 480px;
  background: rgba(107, 47, 160, 0.2);
  border: 2px dashed rgba(212, 160, 23, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.35);
}

.carousel-placeholder i {
  font-size: 3rem;
}

.carousel-placeholder p {
  font-size: 0.9rem;
  margin: 0;
}

/* Caption overlay at bottom of each slide */
.carousel-caption {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: left;
}

.carousel-caption h5 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.carousel-caption p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin: 0;
}

/* Dot indicators — gold active dot */
.carousel-indicators [data-bs-target] {
  background-color: rgba(255, 255, 255, 0.4);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
}

.carousel-indicators .active {
  background-color: var(--gold-light);
}


/* ================================================================
   9. CONTACT SECTION
   Deep purple background. Left = contact cards, right = form.
================================================================ */

.contact-section {
  padding: var(--section-padding);
  background-color: var(--purple-dark);
}

/* Contact cards wrapper */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Individual contact card */
.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--white);
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  color: var(--white);
}

/* Static card (no hover / not a link) */
.contact-card--static {
  cursor: default;
}

.contact-card--static:hover {
  transform: none;
}

/* Icon box */
.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 160, 23, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon i {
  font-size: 1.2rem;
  color: var(--gold-light);
}

.contact-card-text {
  display: flex;
  flex-direction: column;
}

.contact-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}

.contact-card-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

/* Booking form card */
.booking-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
}

.booking-form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
}

/* Labels */
.booking-form .form-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

/* Small note inside label (pet fee) */
.form-note {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 400;
}

/* Inputs on dark background */
.booking-form .form-control,
.booking-form .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 8px;
  padding: 0.7rem 1rem;
}

.booking-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
  color: var(--white);
}

/* Dropdown options */
.booking-form .form-select option {
  background-color: var(--purple-dark);
  color: var(--white);
}

/* Radio button labels */
.booking-form .form-check-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

/* Submit button */
.btn-book-submit {
  width: 100%;
  background-color: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 50px;
  padding: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-book-submit:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}


/* ================================================================
   10. FOOTER
   Near-black background. Purple drop icon accent.
================================================================ */

.site-footer {
  background-color: var(--black);
  padding: 2.5rem 0;
}

/* Brand name in footer */
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Drop icon in footer brand */
.footer-drop {
  color: var(--gold-light);
}

.footer-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  margin: 0;
}

.footer-phone,
.footer-email {
  margin-bottom: 0.2rem;
}

.footer-phone a,
.footer-email a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-phone a:hover,
.footer-email a:hover {
  color: var(--gold-light);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  margin: 0.25rem 0 0;
}

/* "Site by Faery Tech" credit */
.footer-credit {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  margin: 0.2rem 0 0;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--gold-light);
}

.footer-location {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-location i {
  color: var(--gold-light);
  margin-right: 0.3rem;
}


/* ================================================================
   11. ANIMATIONS
================================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Sparkle floating animation */
@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
  50%       { transform: translateY(-12px) rotate(15deg); opacity: 0.5; }
}


/* ================================================================
   12. RESPONSIVE / MEDIA QUERIES
================================================================ */

/* Tablet */
@media (max-width: 991px) {
  .site-nav .navbar-nav {
    padding: 1rem 0;
  }

  .btn-call {
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
  }

  /* Pricing cards full width on tablet */
  .pricing-card--featured {
    margin-top: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    min-height: 85vh;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .carousel-img,
  .carousel-placeholder {
    height: 300px;
  }

  .notices-box {
    padding: 1.5rem;
  }

  /* Footer stack */
  .site-footer .col-md-4 {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-location {
    text-align: center;
  }
}