/* ================================================================
   BRAVO LAWN CARE LLC — styles.css
   Built by Faery Tech (faerytech.net)

   TABLE OF CONTENTS
   1. CSS Variables (brand colors, fonts)
   2. Global / Base Styles
   3. Navbar
   4. Hero Section
   5. Trust Bar
   6. Services Section
   7. Gallery / Carousel Section
   8. Why Us Section
   9. Contact Section
   10. Footer
   11. Utility Classes
   12. Animations
   13. Responsive / Media Queries
================================================================ */


/* ================================================================
   1. CSS VARIABLES
   Central place to update brand colors.
   --teal       = main brand color (from logo background)
   --teal-dark  = darker shade for nav, hero, contact bg
   --teal-light = lighter shade for hover states, accents
   --green      = leaf green from the logo
   --green-dark = darker green for hover states
   --cream      = soft off-white background for alternating sections
   --charcoal   = near-black for body text
   --muted      = gray for secondary/body text
================================================================ */
:root {
  --teal:        #1d7a74;
  --teal-dark:   #145c57;
  --teal-light:  #2a9d95;
  --green:       #5aaa3a;
  --green-dark:  #3d7d25;
  --cream:       #f4f9f4;
  --charcoal:    #1e2d1e;
  --muted:       #5a6e5a;
  --white:       #ffffff;

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  /* Spacing shorthand */
  --section-padding: 3rem 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.6;
}

/* All headings use Oswald for that bold, professional lawn care feel */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

/* Remove default link underlines */
a {
  text-decoration: none;
}

/* Smooth scrolling when clicking nav links */
html {
  scroll-behavior: smooth;
}


/* ================================================================
   3. NAVBAR
   Sticky top bar. Dark teal background. White text.
================================================================ */

/* Main nav wrapper */
.site-nav {
  background-color: var(--teal-dark);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* Logo image inside the nav */
.nav-logo {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  object-fit: cover;
}

/* Nav links — white with slight transparency */
.site-nav .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}

/* Nav links on hover — full white */
.site-nav .nav-link:hover {
  color: var(--white) !important;
}

/* Hamburger icon — white lines on mobile */
.site-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.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.85%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Phone CTA button in nav */
.btn-call {
  background-color: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  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(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
}


/* ================================================================
   4. HERO SECTION
   Full-height section with background image + dark overlay.
   Background image is set here so it's easy to swap.
================================================================ */

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  /* ← Replace this URL to change the hero background photo */
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center center / cover no-repeat;
}

/* Semi-transparent dark teal overlay — keeps text readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(20, 92, 87, 0.92) 0%,
    rgba(29, 122, 116, 0.80) 100%
  );
}

/* All hero text content sits above the overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

/* "Serving Hattiesburg, MS" pill badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  animation: fadeDown 0.8s ease both;
}

/* Logo repeated in hero */
.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
  margin-bottom: 1.5rem;
  display: block;
  animation: fadeDown 0.8s ease both;
}

/* Large logo in hero right column */
.hero-logo-large {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.35);
  border: 4px solid rgba(255, 255, 255, 0.15);
  animation: fadeDown 0.8s ease both;
}

/* Main headline */
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeUp 0.9s ease 0.1s both;
}

/* Green accent span inside the headline */
.accent-green {
  color: #7ed95a;
}

/* Subheadline paragraph */
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

/* CTA button group */
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.3s both;
}

/* Primary (green) hero button */
.btn-hero-primary {
  background-color: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: 0.85rem 2rem;
  display: inline-block;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-hero-primary:hover {
  background-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Outline (ghost) hero button */
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 0.85rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.btn-hero-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}


/* ================================================================
   5. TRUST BAR
   Short credibility strip directly below hero.
   Slightly lighter teal than the nav.
================================================================ */

.trust-bar {
  background-color: var(--teal);
  padding: 1rem 0;
}

/* Each trust item = icon + text, centered */
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Green checkmark/icon inside each trust item */
.trust-item i {
  color: #7ed95a;
  font-size: 1rem;
}


/* ================================================================
   6. SERVICES SECTION
   White background. Six cards in a responsive grid.
================================================================ */

.services-section {
  padding: var(--section-padding);
}

/* Reusable section header block */
.section-header {
  margin-bottom: 1.75rem;
}

/* Small all-caps label above section titles */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

/* Main section heading */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.15;
}

/* Supporting paragraph below section title */
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 0;
}

