/*
Theme Name: Metro Home Scout
Theme URI: https://metrohomescout.com
Author: Metro Home Scout
Description: Professional cash home buyers theme for Metro Home Scout - We buy houses in Michigan for cash.
Version: 1.3.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: metro-home-scout
*/

/* ========================================================================
   CSS RESET & BASE
   ======================================================================== */

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

* {
  margin: 0;
  padding: 0;
}

/* ========================================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ======================================================================== */

:root {
  /* Background & Foreground */
  --background: 210 40% 98%;
  --foreground: 222 47% 11%;

  /* Card */
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;

  /* Primary - Deep Navy Blue */
  --primary: 222 47% 15%;
  --primary-foreground: 0 0% 100%;

  /* Secondary - Light Blue */
  --secondary: 210 40% 96%;
  --secondary-foreground: 222 47% 15%;

  /* Muted */
  --muted: 210 40% 96%;
  --muted-foreground: 215 16% 47%;

  /* Accent - Warm Gold/Amber */
  --accent: 38 92% 50%;
  --accent-foreground: 0 0% 100%;

  /* Destructive */
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;

  /* Borders & Inputs */
  --border: 214 32% 91%;
  --input: 214 32% 91%;
  --ring: 222 47% 15%;

  --radius: 0.75rem;

  /* Custom Brand Tokens */
  --navy-dark: 222 47% 11%;
  --navy: 222 47% 15%;
  --navy-light: 222 35% 25%;
  --gold: 38 92% 50%;
  --gold-dark: 38 92% 45%;
  --gold-light: 43 96% 56%;
  --success: 142 71% 45%;
  --trust-blue: 199 89% 48%;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(222 47% 11%) 0%, hsl(222 47% 20%) 50%, hsl(222 35% 28%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(43 96% 56%) 0%, hsl(38 92% 50%) 50%, hsl(38 92% 45%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(210 40% 98%) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 hsl(222 47% 11% / 0.05);
  --shadow-md: 0 4px 6px -1px hsl(222 47% 11% / 0.1), 0 2px 4px -2px hsl(222 47% 11% / 0.1);
  --shadow-lg: 0 10px 15px -3px hsl(222 47% 11% / 0.1), 0 4px 6px -4px hsl(222 47% 11% / 0.1);
  --shadow-xl: 0 20px 25px -5px hsl(222 47% 11% / 0.1), 0 8px 10px -6px hsl(222 47% 11% / 0.1);
  --shadow-gold: 0 4px 14px 0 hsl(38 92% 50% / 0.4);
  --shadow-card: 0 4px 24px 0 hsl(222 47% 11% / 0.08);
}

/* ========================================================================
   BASE STYLES
   ======================================================================== */

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

/* ========================================================================
   LAYOUT
   ======================================================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.min-h-screen {
  min-height: 100vh;
}

/* ========================================================================
   HEADER
   ======================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--card) / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .header-inner {
    height: 5rem;
  }
}

.site-logo img {
  height: 3rem;
  width: auto;
}

@media (min-width: 768px) {
  .site-logo img {
    height: 3.5rem;
  }
}

/* Desktop Navigation */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.main-nav a {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: hsl(var(--foreground));
}

/* WordPress Menu Support */
.main-nav li {
  list-style: none;
  position: relative;
}

.main-nav > li {
  display: inline-block;
}

.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 10px 25px hsl(var(--navy-dark) / 0.1);
  z-index: 100;
}

.main-nav li:hover > .sub-menu {
  display: block;
}

.main-nav .sub-menu a {
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.main-nav .sub-menu a:hover {
  background: hsl(var(--muted));
}

/* Mobile Menu WordPress Support */
.mobile-menu li {
  list-style: none;
}

.mobile-menu .sub-menu {
  padding-left: 1rem;
  margin-top: 0.25rem;
}

.mobile-menu .sub-menu a {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

/* Header CTA Buttons */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: none;
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
}

.header-offer {
  display: none;
}

@media (min-width: 640px) {
  .header-offer {
    display: block;
  }
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--foreground));
}

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

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
}

