/* ==========================================================================
   Mow & Glow Property Services — Modernized Landing Page Stylesheet
   Brand Colors:
   - Primary Slate Charcoal Background: #363f48
   - Secondary Card Background: #2b3238
   - Mint Title Accent: #cef0e6
   - Teal Secondary Accent: #9ae1cc
   - Pure White: #ffffff
   ========================================================================== */

:root {
  --bg-dark: #363f48;
  --bg-card: #2b3238;
  --bg-card-hover: #313941;
  --color-mint: #cef0e6;
  --color-teal: #9ae1cc;
  --color-teal-hover: #7cd2b8;
  --color-white: #ffffff;
  --color-text-muted: #d0d7de;
  --color-error: #ff9c9c;

  --font-heading: 'Julius Sans One', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --nav-height: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 20px rgba(154, 225, 204, 0.25);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: clip;
  max-width: 100%;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 60px; /* Space for mobile sticky action bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

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

a:hover {
  color: var(--color-mint);
}

/* Typography Utilities */
.mint-text, .mint-title {
  color: var(--color-mint) !important;
}

.teal-accent {
  color: var(--color-teal) !important;
}

.white-text {
  color: var(--color-white) !important;
}

.font-semibold {
  font-weight: 600;
}

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

/* Common Container */
.section-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Section Headings */
.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--color-teal);
  color: var(--bg-dark);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--color-mint);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-teal);
  color: var(--color-mint);
}

.btn-secondary:hover {
  background-color: rgba(154, 225, 204, 0.1);
  border-color: var(--color-mint);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-nav-call {
  background-color: var(--color-teal);
  color: var(--bg-dark);
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
}

.btn-nav-call:hover {
  background-color: var(--color-mint);
  color: var(--bg-dark);
}

/* Navbar (Sticky Navigation Header) */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: rgba(54, 63, 72, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(154, 225, 204, 0.2);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background-color: rgba(43, 50, 56, 0.98);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-teal);
}

.nav-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  .nav-container {
    height: 100%;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
  }

  .brand-title,
  .logo-text {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  #nav-call-btn {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .brand-title {
    font-size: 1.3rem;
  }
}

.nav-menu {
  display: none;
}

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

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-teal);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-mint);
}

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

