/* =====================================================
   ✏️ 2GOSPOTLESS COLORS

   Change these if you ever want different colors.
===================================================== */

:root {

  --black: #0b0b0b;

  --dark: #111111;

  --dark-two: #171717;

  --white: #f4f4f4;

  --gray: #a8a8a8;

  --yellow: #ffc21a;

  --border: #292929;

  --max-width: 1180px;

}


/* =====================================================
   BASIC SETTINGS
===================================================== */

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


html {
  scroll-behavior: smooth;
}


body {

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  background: var(--black);

  color: var(--white);

  line-height: 1.55;

}


a {

  color: inherit;

  text-decoration: none;

}


img {

  display: block;

  max-width: 100%;

}


.container {

  width: min(
    var(--max-width),
    92%
  );

  margin: auto;

}


.section {

  padding: 100px 0;

}


.dark-section {

  background: var(--dark);

}


h1,
h2,
h3 {

  line-height: 1.08;

}


h2 {

  font-size: clamp(
    2.2rem,
    5vw,
    4rem
  );

  letter-spacing: -0.04em;

}


p {

  color: var(--gray);

}


.section-label,
.small-title {

  color: var(--yellow);

  font-size: 0.75rem;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;

}



/* =====================================================
   HEADER
===================================================== */

.header {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 1000;

  background:
    rgba(11, 11, 11, 0.94);

  border-bottom:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);

}


.header-inner {

  min-height: 82px;

  display: flex;

  align-items: center;

  justify-content: space-between;

}


.logo {

  width: 150px;

  height: 55px;

  object-fit: contain;

  object-position: left center;

}


.desktop-menu {

  display: flex;

  align-items: center;

  gap: 28px;

}


.desktop-menu a {

  font-size: 0.88rem;

  font-weight: 700;

}


.desktop-menu a:hover {

  color: var(--yellow);

}


.book-button {

  background: var(--yellow);

  color: #000 !important;

  padding: 12px 18px;

  border-radius: 8px;

}


.mobile-menu-button {

  display: none;

  background: none;

  border: none;

  color: white;

  font-size: 28px;

  cursor: pointer;

}


.mobile-menu {

  display: none;

}



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

.hero {

  min-height: 760px;

  display: flex;

  align-items: center;

  position: relative;

  background:

    linear-gradient(
      90deg,
      rgba(0,0,0,0.90),
      rgba(0,0,0,0.45)
    ),

    url("assets/hero.jpg")

    center / cover no-repeat;

}


.hero-content {

  padding-top: 80px;

}


.hero h1 {

  margin-top: 18px;

  max-width: 900px;

  font-size: clamp(
    3.4rem,
    8vw,
    7rem
  );

  letter-spacing: -0.065em;

}


.hero h1 span {

  color: var(--yellow);

}


.hero-description {

  max-width: 620px;

  margin-top: 25px;

  font-size: 1.15rem;

}


.hero-buttons {

  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 35px;

}



/* =====================================================
   BUTTONS
===================================================== */

.button {

  min-height: 52px;

  padding:
    0 24px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 8px;

  font-size: 0.78rem;

  font-weight: 850;

  letter-spacing: 0.04em;

  transition:
    transform 0.2s,
    background 0.2s;

}


.button:hover {

  transform: translateY(-2px);

}


.yellow-button {

  background: var(--yellow);

  color: #000;

}


.outline-button {

  border:
    1px solid rgba(255,255,255,0.45);

}


.outline-button:hover {

  border-color: var(--yellow);

  color: var(--yellow);

}


.black-button {

  background: #000;

  color: white;

}



/* =====================================================
   TWO COLUMN SECTIONS
===================================================== */

.two-column {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 70px;

  align-items: center;

}


.large-text {

  font-size: 1.12rem;

}



/* =====================================================
   SECTION HEADINGS
===================================================== */

.section-heading {

  display: flex;

  justify-content: space-between;

  align-items: end;

  gap: 40px;

  margin-bottom: 45px;

}


.section-heading > p {

  max-width: 380px;

}


.center-heading {

  text-align: center;

}



/* =====================================================
   LIQUID GLASS SERVICES
===================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  perspective: 1200px;
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 32px;
  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.10),
      rgba(255,255,255,0.025)
    );

  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(255,255,255,0.04),
    0 20px 50px rgba(0,0,0,0.28);

  display: flex;
  flex-direction: column;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Liquid reflection */
.service-card::before {
  content: "";
  position: absolute;

  width: 220px;
  height: 220px;

  top: -120px;
  right: -80px;

  background: rgba(255,255,255,0.08);

  border-radius: 50%;

  filter: blur(25px);

  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

/* Glass shine */
.service-card::after {
  content: "";
  position: absolute;

  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.10),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.7s ease;

  pointer-events: none;
}

.service-card:hover {
  transform:
    translateY(-12px)
    rotateX(2deg);

  border-color:
    rgba(255,194,26,0.45);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 30px 70px rgba(0,0,0,0.45),
    0 0 35px rgba(255,194,26,0.08);
}

.service-card:hover::before {
  transform: scale(1.35);
  opacity: 1;
}