.mobile-menu.is-active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu nav {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: hsl(var(--foreground));
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.mobile-menu a:hover {
  background-color: hsl(var(--muted));
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid hsl(var(--border));
}

/* ========================================================================
   BUTTONS
   ======================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Button Sizes */
.btn-default {
  height: 2.75rem;
  padding: 0.5rem 1.25rem;
}

.btn-sm {
  height: 2.25rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.btn-lg {
  height: 3rem;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  border-radius: 0.75rem;
}

.btn-xl {
  height: 3.5rem;
  padding: 0.5rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

/* Button Variants */
.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
  box-shadow: var(--shadow-lg);
}

.btn-cta {
  background: var(--gradient-gold);
  color: hsl(var(--navy-dark));
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.025em;
}

.btn-cta:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.btn-cta:active {
  transform: scale(0.98);
}

.btn-cta-outline {
  background: transparent;
  border: 2px solid hsl(var(--accent));
  color: hsl(var(--accent));
  font-weight: 700;
}

.btn-cta-outline:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.btn-hero {
  background: var(--gradient-gold);
  color: hsl(var(--navy-dark));
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.025em;
}

.btn-hero:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.btn-hero-secondary {
  background-color: hsl(var(--primary-foreground) / 0.1);
  color: hsl(var(--primary-foreground));
  border: 2px solid hsl(var(--primary-foreground) / 0.3);
  backdrop-filter: blur(4px);
  font-weight: 600;
}

.btn-hero-secondary:hover {
  background-color: hsl(var(--primary-foreground) / 0.2);
}

.btn-outline {
  background: transparent;
  border: 2px solid hsl(var(--input));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-color: hsl(var(--accent));
}

.btn-full {
  width: 100%;
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 5rem;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-decoration-1 {
  position: absolute;
  top: 25%;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: hsl(var(--accent) / 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-decoration-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: hsl(var(--accent) / 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 3rem 0 5rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 6rem 0;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

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

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

/* Trust Badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--primary-foreground) / 0.1);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.trust-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: hsl(var(--success));
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.trust-badge span:last-child {
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 500;
}

/* Hero Title */
.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: hsl(var(--primary-foreground));
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

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

.text-gradient-gold {
  background: linear-gradient(135deg, hsl(43 96% 56%) 0%, hsl(38 92% 50%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.8);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

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

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
  }
}

/* Hero Benefits */
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero-benefits {
    justify-content: flex-start;
  }
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary-foreground) / 0.9);
}

.hero-benefit svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--accent));
}

.hero-benefit span {
  font-weight: 500;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-ctas {
    justify-content: flex-start;
  }
}

/* Trust Indicators */
.trust-indicators {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.trust-indicators-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: hsl(var(--primary-foreground) / 0.6);
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .trust-indicators-inner {
    justify-content: flex-start;
  }
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-indicator-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--accent));
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.trust-divider {
  width: 1px;
  height: 2rem;
  background-color: hsl(var(--primary-foreground) / 0.2);
  display: none;
}

@media (min-width: 640px) {
  .trust-divider {
    display: block;
  }
}

/* Hero Form */
.hero-form-wrapper {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .hero-form-wrapper {
    padding-left: 2rem;
  }
}

/* ========================================================================
   QUICK CONTACT FORM (Hero Form)
   ======================================================================== */

.quick-form {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .quick-form {
    padding: 2rem;
  }
}

.quick-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.quick-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.quick-form-subtitle {
  color: hsl(var(--muted-foreground));
}

.quick-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  position: relative;
}

.form-group svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.form-input {
  width: 100%;
  height: 3rem;
  padding: 0.5rem 0.75rem 0.5rem 2.75rem;
  font-size: 1rem;
  border: 1px solid hsl(var(--input));
  border-radius: 0.5rem;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
}

.form-input::placeholder {
  color: hsl(var(--muted-foreground));
}

.quick-form-disclaimer {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-top: 1rem;
}

/* ========================================================================
   SECTION STYLES
   ======================================================================== */

.section {
  padding: 5rem 0;
}

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

.section-bg-muted {
  background-color: hsl(var(--muted) / 0.5);
}

.section-bg-hero {
  background: var(--gradient-hero);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  color: hsl(var(--accent));
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

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

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

.section-title-light {
  color: hsl(var(--primary-foreground));
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
}

.section-description-light {
  color: hsl(var(--primary-foreground) / 0.8);
}

/* ========================================================================
   HOW IT WORKS SECTION
   ======================================================================== */

.steps-grid {
  display: grid;
  gap: 2rem;
}

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

.step-card {
  position: relative;
  background-color: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--accent) / 0.3);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-size: 3.75rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: hsl(var(--muted) / 0.5);
  transition: color 0.3s ease;
}

