/*
Theme Name: WA Mobile Vehicle Inspection
Theme URI: https://wavehicleinspection.com
Author: WA Mobile Vehicle Inspection
Author URI: https://wavehicleinspection.com
Description: A modern, professional WordPress theme for mobile vehicle inspection services. Features smooth animations, booking forms, and SEO optimization.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wa-mobile
Tags: business, automotive, responsive, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   WORDPRESS THEME STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1c1c1c;
  background-color: #fff;
  overflow-x: hidden;
}

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

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

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

.alignright {
  float: right;
  margin-left: 1.5em;
}

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

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

/* 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;
}

/* ============================================
   THEME COLORS & VARIABLES
   ============================================ */

:root {
  --brand-primary: #f5f5f5;
  --brand-secondary: #1c1c1c;
  --brand-accent: #f4bd03;
  --brand-accent-dark: #c49b02;
  --brand-tertiary: #f2f2f2;
  --white: #fff;
  --black: #000;
}

/* ============================================
   NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--brand-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--black);
}

.logo-text {
  display: none;
}

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

.logo-text .site-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  display: block;
}

.logo-text .site-tagline {
  color: var(--brand-accent);
  font-size: 0.75rem;
}

/* Main Navigation */
.main-navigation {
  display: none;
}

@media (min-width: 1024px) {
  .main-navigation {
    display: block;
  }
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.main-navigation a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.main-navigation a:hover {
  color: var(--brand-accent);
}

/* CTA Button */
.header-cta {
  display: none;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--brand-accent);
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--brand-accent-dark);
  transform: scale(1.02);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--brand-secondary);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 80px 24px 24px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-navigation ul {
  list-style: none;
}

.mobile-navigation li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-navigation a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 16px 0;
  transition: color 0.2s ease;
}

.mobile-navigation a:hover {
  color: var(--brand-accent);
}

.mobile-menu-cta {
  margin-top: 32px;
}

.mobile-menu-cta .btn-primary {
  width: 100%;
}

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

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  padding: 120px 5% 80px;
  text-align: center;
}

/* Trust Badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 16px;
  height: 16px;
  color: var(--brand-accent);
  fill: var(--brand-accent);
}

.trust-badge-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title-accent {
  display: block;
  color: var(--brand-accent);
}

/* Hero Description */
.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-accent);
  border-radius: 50%;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 6px;
  height: 12px;
  background-color: var(--brand-accent);
  border-radius: 9999px;
  animation: scrollBounce 1.5s infinite ease-in-out;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

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

.section {
  padding: 80px 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 128px 0;
  }
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  color: var(--brand-accent);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.125rem;
  color: #666;
  max-width: 640px;
  margin: 0 auto;
}

/* Dark Section */
.section-dark {
  background-color: var(--brand-secondary);
}

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

.section-dark .section-description {
  color: rgba(255, 255, 255, 0.7);
}

/* Gray Section */
.section-gray {
  background-color: var(--brand-tertiary);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@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 {
  position: relative;
  background-color: var(--white);
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(244, 189, 3, 0.3);
}

.service-card.popular {
  border-color: var(--brand-accent);
  box-shadow: 0 10px 30px rgba(244, 189, 3, 0.15);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-accent);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 9999px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(244, 189, 3, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--brand-accent);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 8px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-accent);
}

.price-suffix {
  font-size: 0.875rem;
  color: #666;
}

.service-description {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: #444;
  margin-bottom: 12px;
}

