/* Core Styles for The Curb Crew */

:root {
  --bg-dark: #050816;
  --bg-darker: #02020b;
  --bg-light: #f5f6fb;
  --accent: #ffb400;
  --accent-soft: rgba(255, 180, 0, 0.1);
  --accent-strong: #ff9900;
  --text-main: #f7f7ff;
  --text-muted: #c1c4d6;
  --text-dark: #101223;
  --border-subtle: #252744;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.5);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top left, #101633 0, #02020b 40%, #000 100%);
}

body {
  min-height: 100vh;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-dark {
  background: radial-gradient(circle at top, #15182f 0, #050816 40%, #020109 80%);
  color: var(--text-main);
}

.section-strip {
  padding: 40px 0;
}

.section-cta {
  border-top: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.section-header h1,
.section-header h2 {
  margin-bottom: 8px;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(5, 8, 22, 0.96), rgba(5, 8, 22, 0.9), rgba(5, 8, 22, 0.85));
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #ffe47a 0, #ffb400 30%, #ff7a00 70%, #b15600 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #050816;
  box-shadow: 0 0 0 2px rgba(255, 180, 0, 0.15), 0 12px 30px rgba(0, 0, 0, 0.65);
}

.logo-mark.small {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 18px;
}

.logo-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  padding: 6px 8px;
  border-radius: 999px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.1s ease, color 0.1s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff7a00);
  color: #050816;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-small {
  padding: 8px 14px;
  font-size: 13px;
}

.btn-large {
  padding: 12px 22px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-dark {
  background: radial-gradient(circle at top left, #1c2142 0, #050816 45%, #020109 80%);
  padding: 72px 0 64px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 180, 0, 0.08) 0, transparent 50%),
    radial-gradient(circle at 80% 120%, rgba(98, 216, 249, 0.16) 0, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero-text p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 15px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.divider-dot {
  opacity: 0.6;
}

.hero-showcase {
  display: flex;
  justify-content: center;
}

.hero-photo {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06) 0, rgba(5, 8, 22, 0.98) 60%);
  border-radius: var(--radius-xl);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 420px;
}

.hero-photo img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
}

.hero-photo figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Split layout */

.split {
  display: grid;
  gap: 32px;
  align-items: flex-start;
}

.split-2 {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
}

/* Feature box */

.feature-box {
  background: radial-gradient(circle at top, rgba(255, 180, 0, 0.08) 0, rgba(5, 8, 22, 0.96) 60%);
  border-radius: var(--radius-xl);
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--text-main);
}

.section-light .feature-box {
  background: white;
  border: 1px solid #e0e1ea;
  box-shadow: 0 14px 30px rgba(15, 21, 58, 0.12);
  color: var(--text-dark);
}

.section-light .feature-box p {
  color: #3a3e55;
}

/* Lists */

.icon-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}

.icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ff7a00);
  margin-top: 6px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--accent-strong);
  text-decoration: none;
}

.link-arrow::after {
  content: "→";
  font-size: 14px;
}

/* Strip gallery */

.strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: center;
}

.strip-text p {
  margin-top: 6px;
  color: var(--text-muted);
}

.strip-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.strip-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.strip-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04) 0, rgba(5, 8, 22, 0.98) 70%);
  border-radius: var(--radius-xl);
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.section-light .card {
  background: white;
  border: 1px solid #e0e1ea;
  box-shadow: 0 14px 30px rgba(15, 21, 58, 0.12);
}

.card h3,
.card h2 {
  margin-top: 0;
  margin-bottom: 4px;
}

.card-price {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px;
}

.card-tagline {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.section-light .card-tagline {
  color: #5f647f;
}

.card ul {
  padding-left: 18px;
  margin: 0 0 16px;
  font-size: 14px;
}

.card-package.featured {
  position: relative;
  border-color: rgba(255, 180, 0, 0.8);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.7);
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--accent), #ff7a00);
  color: #050816;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

/* Timeline */

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.timeline-item {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03) 0, rgba(5, 8, 22, 0.98) 65%);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ff7a00);
  color: #050816;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Booking */

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: flex-start;
}

.booking-intro h1 {
  margin-top: 0;
}

.booking-intro p {
  color: var(--text-muted);
}

.booking-highlight {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.booking-form-card {
  background: rgba(10, 13, 35, 0.96);
  border-radius: var(--radius-xl);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Forms */

.form-row {
  margin-bottom: 14px;
}

.form-row label,
.form-row legend {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row input[type="date"],
.form-row select,
.form-row textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 8, 22, 0.9);
  color: var(--text-main);
  padding: 9px 10px;
  font-size: 14px;
  outline: none;
}

.section-light .form-row input[type="text"],
.section-light .form-row input[type="tel"],
.section-light .form-row input[type="email"],
.section-light .form-row input[type="date"],
.section-light .form-row select,
.section-light .form-row textarea {
  background: #ffffff;
  color: var(--text-dark);
  border-color: #c5c7d7;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 180, 0, 0.6);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.option-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 14px;
  padding: 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 8, 22, 0.9);
  cursor: pointer;
  font-size: 13px;
}