.step-card:hover .step-number {
  color: hsl(var(--accent) / 0.2);
}

.step-icon {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
}

.step-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: hsl(var(--accent));
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.step-description {
  color: hsl(var(--muted-foreground));
}

/* Connector arrows */
.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 4rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: hsl(var(--border));
  }

  .step-connector svg {
    position: absolute;
    right: -0.75rem;
    top: -0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--accent));
  }
}

/* ========================================================================
   WHY US SECTION
   ======================================================================== */

.features-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.feature-card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--accent) / 0.3);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--accent) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: hsl(var(--accent) / 0.2);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--accent));
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ========================================================================
   SITUATIONS SECTION
   ======================================================================== */

.situations-section {
  position: relative;
  overflow: hidden;
}

.situations-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: hsl(var(--accent) / 0.05);
  filter: blur(48px);
  border-radius: 50%;
}

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

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

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

.situation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--primary-foreground) / 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--primary-foreground) / 0.1);
  transition: background-color 0.2s ease;
}

.situation-item:hover {
  background-color: hsl(var(--primary-foreground) / 0.1);
}

.situation-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--accent) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.situation-item:hover .situation-icon {
  background-color: hsl(var(--accent) / 0.3);
}

.situation-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--accent));
}

.situation-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  text-align: center;
}

.situations-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .situations-cta {
    flex-direction: row;
  }
}

/* ========================================================================
   TESTIMONIALS SECTION
   ======================================================================== */

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

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

.testimonial-card {
  position: relative;
  background-color: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-quote-icon {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsl(var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.testimonial-quote-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--accent-foreground));
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--accent));
  fill: hsl(var(--accent));
}

.testimonial-text {
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.testimonial-location {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ========================================================================
   CONTACT SECTION
   ======================================================================== */

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info-wrapper .section-label,
.contact-info-wrapper .section-title,
.contact-info-wrapper .section-description {
  text-align: left;
}

.contact-info-wrapper .section-header {
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
}

.contact-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--accent) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--accent));
}

.contact-item-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.contact-item-value {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.contact-item-value a {
  transition: color 0.2s ease;
}

.contact-item-value a:hover {
  color: hsl(var(--accent));
}

/* Trust Points */
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--foreground));
}

.trust-point svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--success));
  flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 2rem;
  }
}

.contact-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-input-simple {
  width: 100%;
  height: 3rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid hsl(var(--input));
  border-radius: 0.5rem;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-simple:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
}

.form-textarea {
  width: 100%;
  min-height: 100px;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid hsl(var(--input));
  border-radius: 0.5rem;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  resize: none;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-top: 1rem;
}

/* ========================================================================
   FOOTER
   ======================================================================== */

.site-footer {
  background: var(--gradient-hero);
  color: hsl(var(--primary-foreground));
}

.footer-content {
  padding: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .footer-content {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

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

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

/* Footer Brand */
.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: auto;
  }
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 3.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: hsl(var(--primary-foreground) / 0.7);
  max-width: 24rem;
  margin-bottom: 1.5rem;
}

.footer-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-stat {
  color: hsl(var(--accent));
  font-weight: 600;
}

.footer-stat-divider {
  color: hsl(var(--primary-foreground) / 0.3);
}

/* Footer Links */
.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: hsl(var(--primary-foreground) / 0.7);
  transition: color 0.2s ease;
}

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

/* Footer Contact */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.7);
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--accent));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact-item a {
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: hsl(var(--accent));
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: hsl(var(--primary-foreground) / 0.5);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: hsl(var(--primary-foreground));
}

/* ========================================================================
   CITY PAGE STYLES
   ======================================================================== */

/* City Hero */
.city-hero {
  position: relative;
  min-height: 70vh;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 5rem;
}

.city-hero-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0 6rem;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .city-hero-content {
    padding: 6rem 0;
  }
}

.city-hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: hsl(var(--primary-foreground));
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 1024px) {
  .city-hero-title {
    font-size: 3.75rem;
  }
}

.city-hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground) / 0.9);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .city-hero-subtitle {
    font-size: 1.5rem;
  }
}

.city-hero-description {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.7);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: auto;
}