.service-card:hover::after {
  left: 140%;
}

.service-number {
  position: relative;
  z-index: 2;

  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card h3 {
  position: relative;
  z-index: 2;

  margin-top: 55px;

  font-size: 1.65rem;
  letter-spacing: -0.025em;
}

.service-subtitle {
  position: relative;
  z-index: 2;

  margin-top: 8px;

  color: rgba(255,255,255,0.55);

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card p {
  position: relative;
  z-index: 2;

  margin-top: 15px;

  font-size: 0.92rem;
  line-height: 1.65;
}

.service-bottom {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  margin-top: auto;
  padding-top: 24px;

  border-top:
    1px solid rgba(255,255,255,0.10);
}

.price {
  color: var(--yellow);

  font-size: 1.55rem;
  font-weight: 900;

  letter-spacing: -0.03em;
}

.service-book {
  padding: 10px 15px;

  border:
    1px solid rgba(255,194,26,0.55);

  border-radius: 9px;

  color: var(--yellow);

  font-size: 0.68rem;
  font-weight: 900;

  letter-spacing: 0.08em;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.service-book:hover {
  background: var(--yellow);
  color: #000;

  transform: translateY(-2px);
}

/* Presidential Touch */
.service-card.featured {
  border-color:
    rgba(255,194,26,0.65);

  background:
    linear-gradient(
      145deg,
      rgba(255,194,26,0.13),
      rgba(255,255,255,0.035)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 25px 60px rgba(0,0,0,0.35),
    0 0 35px rgba(255,194,26,0.08);
}

.featured-badge {
  position: absolute;

  top: 20px;
  right: 20px;

  padding: 6px 10px;

  background: var(--yellow);
  color: #000;

  border-radius: 999px;

  font-size: 0.58rem;
  font-weight: 950;

  letter-spacing: 0.1em;
}

/* Mobile detailing notice */
.mobile-detailing-notice {
  position: relative;

  display: flex;
  align-items: center;

  gap: 18px;

  margin-bottom: 30px;
  padding: 20px 24px;

  background:
    linear-gradient(
      135deg,
      rgba(255,194,26,0.12),
      rgba(255,255,255,0.035)
    );

  border:
    1px solid rgba(255,194,26,0.25);

  border-radius: 18px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-detailing-icon {
  flex-shrink: 0;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--yellow);
  color: #000;

  font-weight: 900;
}

.mobile-detailing-notice strong {
  color: white;
}

.mobile-detailing-notice p {
  margin-top: 3px;
  font-size: 0.88rem;
}

.mobile-detailing-notice p strong {
  color: var(--yellow);
}


/* =====================================================
   PHOTO GALLERY
===================================================== */

.gallery {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 12px;

}


.gallery img {

  width: 100%;

  height: 330px;

  object-fit: cover;

  border-radius: 10px;

  background: var(--dark-two);

  transition:
    transform 0.25s;

}


.gallery img:hover {

  transform: scale(1.015);

}



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

.about-image {

  width: 100%;

  height: 600px;

  object-fit: cover;

  border-radius: 14px;

}


.about-section h2 {

  margin:
    16px 0 25px;

}


.about-section p + p {

  margin-top: 15px;

}



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

.steps {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 16px;

  margin-top: 50px;

}


.step {

  padding:
    30px 0;

  border-top:
    1px solid var(--border);

}


.step span {

  color: var(--yellow);

  font-weight: 900;

}


.step h3 {

  margin-top: 28px;

  font-size: 1.5rem;

}


.step p {

  margin-top: 12px;

}



/* =====================================================
   BOOKING BANNER
===================================================== */

.booking-banner {

  padding: 75px 0;

  background: var(--yellow);

  color: #000;

}


.booking-content {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

}


.booking-banner .section-label,

.booking-banner p {

  color: #000;

}


.booking-banner h2 {

  margin-top: 8px;

}



/* =====================================================
   CONTACT
===================================================== */

.contact-description {

  max-width: 550px;

  margin-top: 20px;

}


.contact-card {

  background: var(--dark);

  border:
    1px solid var(--border);

  border-radius: 14px;

  overflow: hidden;

}


.contact-card > * {

  display: block;

  padding:
    24px 28px;

  border-bottom:
    1px solid var(--border);

}


.contact-card > *:last-child {

  border-bottom: none;

}


.contact-card small {

  display: block;

  color: var(--gray);

  font-size: 0.75rem;

  font-weight: 800;

  letter-spacing: 0.1em;

}


.contact-card strong {

  display: block;

  margin-top: 5px;

}


.contact-card a:hover strong {

  color: var(--yellow);

}



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

footer {

  padding:
    45px 0 25px;

  background: #070707;

  border-top:
    1px solid var(--border);

}


.footer-grid {

  display: grid;

  grid-template-columns:
    1fr auto auto;

  gap: 40px;

  align-items: center;

}


.footer-grid h3 {

  font-size: 1.5rem;

}


.footer-grid h3 span {

  color: var(--yellow);

}


.footer-links {

  display: flex;

  gap: 20px;

}


.footer-links a {

  color: var(--gray);

  font-size: 0.82rem;

}


.footer-links a:hover {

  color: var(--yellow);

}


.copyright {

  margin-top: 35px;

  padding-top: 20px;

  border-top:
    1px solid var(--border);

  color: #777;

  font-size: 0.75rem;

}



/* =====================================================
   MOBILE PHONE VERSION
===================================================== */

@media (max-width: 900px) {

  .desktop-menu {

    display: none;

  }


  .mobile-menu-button {

    display: block;

  }


  .mobile-menu.open {

    display: grid;

    padding:
      10px 4%;

    background:
      var(--black);

  }


  .mobile-menu a {

    padding: 14px 0;

    border-bottom:
      1px solid var(--border);

    font-weight: 700;

  }


  .two-column {

    grid-template-columns: 1fr;

    gap: 35px;

  }


  .services-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .gallery {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .steps {

    grid-template-columns: 1fr;

  }


  .booking-content {

    flex-direction: column;

    align-items: flex-start;

  }


  .footer-grid {

    grid-template-columns: 1fr;

  }


  .footer-links {

    flex-wrap: wrap;

  }
.service-card {
  min-height: 360px;
  padding: 26px;
  border-radius: 20px;
}

.service-card h3 {
  margin-top: 45px;
  font-size: 1.45rem;
}

.service-bottom {
  align-items: flex-end;
}

.mobile-detailing-notice {
  align-items: flex-start;
  padding: 18px;
}

.mobile-detailing-icon {
  width: 36px;
  height: 36px;
}
}



/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 600px) {

  .section {

    padding: 70px 0;

  }


  .hero {

    min-height: 680px;

  }


  .hero h1 {

    font-size:
      clamp(
        3rem,
        15vw,
        5rem
      );

  }


  .hero-buttons {

    flex-direction: column;

  }


  .section-heading {

    display: block;

  }


  .section-heading > p {

    margin-top: 18px;

  }


  .services-grid,

  .gallery {

    grid-template-columns: 1fr;

  }


  .gallery img {

    height: 300px;

  }


  .about-image {

    height: 400px;

  }
/* =====================================================
   OUR WORK — LIQUID GLASS GALLERY
===================================================== */

.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.work-photo {
  position: relative;
  overflow: hidden;

  aspect-ratio: 16 / 10;

  border-radius: 24px;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.14);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 20px 50px rgba(0,0,0,0.30);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.work-photo::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.12),
      transparent 35%
    );

  pointer-events: none;
}

.work-photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.work-photo:hover {
  transform: translateY(-8px);

  border-color:
    rgba(255,194,26,0.45);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.45),
    0 0 30px rgba(255,194,26,0.08);
}

.work-photo:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

/* Mobile */
@media (max-width: 900px) {

  .work-gallery {
    grid-template-columns: 1fr;
  }

  .work-photo {
    aspect-ratio: 16 / 11;
  }

}
}
/* =====================================================
   COLLAPSED SERVICES
===================================================== */