.option-card input {
  margin-bottom: 4px;
}

.option-title {
  font-weight: 600;
}

.option-price {
  font-size: 13px;
  color: var(--accent-strong);
}

.option-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.checkbox-grid {
  display: grid;
  gap: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
  width: 16px;
  height: 16px;
}

.price-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 11px;
  margin-left: 4px;
}

.split-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.consent-row {
  font-size: 12px;
}

.consent-row span {
  font-weight: 400;
}

.fine-print {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.hidden-field {
  display: none;
}

/* Thank you */

.center {
  text-align: center;
}

.thankyou {
  max-width: 640px;
}

.thankyou-meta {
  margin-top: 10px;
  color: #5f647f;
}

/* Pricing layout */

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 30px;
}

.pricing-aside {
  background: rgba(8, 10, 30, 0.98);
  border-radius: var(--radius-xl);
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.add-ons-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  font-size: 14px;
}

.add-ons-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.pricing-photo {
  margin: 10px 0 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-photo img {
  width: 100%;
  display: block;
}

/* Gallery */


.gallery-section + .gallery-section {
  margin-top: 28px;
}

.gallery-section h2 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 14px;
}

.gallery-card {
  margin: 0;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #dde0ef;
  box-shadow: 0 14px 30px rgba(15, 21, 58, 0.12);
}

.gallery-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 12px 14px 14px;
  font-size: 13px;
  line-height: 1.35;
  color: #3f455e;
}

@media (max-width: 900px) {
  .gallery-section h2 { font-size: 20px; }
  .gallery-grid { gap: 16px; }
  .gallery-card figcaption { padding: 10px 12px 12px; }
}
/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-size: 14px;
}

.contact-list li {
  margin-bottom: 8px;
}

.contact-form-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 22px 20px;
  border: 1px solid #dde0ef;
  box-shadow: 0 14px 30px rgba(15, 21, 58, 0.12);
}

/* CTA */

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-inner p {
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Footer */

.site-footer {
  background: #02010a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
}

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

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Utilities */

.section-footer-note {
  margin-top: 18px;
  font-size: 13px;
  text-align: center;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-showcase {
    order: -1;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .timeline {
    grid-template-columns: minmax(0, 1fr);
  }
  .booking-layout,
  .pricing-layout,
  .contact-layout,
  .strip-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .option-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .split-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nav {
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .timeline {
    grid-template-columns: minmax(0, 1fr);
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* === Book page Arizona styling overrides === */

.book-page {
  background: radial-gradient(circle at top, #1b1024 0, #05030d 45%, #020208 85%);
}

.book-page .section-dark {
  background: radial-gradient(circle at top left, #201328 0, #271421 40%, #1a101f 75%, #05030d 100%);
}

.book-page .booking-form-card {
  background: linear-gradient(145deg, rgba(8, 10, 26, 0.98), rgba(10, 8, 20, 0.98));
  border-color: rgba(255, 180, 0, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.book-page .booking-highlight {
  background: rgba(255, 180, 0, 0.06);
  border-color: rgba(255, 180, 0, 0.45);
}

.book-page main {
  position: relative;
  overflow: hidden;
}

.book-page main::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 180, 0, 0.16) 0, transparent 55%),
    radial-gradient(circle at 100% 40%, rgba(255, 122, 0, 0.18) 0, transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.book-page .hero,
.book-page .section,
.book-page .booking-layout {
  position: relative;
  z-index: 1;
}

.az-badge {
  max-width: 220px;
  margin-top: 18px;
  padding: 10px 12px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(255, 180, 0, 0.16) 0, rgba(5, 8, 22, 0.95) 70%);
  border: 1px solid rgba(255, 180, 0, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.az-badge svg {
  width: 100%;
  display: block;
}

.az-badge figcaption {
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .az-badge {
    max-width: 180px;
  }
}


/* === Arizona photo blocks (Book page) === */
.book-page .az-photo-card,
.book-page .az-photo-mini {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(5, 8, 22, 0.88);
  border: 1px solid rgba(255, 180, 0, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.book-page .az-photo-mini {
  margin-top: 12px;
  border-color: rgba(255, 255, 255, 0.12);
}

.book-page .az-photo-card img,
.book-page .az-photo-mini img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.book-page .az-photo-card figcaption,
.book-page .az-photo-mini figcaption {
  padding: 10px 12px 12px;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .book-page .az-photo-card,
  .book-page .az-photo-mini {
    max-width: 520px;
  }
}


/* 3-up gallery grid helper */
.gallery-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .gallery-grid-3 { grid-template-columns: 1fr; }
}

.media-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 40px rgba(0,0,0,0.65);
  background: rgba(5,8,22,0.7);
}
.media-card img { width: 100%; display:block; object-fit: cover; }