/* City Intro Section */
.city-intro-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .city-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.city-intro-text .section-label,
.city-intro-text .section-title {
  text-align: left;
}

.city-intro-text p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.city-intro-text p strong {
  color: hsl(var(--foreground));
}

.city-intro-highlight {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  font-weight: 500;
  margin-bottom: 2rem;
}

.city-intro-highlight .accent {
  color: hsl(var(--accent));
  font-weight: 700;
}

.city-intro-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .city-intro-ctas {
    flex-direction: row;
  }
}

/* Process Card */
.process-card {
  background-color: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border));
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .process-card {
    padding: 2.5rem;
  }
}

.process-card-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: hsl(var(--accent) / 0.1);
  border-bottom-left-radius: 100px;
}

.process-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  position: relative;
}

.process-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--accent));
}

.process-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.process-card-subtitle {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.process-step-number {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: hsl(var(--accent) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step-number span {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: hsl(var(--accent));
}

.process-step-connector {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 1.5rem;
  background-color: hsl(var(--border));
}

.process-step-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  padding: 1rem;
  background-color: hsl(var(--muted) / 0.5);
  border-radius: 0.75rem;
}

.process-step-content svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.process-step-content span {
  font-weight: 500;
  color: hsl(var(--foreground));
}

/* City FAQ Section */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.is-open {
  box-shadow: var(--shadow-card);
  border-color: hsl(var(--accent) / 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: hsl(var(--foreground));
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: hsl(var(--accent));
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted-foreground));
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ========================================================================
   CITY PAGE CONTENT SECTIONS
   ======================================================================== */

/* City Hero Form Section */
.city-hero-form-section {
  margin-top: -6rem;
  position: relative;
  z-index: 20;
  padding-bottom: 2rem;
}

.city-hero-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .city-hero-form-section {
    display: none; /* Hidden on desktop since form is in hero */
  }
}

/* City Intro Section */
.city-intro-section {
  padding-top: 2rem;
}

@media (min-width: 1024px) {
  .city-intro-section {
    padding-top: 5rem;
  }
}

.city-content-block {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.city-content-block p {
  margin-bottom: 1rem;
}

.city-content-block strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

/* City Content Cards */
.city-content-section {
  padding: 4rem 0;
}

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

.city-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.city-content-card {
  background-color: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  position: relative;
}

@media (min-width: 768px) {
  .city-content-card {
    padding: 3rem;
  }
}

.city-content-card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.city-content-card-icon svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--accent));
}

.city-content-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (min-width: 768px) {
  .city-content-card-title {
    font-size: 1.75rem;
  }
}

.city-content-card-text {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.8;
}

.city-content-card-text p {
  margin-bottom: 1rem;
}

.city-content-card-text p:last-child {
  margin-bottom: 0;
}