.nav-link-quote {
  color: var(--color-teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-mint);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer Overlay */
@media (max-width: 991px) {
  .nav-menu.open {
    display: block;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-bottom: 2px solid var(--color-teal);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    z-index: 999;
  }

  .nav-menu.open .nav-list {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .nav-menu.open .nav-link {
    font-size: 1.1rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem 5rem 1.25rem;
  background-image: url('https://primary.jwwb.nl/public/j/w/b/temp-emvlsfwthmslsvmukeyz/1786013671792-standard-y55u9q.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(54, 63, 72, 0.85) 0%, rgba(43, 50, 56, 0.95) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0 auto;
}

.hero-logo-img {
  max-width: 320px;
  height: auto;
  margin: 0 auto 1.5rem auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

@media (min-width: 768px) {
  .hero-logo-img {
    max-width: 420px;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-mint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

.hero-sectors {
  font-size: 1rem;
  color: var(--color-teal);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-sectors {
    font-size: 1.2rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (min-width: 576px) {
  .hero-cta-group {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.btn-hero-call, .btn-hero-quote {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  min-width: 220px;
}

/* Trust Signals Bar */
.trust-bar-section {
  background-color: var(--bg-card);
  border-top: 1px solid rgba(154, 225, 204, 0.15);
  border-bottom: 1px solid rgba(154, 225, 204, 0.15);
  padding: 1.25rem 0;
}

.trust-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 992px) {
  .trust-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--color-mint);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.trust-icon {
  flex-shrink: 0;
  color: var(--color-teal);
}

/* About / Tagline Section */
.about-section {
  padding: 4rem 0;
  background-color: var(--bg-dark);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.badge-tag {
  display: inline-block;
  background-color: rgba(154, 225, 204, 0.12);
  color: var(--color-teal);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.divider-line {
  width: 80px;
  height: 2px;
  background-color: var(--color-teal);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--color-white);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.business-attributes-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pill {
  background-color: var(--bg-card);
  border: 1px solid var(--color-teal);
  color: var(--color-mint);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Our Services Section (6 Core Cards) */
.services-section {
  padding: 5rem 0;
  background-color: #2e363e;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(154, 225, 204, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--color-teal);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #1e242b;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-mint);
  margin-bottom: 0.75rem;
}

.service-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-cta {
  font-weight: 600;
  color: var(--color-teal);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.service-cta:hover {
  color: var(--color-mint);
  transform: translateX(4px);
}

.services-footer-badge {
  padding-top: 1rem;
  font-size: 1.05rem;
}

/* Quick Info Strip */
.quick-info-section {
  padding: 4rem 0;
  background-color: var(--bg-dark);
}

.quick-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .quick-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quick-info-card {
  background-color: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(154, 225, 204, 0.15);
  transition: transform var(--transition-normal);
}

.quick-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-teal);
}

.quick-info-icon {
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: rgba(154, 225, 204, 0.1);
  border-radius: 50%;
}

.quick-info-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-mint);
  margin-bottom: 0.5rem;
}

.quick-info-text {
  font-size: 0.95rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.quick-info-subtext {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.info-link {
  color: var(--color-teal);
  font-weight: 600;
}

/* Project Galleries Section */
.galleries-section {
  padding: 5rem 0;
  background-color: #272e35;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.gallery-tab-btn {
  background-color: var(--bg-card);
  border: 2px solid rgba(154, 225, 204, 0.3);
  color: var(--color-white);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-tab-btn:hover {
  border-color: var(--color-teal);
  color: var(--color-mint);
}

.gallery-tab-btn.active {
  background-color: var(--color-teal);
  color: var(--bg-dark);
  border-color: var(--color-teal);
}

.gallery-content {
  display: none;
}

.gallery-content.active {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.load-more-wrapper {
  margin-bottom: 2.5rem;
}

.btn-load-more {
  padding: 0.75rem 2.5rem;
  font-size: 0.95rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  border: 1px solid rgba(154, 225, 204, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 50, 56, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-overlay span {
  color: var(--color-mint);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-teal);
  border-radius: var(--radius-full);
  background-color: rgba(54, 63, 72, 0.8);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info-box {
  background-color: var(--bg-card);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-teal);
}

.gallery-info-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.gallery-bullet-list {
  list-style: none;
}

.gallery-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.gallery-bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: bold;
}

/* Reviews Section */
.reviews-section {
  padding: 4rem 0;
  background-color: var(--bg-dark);
}

.reviews-card {
  background-color: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(154, 225, 204, 0.2);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.rating-stars {
  color: #ffca28;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}

.reviews-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.reviews-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-reviews {
  background-color: var(--color-teal);
  color: var(--bg-dark);
  font-size: 1.05rem;
  padding: 0.85rem 2.2rem;
}

.btn-reviews:hover {
  background-color: var(--color-mint);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Visually Distinct Embedded Quote Form (R3 Mandate) */
.quote-form-section {
  padding: 5rem 0;
  background-color: #22282f;
}

.quote-form-card {
  background-color: #2b3238;
  border: 2px solid #9ae1cc; /* Crisp teal border matching requirement R3 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(154, 225, 204, 0.2); /* Glowing drop shadow */
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .quote-form-card {
    padding: 3.5rem 3rem;
  }
}

.quote-badge {
  display: inline-block;
  background-color: rgba(154, 225, 204, 0.15);
  color: var(--color-teal);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.quote-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.quote-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (min-width: 640px) {
  .grid-2-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-mint);
}

.required-star {
  color: var(--color-error);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background-color: #1d2227;
  border: 1.5px solid rgba(154, 225, 204, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 10px rgba(154, 225, 204, 0.4);
  background-color: #242b32;
}

.form-select option {
  background-color: #2b3238;
  color: var(--color-white);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-teal);
  cursor: pointer;
}

.form-submit-wrapper {
  margin-top: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  background-color: var(--color-teal);
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow);
}

.btn-submit:hover {
  background-color: var(--color-mint);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.error-msg {
  display: none;
  font-size: 0.8rem;
  color: var(--color-error);
  margin-top: 0.2rem;
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea {
  border-color: var(--color-error);
}

.form-group.has-error .error-msg {
  display: block;
}

.form-privacy-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}

.form-status.is-error {
  display: block;
  color: #ffd7d7;
  background-color: rgba(244, 67, 54, 0.12);
  border: 1px solid rgba(244, 67, 54, 0.55);
}

.form-status a {
  color: var(--color-mint);
  font-weight: 600;
  text-decoration: underline;
}

.btn-submit:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}

/* Sponsorship Section */
.sponsorship-section {
  padding: 4rem 0;
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(154, 225, 204, 0.1);
}

.sponsorship-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.sponsorship-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.sponsorship-badge-wrapper {
  margin: 0 auto 1.5rem auto;
  display: inline-block;
}

.sponsorship-badge-img {
  width: 180px;
  height: auto;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-teal);
}

.location-tag {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-mint);
  letter-spacing: 0.05em;
}

/* Main Footer */
.main-footer {
  background-color: #1e242b;
  padding: 4rem 0 2rem 0;
  border-top: 2px solid var(--color-teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--bg-card);
  border: 1px solid rgba(154, 225, 204, 0.3);
  border-radius: 50%;
  color: var(--color-teal);
  transition: all var(--transition-fast);
}

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

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-col ul li a:hover {
  color: var(--color-mint);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Mobile Sticky Bottom Action Bar */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #1d2227;
  border-top: 1px solid var(--color-teal);
  display: flex;
  z-index: 900;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .mobile-action-bar {
    display: none;
  }
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 2px;
  transition: background-color var(--transition-fast);
}

.mobile-action-btn:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.action-call {
  background-color: rgba(154, 225, 204, 0.15);
  color: var(--color-mint);
}

.action-quote {
  background-color: var(--color-teal);
  color: var(--bg-dark);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  z-index: 2001;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-teal);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--color-mint);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* Toast Success Modal */
.toast-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.toast-modal.active {
  display: flex;
}

.toast-card {
  background-color: var(--bg-card);
  border: 2px solid var(--color-teal);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 480px;
  text-align: center;
  animation: toastPop 0.3s ease-out;
}

@keyframes toastPop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.toast-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(154, 225, 204, 0.2);
  color: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem auto;
}

.toast-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.toast-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.toast-close-btn {
  width: 100%;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