.additional-services {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 0;
}

.additional-services.show {
  display: grid;
}

.services-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.services-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 22px;

  background: rgba(255,255,255,0.06);
  color: var(--yellow);

  border: 1px solid rgba(255,194,26,0.35);
  border-radius: 999px;

  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;

  cursor: pointer;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.services-toggle:hover {
  background: rgba(255,194,26,0.12);
  border-color: rgba(255,194,26,0.65);
  transform: translateY(-3px);
}

.services-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.services-toggle.active .services-arrow {
  transform: rotate(180deg);
}

@media (max-width: 900px) {

  .additional-services {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .additional-services {
    grid-template-columns: 1fr;
  }

}

/* =====================================================
   SERVICES — VIEW ALL
===================================================== */

.additional-services {
  display: none;
  margin-top: 22px;
}

.additional-services.show {
  display: grid;
}

.services-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 35px 0 30px;
}

.services-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 24px;

  background: rgba(255,255,255,0.06);
  color: var(--yellow);

  border: 1px solid rgba(255,194,26,0.35);
  border-radius: 999px;

  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;

  cursor: pointer;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.services-toggle:hover {
  transform: translateY(-3px);
  background: rgba(255,194,26,0.10);
  border-color: rgba(255,194,26,0.65);
}

.services-arrow {
  transition: transform 0.3s ease;
}

.services-toggle.active .services-arrow {
  transform: rotate(180deg);
}
/* =====================================================
   FIX FEATURED SERVICES LAYOUT
===================================================== */

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

.featured-services .service-card {
  width: 100%;
}

/* More space before booking button */
.services-toggle-wrap + .center {
  margin-top: 45px;
}

/* Tablet / mobile */
@media (max-width: 900px) {

  .featured-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 700px) {

  .featured-services {
    grid-template-columns: 1fr;
  }

}
.interactive-page {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("assets/garage.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* =====================================================
   MOBILE INTERACTIVE EXPERIENCE BUTTON
===================================================== */

.interactive-mobile-button {
  display: none;
}

@media (max-width: 850px) {

  .interactive-mobile-button {
    display: inline-flex;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

}

@media (max-width: 500px) {

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .button {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

}