.city-content-card-text strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.city-content-card-text a {
  color: hsl(var(--accent));
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.city-content-card-text a:hover {
  color: hsl(var(--gold-dark));
}

/* Alternating card accents */
.city-content-section:nth-child(odd) .city-content-card {
  border-left: 4px solid hsl(var(--accent));
}

.city-content-section:nth-child(even) .city-content-card {
  border-left: 4px solid hsl(var(--navy));
}

/* City Content Card with Side Decoration */
.city-content-card::before {
  content: '';
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 80px;
  height: 80px;
  background-color: hsl(var(--accent) / 0.05);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .city-content-card::before {
    width: 120px;
    height: 120px;
    top: 2rem;
    right: 3rem;
  }
}

/* Two-column layout for longer content sections */
@media (min-width: 1024px) {
  .city-content-card-text.two-column {
    column-count: 2;
    column-gap: 3rem;
  }

  .city-content-card-text.two-column p {
    break-inside: avoid;
  }
}

/* ========================================================================
   UTILITY CLASSES
   ======================================================================== */

.text-accent {
  color: hsl(var(--accent));
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

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

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* WordPress Core Styles */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ========================================================================
   CONTACT FORM 7 STYLING
   ======================================================================== */

/* CF7 Form Wrapper */
.cf7-form-wrapper {
  width: 100%;
}

/* CF7 Form Container */
.cf7-form-wrapper .wpcf7 {
  width: 100%;
}

.cf7-form-wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* CF7 Form Labels */
.cf7-form-wrapper .wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 6px;
}

/* CF7 Input Fields */
.cf7-form-wrapper .wpcf7-form input[type="text"],
.cf7-form-wrapper .wpcf7-form input[type="email"],
.cf7-form-wrapper .wpcf7-form input[type="tel"],
.cf7-form-wrapper .wpcf7-form input[type="url"],
.cf7-form-wrapper .wpcf7-form input[type="number"],
.cf7-form-wrapper .wpcf7-form textarea,
.cf7-form-wrapper .wpcf7-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  background: hsl(var(--background));
  font-size: 15px;
  color: hsl(var(--foreground));
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.cf7-form-wrapper .wpcf7-form input[type="text"]:focus,
.cf7-form-wrapper .wpcf7-form input[type="email"]:focus,
.cf7-form-wrapper .wpcf7-form input[type="tel"]:focus,
.cf7-form-wrapper .wpcf7-form input[type="url"]:focus,
.cf7-form-wrapper .wpcf7-form input[type="number"]:focus,
.cf7-form-wrapper .wpcf7-form textarea:focus,
.cf7-form-wrapper .wpcf7-form select:focus {
  outline: none;
  border-color: hsl(var(--accent));
  box-shadow: 0 0 0 3px hsl(var(--accent) / 0.15);
}

.cf7-form-wrapper .wpcf7-form input::placeholder,
.cf7-form-wrapper .wpcf7-form textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

/* CF7 Textarea */
.cf7-form-wrapper .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* CF7 Submit Button */
.cf7-form-wrapper .wpcf7-form input[type="submit"],
.cf7-form-wrapper .wpcf7-form button[type="submit"] {
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, hsl(43 96% 56%) 0%, hsl(38 92% 50%) 50%, hsl(38 92% 45%) 100%);
  color: hsl(var(--navy-dark));
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px 0 hsl(38 92% 50% / 0.4);
}

.cf7-form-wrapper .wpcf7-form input[type="submit"]:hover,
.cf7-form-wrapper .wpcf7-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsl(38 92% 50% / 0.5);
}

/* CF7 Validation Messages */
.cf7-form-wrapper .wpcf7-not-valid-tip {
  color: hsl(0 84% 60%);
  font-size: 13px;
  margin-top: 4px;
}

.cf7-form-wrapper .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.cf7-form-wrapper .wpcf7-mail-sent-ok {
  background: hsl(142 71% 45% / 0.1);
  border: 1px solid hsl(142 71% 45% / 0.3);
  color: hsl(142 71% 35%);
}

.cf7-form-wrapper .wpcf7-validation-errors,
.cf7-form-wrapper .wpcf7-spam-blocked {
  background: hsl(0 84% 60% / 0.1);
  border: 1px solid hsl(0 84% 60% / 0.3);
  color: hsl(0 84% 45%);
}

/* CF7 Spinner */
.cf7-form-wrapper .wpcf7-spinner {
  margin: 0 12px;
}

/* Quick Form (Hero) CF7 Styling */
.quick-form .cf7-form-wrapper .wpcf7-form input[type="text"],
.quick-form .cf7-form-wrapper .wpcf7-form input[type="email"],
.quick-form .cf7-form-wrapper .wpcf7-form input[type="tel"] {
  padding: 16px 20px;
  font-size: 16px;
}

/* Contact Section CF7 Styling */
.cf7-contact-form .wpcf7-form {
  gap: 12px;
}

/* City Page CF7 Styling */
.cf7-city-form .wpcf7-form input[type="text"],
.cf7-city-form .wpcf7-form input[type="email"],
.cf7-city-form .wpcf7-form input[type="tel"] {
  background: hsl(var(--background));
}

/* Hide CF7 default response initially */
.wpcf7 form.init .wpcf7-response-output {
  display: none;
}

/* ========================================================================
   LEAD FORM MESSAGES & LOADING
   ======================================================================== */

/* Form Messages */
.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.form-message-success {
  background: hsl(142 71% 45% / 0.1);
  border: 1px solid hsl(142 71% 45% / 0.3);
  color: hsl(142 71% 35%);
}

.form-message-error {
  background: hsl(0 84% 60% / 0.1);
  border: 1px solid hsl(0 84% 60% / 0.3);
  color: hsl(0 84% 45%);
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid hsl(var(--navy-dark) / 0.3);
  border-radius: 50%;
  border-top-color: hsl(var(--navy-dark));
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

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

/* Disabled Submit Button */
.metro-lead-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
