/*
Theme Name: Arcadiax Auto Detailing
Theme URI: https://arcadiaxdetailing.com
Author: Arcadiax Auto Detailing
Author URI: https://arcadiaxdetailing.com
Description: A clean, modern WordPress theme for Arcadiax Auto Detailing — featuring a bubbly, friendly aesthetic with white and light gray tones, sky blue and teal accents. Includes Hero, Services, and Contact sections.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arcadiax
Tags: auto-detailing, clean, modern, one-page, responsive, business
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: #111827;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.2rem; }

p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.75;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-badge {
  display: inline-block;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 36rem;
  margin: 0 auto;
}

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

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #111827;
}

.nav-logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #14b8a6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.nav-links a:hover { color: #0ea5e9; }

.btn-nav {
  background: #0ea5e9;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}

.btn-nav:hover {
  background: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.4);
  color: white;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #374151;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #f3f4f6;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  padding-top: 4rem;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #f0fdfa 100%);
}

.hero-blob-1 {
  position: absolute;
  top: 5rem;
  left: -8rem;
  width: 26rem;
  height: 26rem;
  background: #bae6fd;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}

.hero-blob-2 {
  position: absolute;
  bottom: 0;
  right: -6rem;
  width: 22rem;
  height: 22rem;
  background: #99f6e4;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  padding: 6rem 0 5rem;
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }
}

.hero-content {
  flex: 1;
  text-align: center;
}

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

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: #111827;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, #0ea5e9, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 30rem;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-content p { margin-left: 0; }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-cta-group { flex-direction: row; justify-content: center; }
}

@media (min-width: 768px) {
  .hero-cta-group { justify-content: flex-start; }
}

.btn-primary {
  display: inline-block;
  background: #0ea5e9;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.4);
  color: white;
}

.btn-secondary {
  display: inline-block;
  background: white;
  color: #374151;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  color: #374151;
}

.hero-image-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-image-wrap { justify-content: flex-end; margin: 0; }
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7dd3fc, #5eead4);
  border-radius: 1.5rem;
  filter: blur(24px);
  opacity: 0.2;
  transform: scale(0.95);
}

.hero-image-wrap img {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 24px 64px rgba(14, 165, 233, 0.15);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-rating-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1rem;
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-star {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #14b8a6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.rating-text-label {
  font-size: 0.7rem;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rating-text-value {
  font-weight: 700;
  color: #111827;
  font-size: 0.95rem;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3rem;
  overflow: hidden;
}

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

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  padding: 6rem 0;
  background: #ffffff;
}

.services-section .section-header {
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.service-card {
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.2s;
}

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

.service-icon.sky   { background: #f0f9ff; color: #0ea5e9; }
.service-icon.teal  { background: #f0fdfa; color: #14b8a6; }
.service-icon.violet { background: #f5f3ff; color: #7c3aed; }
.service-icon.amber { background: #fffbeb; color: #f59e0b; }

.service-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #111827;
}

.service-card p {
  font-size: 0.875rem;
  color: #6b7280;
  flex: 1;
}

.service-card a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0ea5e9;
}

.service-card a:hover { color: #0284c7; }

/* =============================================
   TRUST / STATS BAR
   ============================================= */
.trust-bar {
  background: linear-gradient(90deg, #0ea5e9 0%, #14b8a6 100%);
  padding: 3.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  color: white;
}

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

.trust-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
}

.trust-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  padding: 6rem 0;
  background: #f9fafb;
}

.contact-section .section-header {
  margin-bottom: 3.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* Contact info cards */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 1.25rem;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #f0f9ff;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-info-label {
  font-size: 0.7rem;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.contact-info-value {
  font-weight: 600;
  color: #111827;
  font-size: 0.95rem;
}

.hours-box {
  background: linear-gradient(135deg, #f0f9ff, #f0fdfa);
  border: 1px solid #e0f2fe;
  border-radius: 1rem;
  padding: 1.5rem;
}

.hours-box p { font-size: 0.875rem; }
.hours-box .hours-title { font-weight: 700; color: #111827; font-size: 1rem; margin-bottom: 0.25rem; }

/* Contact form */
.contact-form {
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #111827;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  background: white;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7dd3fc;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.3);
}

.form-group textarea { resize: none; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #d1d5db; }

.btn-submit {
  width: 100%;
  background: #0ea5e9;
  color: white;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}

.btn-submit:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.4);
}

.btn-submit:active { transform: translateY(0); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #111827;
  color: white;
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.footer-logo-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #14b8a6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.footer-copy {
  color: #6b7280;
  font-size: 0.875rem;
}

/* =============================================
   BOOK CTA SECTION (Homepage)
   ============================================= */

.book-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 100%);
  border-top: 1px solid #e0f2fe;
}

.book-cta-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.book-cta-header .section-title { margin-top: 0.5rem; }

