* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #f4f4f4;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
}

.hero {
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
    url("assets/images/ken-block-wrx-sti-2006.avif");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1.5rem 2rem;
  position: relative;
}

.about-hero {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
    url("assets/images/anime landscape.jpg");
}

.navbar {
  padding: 0;
}

.navbar .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.navbar-collapse {
  justify-content: flex-end;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.25);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.logo {
  color: #ffffff;
  font-size: 1.8rem;
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.nav-btn,
.cta-btn,
.submit-btn {
  background: #2563eb;
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
}

.nav-btn:hover,
.nav-btn:focus,
.cta-btn:hover,
.cta-btn:focus,
.submit-btn:hover,
.submit-btn:focus {
  background: #1d4ed8;
  color: white;
}

.hero-content {
  margin-top: 8rem;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.eyebrow {
  color: #93c5fd;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.services,
.booking {
  padding: 4rem 0;
}

.about-section {
  padding: 4rem 0 5rem;
}

.about-panel,
.about-card {
  background: #171717;
  border: 1px solid #2a2a2a;
  border-radius: 24px;
  padding: 1.5rem;
  height: 100%;
}

.about-panel,
.about-card,
.tall-card {
  height: 100%;
}

.services h2,
.booking h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  text-align: center;
}

.service-box {
  background: #1b1b1b;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  color: #f4f4f4;
}

.service-card-button {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card-button:hover,
.service-card-button:focus {
  transform: translateY(-4px);
  border-color: #60a5fa;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  outline: none;
}

.service-box h3 {
  margin-bottom: 0.75rem;
  color: #60a5fa;
}

.service-box p {
  color: #f4f4f4;
}

form {
  max-width: 100%;
}

.field-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #dbeafe;
}

.form-control {
  padding: 0.9rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #1c1c1c;
  color: white;
}

.form-control::placeholder {
  color: #9ca3af;
}

.form-control:focus {
  background: #1c1c1c;
  color: white;
  border-color: #60a5fa;
  box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.scheduler-card {
  background: linear-gradient(180deg, #191919 0%, #111111 100%);
  border: 1px solid #2a2a2a;
  border-radius: 28px;
  padding: 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.schedule-trigger {
  min-width: 180px;
}

.scheduler-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.scheduler-month {
  color: #f8fafc;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.scheduler-nav {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
}

.scheduler-nav:hover,
.scheduler-nav:focus {
  background: #1d4ed8;
  color: #fff;
}

.scheduler-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.6rem;
}

.scheduler-weekdays {
  margin-bottom: 0.6rem;
}

.scheduler-weekdays span {
  color: #93c5fd;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.calendar-spacer {
  min-height: 62px;
}

.calendar-day {
  min-height: 62px;
  border-radius: 20px;
  border: 1px solid #2f2f2f;
  background: #202020;
  color: #f8fafc;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.calendar-day:hover,
.calendar-day:focus {
  transform: translateY(-2px);
  border-color: #60a5fa;
  background: #263246;
}

.calendar-day.is-today {
  border-color: #60a5fa;
}

.calendar-day.is-selected {
  background: #2563eb;
  border-color: #60a5fa;
}

.calendar-day.is-unavailable,
.calendar-day:disabled {
  background: #141414;
  color: #5b6470;
  border-color: #242424;
  cursor: not-allowed;
  transform: none;
}

.time-slot-section {
  margin-top: 1.25rem;
  display: none;
}

.time-slot-section.is-visible {
  display: block;
}

.time-slot-heading {
  color: #dbeafe;
  font-size: 1rem;
  font-weight: 700;
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.time-slot {
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid #2f2f2f;
  background: #202020;
  color: #f8fafc;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.time-slot:hover,
.time-slot:focus {
  transform: translateY(-2px);
  border-color: #60a5fa;
  background: #263246;
}

.time-slot.is-selected {
  background: #2563eb;
  border-color: #60a5fa;
}

.time-slot.is-disabled,
.time-slot:disabled {
  background: #141414;
  color: #5b6470;
  border-color: #242424;
  cursor: not-allowed;
  transform: none;
}

.scheduler-note,
.selected-schedule {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.selected-schedule {
  margin-top: 0.85rem;
  font-weight: 600;
}

.service-modal {
  background: #151515;
  color: #f4f4f4;
  border: 1px solid #2a2a2a;
}

.service-modal .modal-header {
  border-bottom: 1px solid #2a2a2a;
}

.service-modal .modal-title {
  color: #dbeafe;
}

.service-modal .modal-body {
  color: #d1d5db;
}

.work-gallery-dialog {
  max-width: min(1120px, calc(100vw - 1.5rem));
}

.work-gallery-modal .modal-body {
  padding: 1rem;
}

.work-gallery-swiper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  background:
    radial-gradient(circle at top, rgba(37, 99, 235, 0.24), transparent 42%),
    linear-gradient(180deg, #0f1115 0%, #090909 100%);
}

.work-gallery-swiper .swiper-wrapper {
  align-items: flex-start;
}

.work-gallery-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: flex-start;
}

.work-gallery-figure {
  display: grid;
  gap: 0.9rem;
  width: 100%;
}

.work-gallery-media {
  min-height: clamp(280px, 60vh, 620px);
  border-radius: 22px;
  overflow: hidden;
  background: #050505;
}

.work-gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  cursor: zoom-in;
}

.work-gallery-caption {
  color: #dbeafe;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.work-gallery-prev,
.work-gallery-next {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.88);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.work-gallery-prev::after,
.work-gallery-next::after {
  font-size: 1rem;
  font-weight: 700;
}

.work-gallery-pagination {
  position: static;
  margin-top: 0.85rem;
}

.work-gallery-pagination .swiper-pagination-bullet {
  background: #93c5fd;
  opacity: 0.45;
}

.work-gallery-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
  opacity: 1;
}

.work-thumbs-swiper {
  padding-bottom: 0.2rem;
}

.work-thumbs-swiper .swiper-slide {
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.work-thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
  transform: translateY(-2px);
}

.work-thumbs-swiper .swiper-slide-thumb-active .work-thumb-image {
  border-color: #60a5fa;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.work-thumb-image {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
}

.work-gallery-hint {
  margin-top: 0.85rem;
  color: #93c5fd;
  font-size: 0.92rem;
  text-align: center;
}


.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #0b0b0b;
  color: #aaa;
}
.hero-location-card {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 320px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.hero-location-card h3 {
  margin: 0 0 10px 0;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.hero-location-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.hero-location-map iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}

/* make sure the hero can anchor the card */
.about-hero,
.hero {
  position: relative;
}
.about-hero {
  position: relative;
  min-height: 100vh;
}

.hero-content {
  position: relative;
}

.hero-location-card {
  position: static;
  width: min(100%, 420px);
  margin-top: 1.5rem;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-location-card h3 {
  margin: 0 0 0.4rem 0;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.04em;
}

.hero-location-address {
  margin: 0 0 0.9rem;
  color: #dbeafe;
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-location-map {
  border-radius: 12px;
  overflow: hidden;
}

.hero-location-map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 220px;
  height: auto;
  border: 0;
}

@media (min-width: 768px) {
  .about-page .about-hero .hero-location-card {
    width: min(100%, 470px);
  }

  .about-page .about-hero .hero-location-map iframe {
    min-height: 250px;
  }
}

@media (min-width: 1200px) {
  .about-page .about-hero .hero-location-card {
    width: min(100%, 520px);
  }

  .about-page .about-hero .hero-location-map iframe {
    min-height: 280px;
  }
}

@media (max-width: 767.98px) {

  .work-gallery-modal .modal-body {
    padding: 0.85rem;
  }

  .work-gallery-prev,
  .work-gallery-next {
    width: 42px;
    height: 42px;
  }

  .work-thumb-image {
    height: 78px;
  }

  .hero {
    padding: 1rem 1rem 2rem;
  }

  .hero-content {
    margin-top: 4rem;
  }

  .hero-content h2 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .logo {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }

  .scheduler-card {
    padding: 1rem;
  }

  .calendar-day {
    min-height: 52px;
    border-radius: 16px;
  }

  .scheduler-weekdays span {
    font-size: 0.75rem;
  }

 
   .hero-signature {
  right: 16px;
  bottom: 16px;
  font-size: 0.75rem;
  max-width: 70%;
  text-align: right;
  line-height: 1.2;
}
}

.hero-signature {
  position: absolute;
  bottom: 20px;
  right: 25px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 1;
  transition: opacity 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.navbar-collapse {
  justify-content: flex-end;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  white-space: nowrap;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 140px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* ABOUT PAGE LAYOUT TUNE-UP */
.about-section .about-panel,
.about-section .about-card,
.about-section .tall-card {
  height: 100%;
}

.about-section .row.g-4.align-items-start {
  align-items: stretch !important;
}

.about-section .about-card h3 {
  line-height: 1.25;
}

.about-section .about-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.about-images-row img {
  width: 100%;
  display: block;
}

.shop-values-row .about-card {
  min-height: 100%;
}

.shop-values-row h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.shop-values-row p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.load-slide-card {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.load-slide-card.in-view {
  opacity: 1;
  transform: translateX(0);
}

.load-slide-card.delay-1 {
  transition-delay: 0.1s;
}

.load-slide-card.delay-2 {
  transition-delay: 0.2s;
}

.load-slide-card.delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 767.98px) {
  .navbar-collapse {
    width: 100%;
    margin-top: 1rem;
  }

  .nav-btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-signature {
    right: 16px;
    bottom: 70px;
    font-size: 0.75rem;
    max-width: 70%;
    text-align: right;
    line-height: 1.2;
  }

  .about-section .about-panel {
    padding: 1.25rem;
  }

  .about-section .about-card {
    padding: 1rem;
  }

  .shop-values-row h3 {
    font-size: 1.2rem;
  }

  .shop-values-row p {
    font-size: 0.98rem;
  }
}

.social-float {
  position: fixed;
  left: 14px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.social-float a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.social-float a i {
  font-size: 30px;
  line-height: 1;
}

.social-float a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

@media (max-width: 767.98px) {
  .navbar-collapse {
    width: 100%;
    margin-top: 1rem;
  }

  .nav-btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-signature {
    right: 16px;
    bottom: 70px;
    font-size: 0.75rem;
    max-width: 70%;
    text-align: right;
    line-height: 1.2;
  }

  .about-section .about-panel {
    padding: 1.25rem;
  }

  .about-section .about-card {
    padding: 1rem;
  }

  .shop-values-row h3 {
    font-size: 1.2rem;
  }

  .shop-values-row p {
    font-size: 0.98rem;
  }

  body.home-page .social-float {
    position: fixed;
    top: 28px;
    right: 42px;
    left: auto;
    bottom: auto;
    display: flex;
    flex-direction: row;
    gap: 8px;
    z-index: 1000;
  }

  body.about-page .navbar .container-fluid {
    align-items: flex-start;
    gap: 0.75rem;
  }

  body.about-page .logo {
    order: 1;
  }

  body.about-page .social-float {
    position: static;
    order: 2;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 0.3rem;
    margin-bottom: 0.2rem;
    z-index: auto;
  }

  body.about-page .nav-btn {
    order: 3;
    margin-top: 0;
  }

  .social-float a {
    width: 40px;
    height: 40px;
  }

  .social-float a i {
    font-size: 20px;
  }

 
