/* ========================================
   Bay Area Grill Cleaner - Static Site CSS
   Design System & Global Styles
   ======================================== */

/* ----------------------------------------
   CSS Custom Properties (Design Tokens)
   ---------------------------------------- */
:root {
  /* Typography */
  --font-body: 'Open Sans', system-ui, sans-serif;
  --font-heading: 'Montserrat', system-ui, sans-serif;

  /* Light Theme Colors (Default) */
  --background: hsl(195, 50%, 96%);
  --foreground: hsl(210, 40%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(210, 40%, 15%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(210, 40%, 15%);

  /* Primary: Turquoise/Teal */
  --primary: hsl(180, 55%, 45%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Secondary */
  --secondary: hsl(180, 40%, 90%);
  --secondary-foreground: hsl(180, 55%, 30%);

  /* Muted */
  --muted: hsl(200, 20%, 94%);
  --muted-foreground: hsl(210, 15%, 45%);

  /* Accent: Vibrant Orange */
  --accent: hsl(28, 95%, 55%);
  --accent-foreground: hsl(0, 0%, 100%);

  /* Destructive */
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);

  /* Borders & Inputs */
  --border: hsl(200, 25%, 88%);
  --input: hsl(200, 25%, 88%);
  --ring: hsl(180, 55%, 45%);

  /* Custom Theme Colors */
  --ocean: hsl(195, 70%, 50%);
  --ocean-light: hsl(195, 70%, 92%);
  --ocean-bright: hsl(185, 80%, 65%);
  --sunset: hsl(28, 95%, 55%);
  --sunset-dark: hsl(20, 90%, 48%);
  --palm: hsl(160, 50%, 35%);

  /* Spacing */
  --radius: 0.75rem;
  --container-max: 1400px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-tropical: 0 10px 40px -10px hsla(180, 55%, 45%, 0.3);
  --shadow-accent-glow: 0 0 30px hsla(28, 95%, 55%, 0.4);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  min-height: 100vh;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 800;
}

/* ----------------------------------------
   Layout Utilities
   ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

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

.section {
  padding: 2.5rem 0;
}

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

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

/* Grid System */
.grid {
  display: grid;
  gap: 1rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ----------------------------------------
   Typography
   ---------------------------------------- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1.1; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.font-heading { font-family: var(--font-heading); }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }

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

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Text Colors */
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-background { color: var(--background); }
.text-white { color: white; }

/* ----------------------------------------
   Backgrounds
   ---------------------------------------- */
.bg-background { background-color: var(--background); }
.bg-foreground { background-color: var(--foreground); }
.bg-card { background-color: var(--card); }
.bg-muted { background-color: var(--muted); }
.bg-primary { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }
.bg-secondary { background-color: var(--secondary); }
.bg-ocean { background-color: var(--ocean); }

.bg-secondary-50 { background-color: hsla(180, 40%, 90%, 0.5); }
.bg-muted-30 { background-color: hsla(200, 20%, 94%, 0.3); }

.bg-tropical-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--ocean) 50%, var(--accent) 100%);
}

.bg-ocean-gradient {
  background: linear-gradient(180deg, var(--ocean-light) 0%, var(--background) 100%);
}

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
}

.btn-lg {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
  }
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsl(180, 55%, 40%);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-accent-glow);
}

.btn-accent:hover {
  background-color: var(--sunset-dark);
}

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

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid hsla(0, 0%, 100%, 0.5);
  color: var(--background);
}

.btn-outline-light:hover {
  background-color: hsla(0, 0%, 100%, 0.2);
  border-color: white;
}

.btn-dark {
  background-color: var(--foreground);
  color: var(--background);
}

.btn-dark:hover {
  background-color: hsl(210, 40%, 20%);
}

/* ----------------------------------------
   Cards
   ---------------------------------------- */
.card {
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-content {
  padding: 1.25rem;
}

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

/* ----------------------------------------
   Forms
   ---------------------------------------- */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .form-label {
    font-size: 1rem;
  }
}

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

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px hsla(180, 55%, 45%, 0.1);
}

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

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