.book-cta-header .section-subtitle {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.booking-inline-wrap {
  margin-bottom: 3rem;
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid #e0f2fe;
  box-shadow: 0 4px 32px rgba(14,165,233,0.08);
  overflow: hidden;
}

.booking-inline-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 2rem;
  background: #f0f9ff;
  border-radius: 1rem;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

.booking-inline-notice span { font-size: 1.5rem; flex-shrink: 0; }
.booking-inline-notice a { color: #0ea5e9; text-decoration: underline; }

.book-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .book-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.book-cta-benefits {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.book-cta-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
}

.book-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-large {
  padding: 0.9rem 2.2rem !important;
  font-size: 1rem !important;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(14,165,233,0.08);
  border: 1px solid #e0f2fe;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

/* =============================================
   BOOKING PAGE TEMPLATE
   ============================================= */

.booking-hero {
  padding: 6rem 0 3.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #f0fdfa 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 C360 0 1080 0 1440 40 L1440 40 L0 40Z' fill='%23ffffff'/%3E%3C/svg%3E") center/cover no-repeat;
}

.booking-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #111827;
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}

.booking-hero p {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 580px;
  margin: 0 auto 2rem;
}

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

.booking-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #e0f2fe;
  border-radius: 9999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  box-shadow: 0 2px 8px rgba(14,165,233,0.06);
}

.booking-form-section {
  padding: 3rem 0 5rem;
  background: #ffffff;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 960px) {
  .booking-layout { grid-template-columns: 1fr; }
}

.booking-form-wrap {
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  overflow: hidden;
  min-height: 400px;
}

/* Plugin notice (shown when plugin isn't installed) */
.booking-plugin-notice {
  padding: 3rem 2.5rem;
  text-align: center;
}

.booking-plugin-notice-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.booking-plugin-notice h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.booking-plugin-notice p {
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.booking-plugin-notice a { color: #0ea5e9; }

.booking-setup-steps {
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
  color: #374151;
  line-height: 2;
  padding-left: 1.5rem;
}

/* Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.booking-sidebar-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.booking-sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.booking-sidebar-card p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.booking-sidebar-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #f0f9ff;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: #0369a1;
  font-size: 0.95rem;
}

.booking-sidebar-phone:hover { background: #e0f2fe; }

.booking-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  font-size: 0.875rem;
  color: #374151;
}

.booking-hours-title {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.booking-hours-note {
  color: #9ca3af;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.booking-why-card {
  background: linear-gradient(135deg, #f0f9ff, #f0fdfa) !important;
  border-color: #bae6fd !important;
}

.booking-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #374151;
}

.booking-why-icon { flex-shrink: 0; }

.booking-location-card { }

.booking-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.75rem;
}

.booking-directions-link {
  display: block;
  text-align: center;
  color: #0ea5e9;
  font-weight: 600;
  font-size: 0.875rem;
}

.booking-directions-link:hover { color: #0284c7; }

/* =============================================
   🫧  BUBBLE ENGINE
   ============================================= */

#ax-bubble-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.ax-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 32% 28%,
    rgba(255, 255, 255, 0.85) 0%,
    var(--shimmer, rgba(14, 165, 233, 0.18)) 35%,
    rgba(20, 184, 166, 0.12) 65%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 0 8px rgba(255, 255, 255, 0.5),
    inset -4px -4px 8px rgba(14, 165, 233, 0.12),
    0 4px 16px rgba(14, 165, 233, 0.08);
  animation: ax-bubble-float var(--dur, 2.5s) var(--delay, 0s) ease-in forwards;
  will-change: transform, opacity;
}

@keyframes ax-bubble-float {
  0%   { transform: translateY(0)     translateX(0)                  scale(1);   opacity: 0.85; }
  15%  { opacity: 0.9; }
  70%  { transform: translateY(-220px) translateX(var(--drift, 40px)) scale(1.05); opacity: 0.6; }
  88%  { transform: translateY(-310px) translateX(var(--drift, 40px)) scale(1.18); opacity: 0.2; }
  100% { transform: translateY(-340px) translateX(var(--drift, 40px)) scale(1.4);  opacity: 0;   }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .ax-bubble { display: none !important; }
}

/* =============================================
   🖼  HERO SLIDESHOW
   ============================================= */

/* Override single-image styles when slideshow is active */
.hero-slideshow {
  aspect-ratio: 4 / 3;
  overflow: visible;
}

.hero-slideshow .hero-image-glow {
  z-index: 0;
}

/* Higher specificity (.hero-slideshow .hero-slide) overrides generic .hero-image-wrap img */
.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(14, 165, 233, 0.15);
  aspect-ratio: auto;
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  will-change: opacity;
  pointer-events: none;
}

.hero-slideshow .hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Respect reduced-motion: skip crossfade */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

.hero-rating-badge {
  z-index: 4;
}

/* Slide dots */
.hero-slide-dots {
  position: absolute;
  bottom: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.hero-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  border: none;
  background: rgba(14, 165, 233, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.hero-slide-dot:focus-visible {
  box-shadow: 0 0 0 2px #0ea5e9;
}

.hero-slide-dot.active {
  background: #0ea5e9;
  width: 22px;
}

/* Responsive: a bit more clearance for dots on mobile */
@media (max-width: 767px) {
  .hero-slide-dots { bottom: -2rem; }
  .hero-image-wrap.hero-slideshow { margin-bottom: 1.5rem; }
}

/* =============================================
   WORDPRESS ALIGNMENT
   ============================================= */
.wp-block-image { margin: 0; }
.alignnone, .alignleft, .alignright { max-width: 100%; }

/* =============================================
   ACCESSIBILITY
   ============================================= */
:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 3px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Offset sticky-nav when jumping to anchors */
#booking, #services, #contact {
  scroll-margin-top: 80px;
}

/* =============================================
   PLUGIN OVERRIDES — QuanticaLabs CWBS
   ============================================= */
.cwbs-footer,
.cwbs-footer-text,
.cwbs-copyright,
.cwbs-powered-by,
.car-wash-booking-footer,
.car-wash-booking-copyright,
.car-wash-booking-powered-by,
[class*="cwbs"][class*="footer"],
[class*="cwbs"][class*="copyright"],
[class*="cwbs"][class*="powered"] {
  display: none !important;
}