/* Individual service card */
.service-card {
  background-color: var(--white);
  border: 1px solid #e2ede2;
  border-radius: 12px;
  padding: 1.25rem 1.25rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Card lifts and glows on hover */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(29, 122, 116, 0.12);
  border-color: var(--teal-light);
}

/* Circular icon container */
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(29, 122, 116, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--teal);
}

/* Green variant icon for the CTA card */
.service-icon--green {
  background: rgba(90, 170, 58, 0.12);
}

.service-icon--green i {
  color: var(--green);
}

/* Card heading */
.service-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

/* Card body text */
.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

/* CTA card slight teal tint */
.service-card--cta {
  background: rgba(29, 122, 116, 0.04);
  border-color: var(--teal-light);
}


/* ── Compact service card (no description, icon + title only) ──
   Used in the split services/tiktok layout
──────────────────────────────────────────────────────────────── */
.service-card--sm {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 100%;
  min-height: 140px;
}

.service-card--sm .service-icon {
  margin-bottom: 0;
  width: 48px;
  height: 48px;
}

.service-card--sm h4 {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.service-card--sm p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* "Ask us →" link inside CTA card */
.service-ask-link {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  display: inline-block;
  transition: color 0.2s ease;
}

.service-ask-link:hover {
  color: var(--teal-dark);
}


/* ================================================================
   7. GALLERY / CAROUSEL SECTION
   Dark teal background. Bootstrap carousel with custom styling.
================================================================ */

.gallery-section {
  padding: var(--section-padding);
  background-color: var(--charcoal);
}

/* Override section label + title colors for dark background */
.gallery-section .section-label {
  color: #7ed95a;
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

/* Carousel outer wrapper — constrain max width */
#bravoCarousel {
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

/* Actual photo slides — set height here */
.carousel-img {
  height: 480px;
  object-fit: cover;
}

/* Placeholder shown until real photos are added */
.carousel-placeholder {
  height: 480px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.carousel-placeholder i {
  font-size: 3rem;
}

.carousel-placeholder p {
  font-size: 0.9rem;
  margin: 0;
}

/* ── Carousel arrow controls ── */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #1d7a74;
  color: #1d7a74;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev { left: -20px; }
.carousel-control-next { right: -20px; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #1d7a74;
  color: white;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(40%) sepia(80%) saturate(400%) hue-rotate(140deg);
  width: 18px;
  height: 18px;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* Caption overlay at bottom of each slide */
.carousel-caption {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  text-align: left;
  border-radius: 0 0 12px 12px;
}

.carousel-caption h5 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.carousel-caption p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin: 0;
}

/* Dot indicators */
.carousel-indicators [data-bs-target] {
  background-color: rgba(255, 255, 255, 0.5);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
}

.carousel-indicators .active {
  background-color: #7ed95a;
}

/* TikTok/FB link block below carousel */

/* ── TikTok carousel wrapper ────────────────────────────────
   Centers one video at a time in a clean rounded container
──────────────────────────────────────────────────────────── */
.tiktok-wrap {
  width: 325px;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  background: #000;
  /* Ensure border-radius clips children including injected iframes */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  isolation: isolate;
}

/* Make the blockquote fill the wrapper */
.tiktok-wrap .tiktok-embed {
  width: 325px !important;
  max-width: 325px !important;
  min-width: 325px !important;
  margin: 0 !important;
  border-radius: 20px;
  overflow: hidden;
}

/* Force iframe to respect rounded corners */
.tiktok-wrap iframe {
  border-radius: 20px !important;
  overflow: hidden !important;
}

/* Carousel padding so arrows don't overlap video */
#tiktokCarousel {
  padding: 0 3rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Gold dots for tiktok carousel */
.tiktok-indicators [data-bs-target] {
  background-color: rgba(255,255,255,0.4);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
}
.tiktok-indicators .active {
  background-color: #c49a10;
}

.gallery-tiktok-link {
  text-align: center;
  margin-top: 2.5rem;
}

.gallery-tiktok-link p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  font-weight: 300;
}

.gallery-social-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* TikTok button */
.btn-social-tiktok {
  background-color: var(--white);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.75rem 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-social-tiktok:hover {
  background-color: #f0f0f0;
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* Facebook button */
.btn-social-fb {
  background-color: #1877f2;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.75rem 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-social-fb:hover {
  background-color: #1464d0;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-social-nd {
  background-color: #00b259;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.75rem 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.btn-social-nd:hover {
  background-color: #009e4e;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-social-cal {
  background-color: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.75rem 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.btn-social-cal:hover {
  background-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
}


/* ================================================================
   8. WHY US SECTION
   Soft cream background. Two-column layout.
================================================================ */

.why-section {
  padding: var(--section-padding);
  background-color: var(--cream);
}

/* Teal CTA button used in why section */
.btn-teal {
  background-color: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: 0.85rem 2rem;
  display: inline-block;
  margin-top: 1.5rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-teal:hover {
  background-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Each numbered "why" point */
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

/* Last item has no bottom margin */
.why-item--last {
  margin-bottom: 0;
}

/* Large number (01, 02...) */
.why-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  min-width: 40px;
}

/* Text block beside the number */
.why-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.why-text p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}


/* ================================================================
   9. CONTACT SECTION
   Dark teal background. Two columns: info cards + quote form.
================================================================ */

.contact-section {
  padding: var(--section-padding);
  background-color: var(--teal-dark);
}

/* Section label / title / sub overrides for dark background */
.section-label--light {
  color: #7ed95a;
}

.section-title--light {
  color: var(--white);
}

.section-sub--light {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

/* Contact cards wrapper */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Individual contact card (phone, FB, TikTok, Nextdoor) */
.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
  color: var(--white);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  color: var(--white);
}

/* Icon box inside each contact card */
.contact-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(90, 170, 58, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon i {
  font-size: 1.3rem;
  color: #7ed95a;
}

/* Text beside the icon */
.contact-card-text {
  display: flex;
  flex-direction: column;
}

.contact-card-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
}

.contact-card-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

/* Quote form card */
.quote-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2.5rem;
}

.quote-form-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}

/* Form labels inside dark form */
.quote-form .form-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Text inputs on dark background */
.quote-form .form-control,
.quote-form .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 6px;
  padding: 0.7rem 1rem;
}

.quote-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Focus ring on dark inputs */
.quote-form .form-control:focus,
.quote-form .form-select:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(42, 157, 149, 0.2);
  color: var(--white);
}

/* Dropdown options need explicit background on dark form */
.quote-form .form-select option {
  background-color: var(--teal-dark);
  color: var(--white);
}

/* Submit button */
.btn-quote {
  background-color: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  padding: 0.85rem;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-quote:hover {
  background-color: var(--green-dark);
}


/* ================================================================
   10. FOOTER
   Near-black background. Three columns: logo, copyright, socials.
================================================================ */

.site-footer {
  background-color: #111a11;
  padding: 2.5rem 0;
}

/* Logo in footer — inverted to white */
.footer-logo {
  height: 56px;
  width: 56px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.9;
  display: block;
  margin-bottom: 0.5rem;
}

.faerytech-footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0;
}

/* Faery Tech footer credit */
.faerytech-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}
.faerytech-credit:hover {
  color: rgba(255, 255, 255, 0.85);
}
.faerytech-credit-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.75;
}
.faerytech-credit strong {
  color: rgba(255, 255, 255, 0.7);
}