.form-error {
  color: var(--destructive);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Honeypot - hidden from users */
.honeypot {
  position: absolute;
  left: -9999px;
}

/* ----------------------------------------
   Header
   ---------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

.header-logo img {
  height: 3.5rem;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: hsla(210, 40%, 15%, 0.8);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--accent);
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--sunset-dark);
}

.header-phone svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Mobile Header */
.mobile-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.mobile-menu-btn {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

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

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  animation: fadeIn 0.3s ease;
}

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

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
  color: hsla(210, 40%, 15%, 0.8);
  transition: all 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background-color: hsla(180, 55%, 45%, 0.05);
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--accent);
  padding: 0.75rem;
  background-color: hsla(28, 95%, 55%, 0.1);
  border-radius: 0.5rem;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer {
  background-color: var(--foreground);
  color: var(--background);
}

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.footer-brand p {
  color: hsla(195, 50%, 96%, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 1rem 0;
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: hsla(195, 50%, 96%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.footer-social a:hover {
  background-color: var(--accent);
}

.footer-social svg {
  width: 1rem;
  height: 1rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: hsla(195, 50%, 96%, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.375rem 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsla(195, 50%, 96%, 0.7);
  transition: color 0.2s;
  margin-bottom: 0.75rem;
}

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

.footer-contact-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background-color: hsla(28, 95%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.footer-contact-item:hover .footer-contact-icon {
  background-color: var(--accent);
}

.footer-contact-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.footer-contact-item:hover .footer-contact-icon svg {
  color: var(--accent-foreground);
}

.footer-bottom {
  border-top: 1px solid hsla(195, 50%, 96%, 0.1);
  padding: 1.25rem 0;
}

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

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

.footer-bottom p {
  font-size: 0.875rem;
  color: hsla(195, 50%, 96%, 0.5);
}

.footer-bottom .hours {
  font-size: 0.75rem;
  color: hsla(195, 50%, 96%, 0.4);
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 70vh;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    hsla(210, 40%, 15%, 0.9) 0%,
    hsla(210, 40%, 15%, 0.7) 50%,
    hsla(210, 40%, 15%, 0.4) 100%);
}

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

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-badge {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .hero-badge svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.hero h1 {
  color: var(--background);
  font-size: 1.875rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

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

.hero h1 .highlight {
  color: var(--accent);
}

.hero-description {
  color: hsla(195, 50%, 96%, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 768px) {
  .hero-buttons {
    margin-bottom: 2rem;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: hsla(195, 50%, 96%, 0.7);
  font-size: 0.875rem;
}

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

.hero-trust-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--accent);
}

/* ----------------------------------------
   Section Headers
   ---------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  color: var(--primary);
}

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

.section-label.accent {
  color: var(--accent);
}

.section-title {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

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

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

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

.section-title .highlight {
  color: var(--accent);
}

.section-title .highlight-primary {
  color: var(--primary);
}

.section-description {
  color: var(--muted-foreground);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

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

/* ----------------------------------------
   Icon Boxes
   ---------------------------------------- */
.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .icon-box {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 768px) {
  .icon-box svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.icon-box-primary {
  background-color: hsla(180, 55%, 45%, 0.1);
  color: var(--primary);
}

.icon-box-ocean {
  background-color: hsla(195, 70%, 50%, 0.1);
  color: var(--ocean);
}

.icon-box-accent {
  background-color: hsla(28, 95%, 55%, 0.1);
  color: var(--accent);
}

.icon-box-solid-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.icon-box-solid-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* ----------------------------------------
   Service Cards
   ---------------------------------------- */
.service-card {
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  transition: all 0.3s ease;
}

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

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.service-card h3 {
  font-size: 1.125rem;
  margin: 1rem 0 0.5rem;
}

@media (min-width: 768px) {
  .service-card h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.75rem;
  }
}

.service-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .service-card p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

.service-card-link:hover {
  color: var(--accent);
}

.service-card-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* ----------------------------------------
   Process Steps
   ---------------------------------------- */
.process-section {
  background-color: var(--foreground);
  color: var(--background);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background-color: hsla(180, 55%, 45%, 0.2);
  border-radius: 50%;
  filter: blur(48px);
  transform: translate(-50%, -50%);
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background-color: hsla(28, 95%, 55%, 0.1);
  border-radius: 50%;
  filter: blur(48px);
  transform: translate(50%, 50%);
}

.process-card {
  background-color: hsla(195, 50%, 96%, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(195, 50%, 96%, 0.2);
  border-radius: 1rem;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.process-card:hover {
  background-color: hsla(195, 50%, 96%, 0.15);
  transform: translateY(-4px);
}

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

.process-number {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  color: hsla(195, 50%, 96%, 0.1);
}

@media (min-width: 768px) {
  .process-number {
    right: 1rem;
    font-size: 3.75rem;
  }
}

.process-card h3 {
  font-size: 1rem;
  margin: 1rem 0 0.5rem;
  color: var(--background);
}

@media (min-width: 768px) {
  .process-card h3 {
    font-size: 1.125rem;
    margin: 1.25rem 0 0.75rem;
  }
}

.process-card p {
  color: hsla(195, 50%, 96%, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.process-cta {
  margin-top: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .process-cta {
    margin-top: 2rem;
  }
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .process-badge {
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.process-badge svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .process-badge svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* ----------------------------------------
   Before/After Gallery
   ---------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .gallery-item {
    border-radius: 0.75rem;
  }
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    hsla(210, 40%, 15%, 0.6) 0%,
    transparent 50%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.gallery-item-text {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  color: var(--background);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}

@media (min-width: 768px) {
  .gallery-item-text {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    font-size: 0.875rem;
  }
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: hsla(210, 40%, 15%, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 56rem;
  width: 100%;
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: hsla(195, 50%, 96%, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--background);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.lightbox-close:hover {
  background-color: hsla(195, 50%, 96%, 0.4);
}

.lightbox-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.lightbox-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: hsla(195, 50%, 96%, 0.4);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.lightbox-dot.active {
  background-color: var(--accent);
}

/* ----------------------------------------
   Reviews Section
   ---------------------------------------- */
.reviews-section {
  background-color: var(--card);
  border-top: 1px solid hsla(200, 25%, 88%, 0.3);
  border-bottom: 1px solid hsla(200, 25%, 88%, 0.3);
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.reviews-stars {
  display: flex;
}

.reviews-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--accent);
  color: var(--accent);
}

@media (min-width: 768px) {
  .reviews-stars svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.review-card {
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1rem;
  transition: all 0.3s ease;
}

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

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.review-quote {
  width: 1.5rem;
  height: 1.5rem;
  color: hsla(28, 95%, 55%, 0.3);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .review-quote {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
  }
}

.review-stars {
  display: flex;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .review-stars {
    margin-bottom: 0.75rem;
  }
}

.review-stars svg {
  width: 0.875rem;
  height: 0.875rem;
}

@media (min-width: 768px) {
  .review-stars svg {
    width: 1rem;
    height: 1rem;
  }
}

.review-stars svg.filled {
  fill: var(--accent);
  color: var(--accent);
}

.review-stars svg.empty {
  color: var(--muted);
}

.review-text {
  color: hsla(210, 40%, 15%, 0.8);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .review-text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .review-author-name {
    font-size: 0.875rem;
  }
}

.review-author-date {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

.review-google-icon {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .review-google-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* ----------------------------------------
   Social Connect Section
   ---------------------------------------- */
.social-section {
  background-color: hsla(200, 20%, 94%, 0.3);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--background);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: transparent;
  transform: scale(1.1);
  color: white;
}

.social-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.social-icon.facebook:hover { background-color: #1877F2; }
.social-icon.instagram:hover { background-color: #E4405F; }
.social-icon.linkedin:hover { background-color: #0A66C2; }
.social-icon.threads:hover { background-color: var(--foreground); }

/* ----------------------------------------
   CTA Banner
   ---------------------------------------- */
.cta-banner {
  background-color: var(--accent);
  padding: 3rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 3.5rem 0;
  }
}

.cta-banner h2 {
  color: var(--accent-foreground);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .cta-banner h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .cta-banner h2 {
    font-size: 2.25rem;
  }
}

.cta-banner p {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
  .cta-banner p {
    font-size: 1.125rem;
  }
}

/* ----------------------------------------
   Service Area Section
   ---------------------------------------- */
.service-area-section {
  background-color: var(--foreground);
  color: var(--background);
}

.service-area-county {
  background-color: hsla(195, 50%, 96%, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .service-area-county {
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.service-area-county h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .service-area-county h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

.service-area-county h3 svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

@media (min-width: 768px) {
  .service-area-county h3 svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.service-area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

@media (min-width: 768px) {
  .service-area-cities {
    gap: 0.5rem;
  }
}

.service-area-city {
  font-size: 0.75rem;
  background-color: hsla(195, 50%, 96%, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  color: hsla(195, 50%, 96%, 0.8);
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .service-area-city {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
  }
}

a.service-area-city:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.service-area-note {
  text-align: center;
  color: hsla(195, 50%, 96%, 0.6);
  font-size: 0.75rem;
  font-style: italic;
}

@media (min-width: 768px) {
  .service-area-note {
    font-size: 0.875rem;
  }
}

/* ----------------------------------------
   FAQ Accordion
   ---------------------------------------- */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

@media (min-width: 768px) {
  .faq-item {
    border-radius: 0.75rem;
    margin-bottom: 1rem;
  }
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
}

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

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1rem 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    font-size: 1rem;
  }
}

/* ----------------------------------------
   Contact Section
   ---------------------------------------- */
.contact-section {
  background-color: hsla(180, 40%, 90%, 0.5);
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-info-card {
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
  }
}

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

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

@media (min-width: 768px) {
  .contact-info-icon {
    width: 3rem;
    height: 3rem;
  }
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .contact-info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.contact-info-icon.accent {
  background-color: hsla(28, 95%, 55%, 0.1);
  color: var(--accent);
}

.contact-info-icon.primary {
  background-color: hsla(180, 55%, 45%, 0.1);
  color: var(--primary);
}

.contact-info-icon.ocean {
  background-color: hsla(195, 70%, 50%, 0.1);
  color: var(--ocean);
}

a.contact-info-card:hover .contact-info-icon {
  background-color: hsla(28, 95%, 55%, 0.2);
}

.contact-info-label {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .contact-info-label {
    font-size: 0.875rem;
  }
}

.contact-info-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .contact-info-value {
    font-size: 1.125rem;
  }
}

.contact-form-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .contact-form-card {
    border-radius: 1rem;
    padding: 1.5rem;
  }
}

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

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

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

/* ----------------------------------------
   Why Choose Us Section
   ---------------------------------------- */
.why-section {
  background-color: hsla(180, 40%, 90%, 0.4);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
}

.why-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  border: 1px solid hsla(200, 25%, 88%, 0.3);
  transition: all 0.3s ease;
}

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

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.why-card h3 {
  font-size: 1rem;
  margin: 0.75rem 0 0.5rem;
}

@media (min-width: 768px) {
  .why-card h3 {
    font-size: 1.125rem;
    margin: 1rem 0 0.75rem;
  }
}

.why-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.why-cta-card {
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  border: 1px solid hsla(200, 25%, 88%, 0.5);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .why-cta-card {
    border-radius: 1.5rem;
    padding: 2rem;
    margin-top: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .why-cta-card {
    padding: 2.5rem;
  }
}

.why-cta-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .why-cta-content {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }
}

.why-cta-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .why-cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .why-cta-content h3 {
    font-size: 1.875rem;
  }
}

.why-cta-content p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .why-cta-content p {
    font-size: 1.125rem;
  }
}

.why-cta-content a.text-link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.why-cta-content a.text-link:hover {
  color: var(--accent);
}

/* ----------------------------------------
   About Section
   ---------------------------------------- */
.about-section {
  background-color: var(--background);
}

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

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

.about-image-wrapper {
  position: relative;
}

.about-image-glow {
  position: absolute;
  inset: -1rem;
  background: var(--tropical-gradient);
  border-radius: 1.5rem;
  opacity: 0.2;
  filter: blur(24px);
}

.about-image {
  position: relative;
  border-radius: 1rem;
  box-shadow: var(--shadow-tropical);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ----------------------------------------
   Animations
   ---------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px hsla(28, 95%, 55%, 0.4);
  }
  50% {
    box-shadow: 0 0 40px hsla(28, 95%, 55%, 0.6);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-in {
  animation: slideInRight 0.6s ease forwards;
}

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

.animate-scale-in {
  animation: scaleIn 0.3s ease forwards;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

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

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

.transition { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
.transition-transform { transition: transform 0.2s; }

.cursor-pointer { cursor: pointer; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

.overflow-hidden { overflow: hidden; }

.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }

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

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

/* Order for flex/grid */
.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 1024px) {
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}

/* Column spans for 12-column grid */
@media (min-width: 1024px) {
  .lg\:col-span-2 { grid-column: span 2; }
  .lg\:col-span-3 { grid-column: span 3; }
  .lg\:col-span-4 { grid-column: span 4; }
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  max-width: 24rem;
  animation: slideInRight 0.3s ease;
}

.toast.success {
  border-left: 4px solid var(--palm);
}

.toast.error {
  border-left: 4px solid var(--destructive);
}

.toast-title {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ----------------------------------------
   Grill Repair Page Styles
   ---------------------------------------- */

/* Repair Services Grid */
.repair-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.repair-service-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-tropical);
  text-align: center;
}

.repair-service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: hsla(24, 100%, 50%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.repair-service-icon svg {
  color: var(--accent);
}

.repair-service-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.repair-service-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Common Issues Section */
.common-issues-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

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

.common-issues-content {
  order: 2;
}

@media (min-width: 1024px) {
  .common-issues-content {
    order: 1;
  }
}

.common-issues-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.issues-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

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

.issue-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.issue-check {
  width: 1.25rem;
  height: 1.25rem;
  background-color: hsla(24, 100%, 50%, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.issue-check svg {
  color: var(--accent);
}

.issue-item span:last-child {
  color: var(--foreground);
  opacity: 0.8;
  font-size: 0.875rem;
}

/* Diagnostic Card */
.diagnostic-card {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 2rem;
  border-radius: 1rem;
  order: 1;
}

@media (min-width: 1024px) {
  .diagnostic-card {
    order: 2;
  }
}

.diagnostic-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.diagnostic-description {
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.diagnostic-features {
  list-style: none;
  margin-bottom: 2rem;
}

.diagnostic-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.diagnostic-features svg {
  color: var(--accent);
}

/* Brands Grid */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .brands-grid {
    gap: 1rem;
  }
}

.brand-tag {
  background-color: var(--card);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.brand-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.brands-note {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 2rem;
}

/* Background Variants */
.bg-secondary-light {
  background-color: hsla(175, 41%, 95%, 0.3);
}

/* ----------------------------------------
   Service Page Hero Styles
   ---------------------------------------- */

/* Service Hero (for repair, residential, commercial pages) */
.service-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 6rem 0 4rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .service-hero {
    padding: 8rem 0 5rem;
    min-height: 60vh;
  }
}

.service-hero-content {
  max-width: 48rem;
  position: relative;
  z-index: 1;
}

.service-hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

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

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

.service-hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: hsla(0, 0%, 100%, 0.9);
  margin-bottom: 2rem;
}

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

.service-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

/* ----------------------------------------
   City Landing Page Styles
   ---------------------------------------- */

/* City Hero */
.city-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--ocean-deep) 100%);
  color: var(--primary-foreground);
  padding: 6rem 0 4rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

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

.city-hero-content {
  max-width: 48rem;
}

.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsla(0, 0%, 100%, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.city-badge svg {
  color: var(--accent);
}

.city-hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.25rem;
  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.5rem;
  }
}

.city-hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: hsla(0, 0%, 100%, 0.9);
  margin-bottom: 2rem;
}

.city-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

/* City Highlights */
.city-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.city-highlight-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-tropical);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.city-highlight-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--palm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.city-highlight-icon svg {
  color: white;
  width: 1.25rem;
  height: 1.25rem;
}

.city-highlight-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.4;
}

/* City Neighborhoods */
.city-neighborhoods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

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

.city-neighborhoods-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.neighborhood-tag {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
}

.neighborhoods-note {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-style: italic;
}

.city-neighborhoods-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.city-neighborhoods-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services Grid for City Pages */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.service-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.service-card-content {
  padding: 1.25rem;
}

.service-card-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-card-content p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Other Cities Grid */
.other-cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.other-city-link {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--foreground);
  text-decoration: none;
  transition: all 0.2s;
}

.other-city-link:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* ----------------------------------------
   Gallery Page Styles
   ---------------------------------------- */

/* Gallery Hero */
.gallery-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--ocean-dark) 50%, var(--primary) 100%);
  padding: 6rem 0 4rem;
  text-align: center;
}

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

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

.gallery-hero-content {
  position: relative;
  z-index: 10;
}

.gallery-hero-label {
  display: inline-block;
  color: var(--ocean-bright);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.gallery-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

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

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

.gallery-hero-description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.9);
  max-width: 42rem;
  margin: 0 auto;
}

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

/* Gallery Filter */
.gallery-filter {
  padding: 1.5rem 0;
  background-color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  background-color: var(--background);
  color: var(--foreground);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background-color: var(--muted);
}

.filter-btn.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* Gallery Grid */
.gallery-section {
  background-color: var(--background);
}

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

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

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

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

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  background-color: var(--muted);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
}

.gallery-item:hover {
  box-shadow: var(--shadow-xl);
}

.gallery-item.hidden {
  display: none;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.gallery-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: white;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

/* Gallery Empty State */
.gallery-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.gallery-empty.hidden {
  display: none;
}

/* Enhanced Lightbox for Gallery */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: hsla(0, 0%, 100%, 0.8);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: white;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  color: hsla(0, 0%, 100%, 0.8);
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 50%;
  z-index: 110;
  transition: all 0.2s;
}

.lightbox-nav:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

.lightbox-prev {
  left: 0.5rem;
}

@media (min-width: 768px) {
  .lightbox-prev {
    left: 1rem;
  }
}

.lightbox-next {
  right: 0.5rem;
}

@media (min-width: 768px) {
  .lightbox-next {
    right: 1rem;
  }
}

.lightbox-content {
  max-width: 80rem;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.lightbox-content img {
  pointer-events: auto;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .lightbox-caption {
    font-size: 1rem;
  }
}

.lightbox-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
}

.lightbox-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.lightbox-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: hsla(0, 0%, 100%, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s;
}

.lightbox-dot:hover,
.lightbox-dot.active {
  background-color: white;
}