.feature-check {
  width: 20px;
  height: 20px;
  background-color: rgba(244, 189, 3, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check svg {
  width: 12px;
  height: 12px;
  color: var(--brand-accent);
}

.service-note {
  text-align: center;
  margin-top: 48px;
}

.service-note p {
  display: inline-block;
  font-size: 0.875rem;
  color: #666;
  background-color: #f9f9f9;
  padding: 12px 24px;
  border-radius: 9999px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 448px;
  border-radius: 16px;
  margin: 0 auto;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background-color: var(--brand-accent);
  color: var(--black);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .label {
  font-size: 0.875rem;
  font-weight: 500;
}

.about-content {
  color: rgba(255, 255, 255, 0.8);
}

.about-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-content strong {
  color: var(--brand-accent);
  font-weight: 600;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.credential-tag {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  padding: 8px 16px;
  border-radius: 9999px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.stat-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(244, 189, 3, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand-accent);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}

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

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

/* Connecting line for desktop */
@media (min-width: 1024px) {
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
  }
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: var(--brand-accent);
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background-color: var(--brand-accent);
  color: var(--black);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 12px;
}

.step-description {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}

.steps-footer {
  text-align: center;
  margin-top: 64px;
}

.steps-footer p {
  color: #666;
  margin-bottom: 16px;
}

.turnaround-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-accent);
  font-weight: 600;
}

.turnaround-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--brand-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

/* ============================================
   COVERAGE SECTION
   ============================================ */

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

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

.coverage-map {
  position: relative;
  aspect-ratio: 1;
  max-width: 512px;
  margin: 0 auto;
}

.map-background {
  width: 100%;
  height: 100%;
  background-color: var(--brand-tertiary);
  border-radius: 24px;
  overflow: hidden;
}

.map-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: var(--brand-accent);
  color: var(--black);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.map-badge svg {
  width: 20px;
  height: 20px;
}

.coverage-content {
  color: #666;
}

.coverage-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

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

.location-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f9f9f9;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #444;
}

.location-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-accent);
  flex-shrink: 0;
}

.travel-notice {
  background-color: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.travel-notice-icon {
  width: 32px;
  height: 32px;
  background-color: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.travel-notice-icon svg {
  width: 16px;
  height: 16px;
  color: #d97706;
}

.travel-notice-content h4 {
  color: #92400e;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.travel-notice-content p {
  color: #b45309;
  font-size: 0.875rem;
  margin: 0;
}

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

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 24px;
  margin-top: 24px;
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.rating-stars .star {
  width: 24px;
  height: 24px;
}

.rating-info {
  text-align: left;
}

.rating-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.rating-count {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

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

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial-quote {
  width: 40px;
  height: 40px;
  color: rgba(244, 189, 3, 0.3);
  margin-bottom: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars .star {
  width: 16px;
  height: 16px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
  width: 40px;
  height: 40px;
  background-color: rgba(244, 189, 3, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-accent);
}

.author-name {
  color: var(--white);
  font-weight: 500;
}

.author-location {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.testimonials-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   BOOKING FORM SECTION
   ============================================ */

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

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

.booking-form-card {
  background-color: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 48px;
}

.form-section {
  margin-bottom: 32px;
}

.form-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-secondary);
  margin-bottom: 16px;
}

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

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

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-accent);
}

.form-checkbox label {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--brand-accent);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* Success Message */
.booking-success {
  text-align: center;
  padding: 48px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: #16a34a;
}

.booking-success h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 16px;
}

.booking-success p {
  color: #666;
  margin-bottom: 24px;
}

/* Contact Info Sidebar */
.contact-info {
  space-y: 24px;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 8px;
}

.contact-info-description {
  color: #666;
  margin-bottom: 24px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--white);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.contact-method:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(244, 189, 3, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
  color: var(--brand-accent);
}

.contact-method-label {
  font-size: 0.875rem;
  color: #666;
}

.contact-method-value {
  font-weight: 500;
  color: var(--brand-secondary);
}

.response-badge {
  background-color: rgba(244, 189, 3, 0.1);
  border: 1px solid rgba(244, 189, 3, 0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.response-badge-title {
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.response-badge-text {
  color: #666;
  font-size: 0.875rem;
}

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

.site-footer {
  background-color: var(--black);
  color: var(--white);
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 5%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

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

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

/* Footer Brand */
.footer-brand {
  space-y: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  background-color: var(--brand-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 28px;
  height: 28px;
  color: var(--black);
}

.footer-logo-text .footer-title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  display: block;
}

.footer-logo-text .footer-tagline {
  color: var(--brand-accent);
  font-size: 0.875rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-abn {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

/* Footer Links */
.footer-column h4 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

/* Footer Contact */
.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 16px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--brand-accent);
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Fade In Up Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

.hidden {
  display: none;
}

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:grid { display: grid; }
  .sm\:hidden { display: none; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:hidden { display: none; }
}