/* Faery Tech footer credit */
.faerytech-credit {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  margin: 0;
}

.footer-phone {
  margin-bottom: 0.25rem;
}

.footer-phone a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-phone a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin: 0;
}

/* "Site by Faery Tech" credit */
.footer-credit {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  margin: 0.25rem 0 0;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: #7ed95a;
}

/* Social icon row */
.footer-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Individual social icon button */
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
  background-color: var(--teal);
  color: var(--white);
}


/* ================================================================
   11. UTILITY CLASSES
   Reusable helpers that don't belong to a specific section.
================================================================ */

/* Visually hidden (accessibility — for screen readers) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ================================================================
   12. ANIMATIONS
   Used by hero elements on page load.
================================================================ */

/* Fade in from below */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in from above */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================================================================
   13. RESPONSIVE / MEDIA QUERIES
================================================================ */

/* Tablet and below */
@media (max-width: 991px) {
  /* Nav links stack vertically in mobile menu */
  .site-nav .navbar-nav {
    padding: 1rem 0;
    gap: 0;
  }

  .btn-call {
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Center hero content on small screens */
  .hero {
    text-align: center;
    min-height: 80vh;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 100px;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
  }

  /* Carousel height reduced on mobile */
  .carousel-img,
  .carousel-placeholder {
    height: 300px;
  }

  /* Stack contact columns */
  .contact-section .row {
    flex-direction: column;
  }

  /* Footer center align on mobile */
  .site-footer .col-md-4 {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}