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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

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

/* ========================= */
/* NAVBAR */
/* ========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.35),
    transparent
  );
  z-index: 1000;
}

.logo {
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: #c0c0c0;
  font-size: 0.8rem;
  text-transform: uppercase;
}

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

.nav-btn {
  border: 1px solid #c0c0c0;
  padding: 10px 18px;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: 0.3s ease;
  white-space: nowrap;
}

.nav-btn:hover {
  background: #c0c0c0;
  color: #000;
}

/* ========================= */
/* MOBILE HAMBURGER MENU */
/* ========================= */
.hamburger {
  display: none;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #c0c0c0;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 2px;
}

.hamburger span:nth-child(2) {
  top: 11px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 92px 6% 28px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  border-bottom: 1px solid rgba(192, 192, 192, 0.16);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  padding: 18px 0;
  color: #dcdcdc;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(192, 192, 192, 0.12);
}

.mobile-menu a:last-child {
  color: #fff;
  border-bottom: none;
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 5%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.82),
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.08),
      transparent
    );
    backdrop-filter: blur(0.5px);
  }

  .logo {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .nav-links,
  .desktop-book,
  .nav-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

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

@media (max-width: 380px) {
  .logo {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
  }
}

/* ========================= */
/* HERO */
/* ========================= */
.hero {
  min-height: 100vh;

  background:
  
      /* TOP + BOTTOM FADE */ linear-gradient(
      to bottom,

      #000 0%,

      rgba(0, 0, 0, 0) 15%,

      rgba(0, 0, 0, 0) 35%,

      rgba(0, 0, 0, 0) 65%,

      rgba(0, 0, 0, 0) 85%,

      #000 100%
    ),
    /* LEFT DARK FOR TEXT */
      linear-gradient(
        to right,

        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.4)
      ),
    url("hero.JPG");

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  padding: 0 6%;
}

.hero-content {
  max-width: 700px;
  padding-top: 80px;
}

.eyebrow {
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero p {
  color: #ccc;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 44px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */
.btn {
  padding: 14px 26px;
  border: 1px solid #c0c0c0;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  transition: 0.3s ease;
}

.btn-primary {
  background: #c0c0c0;
  color: #000;
}

.btn-primary:hover {
  background: #fff;
}

.btn-secondary:hover {
  background: #c0c0c0;
  color: #000;
}

/* ========================= */
/* SECTIONS */
/* ========================= */
section {
  padding: 90px 6%;
}

.section-header {
  margin-bottom: 40px;
  max-width: 700px;
}

.section-header span {
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.7rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-top: 10px;
}

.section-header p {
  margin-top: 15px;
  color: #aaa;
  line-height: 1.6;
}

/* ========================= */
/* SERVICES */
/* ========================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.service-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.service-content h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 0.85rem;
  color: #ccc;
}

.price {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 18px;

  font-size: 0.7rem;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #fff;

  border-top: 1px solid rgba(192, 192, 192, 0.4);

  padding-top: 12px;
}

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

    gap: 24px;
  }

  .service-card {
    height: 540px;
  }
}

/* ========================= */
/* ABOUT CINEMATIC SECTION */
/* ========================= */
.about {
  position: relative;

  min-height: 100vh;

  width: 100%;

  background: /* TOP + BOTTOM FADE */ linear-gradient(
      to bottom,

      #000 0%,

      rgba(0, 0, 0, 0) 10%,

      rgba(0, 0, 0, 0) 35%,

      rgba(0, 0, 0, 0) 65%,

      rgba(0, 0, 0, 0) 85%,

      #000 100%
    ),
    /* LEFT DARK FOR TEXT */
      linear-gradient(
        to right,

        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.4)
      ),
    url("about.jpg");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  display: flex;

  align-items: center;

  padding: 0 6%;

  overflow: hidden;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 60px;
}

.about .section-header {
  margin-bottom: 30px;
}

.about .section-header h2 {
  max-width: 780px;
  line-height: 0.95;
}

.about .section-header p {
  max-width: 680px;
  font-size: 1rem;
  color: #d0d0d0;
}

.about-actions {
  display: flex;

  gap: 22px;

  flex-wrap: wrap;

  margin: 30px 0 10px;
}

.about-pill {
  position: relative;

  color: #9a9a9a;

  font-size: 0.75rem;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  padding-bottom: 6px;

  transition: 0.3s ease;
}

/* subtle underline (hidden by default) */

.about-pill::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 0%;

  height: 1px;

  background: #c0c0c0;

  transition: width 0.3s ease;
}

/* hover effect */

.about-pill:hover {
  color: #fff;
}

.about-pill:hover::after {
  width: 100%;
}

/* active state */

.about-pill.active {
  color: #fff;
}

.about-pill.active::after {
  width: 100%;
}

.about-cta {
  margin-top: 28px;

  display: flex;

  justify-content: center;
}

.about .features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}

.about .feature {
  border: 1px solid rgba(192, 192, 192, 0.18);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  padding: 20px;
}

.about .feature strong {
  display: block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.about .feature span {
  color: #bcbcbc;
  line-height: 1.5;
  font-size: 0.88rem;
}

@media (max-width: 768px) {
  .about {
    min-height: auto;
    padding: 90px 6%;
  }

  .about .features {
    grid-template-columns: 1fr;
  }

  .about-pill {
    width: 100%;
    text-align: center;
  }
}

/* ========================= */
/* FAQ */
/* ========================= */
.faq-section {
  background: #050505;
  border-top: 1px solid rgba(192, 192, 192, 0.12);
  border-bottom: 1px solid rgba(192, 192, 192, 0.12);
}

.faq {
  max-width: 950px;
}

.faq-item {
  border-bottom: 1px solid rgba(192, 192, 192, 0.18);
  padding: 24px 0;
}

.faq-item:first-child {
  border-top: 1px solid rgba(192, 192, 192, 0.18);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: #c0c0c0;
  font-size: 1.4rem;
  transition: 0.3s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  color: #bdbdbd;
  line-height: 1.7;
  max-width: 780px;
  padding-top: 18px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .faq-item summary {
    font-size: 0.85rem;
    gap: 20px;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}
/* ========================= */
/* CTA */
/* ========================= */
.cta {
  text-align: center;
  padding: 100px 6%;
}

.cta h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 20px;
}

.cta p {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 25px;
}

/* ========================= */
/* FOOTER */
/* ========================= */
footer {
  padding: 30px 6%;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #888;
  font-size: 0.8rem;
}

/* ========================= */
/* SERVICE PAGE */
/* ========================= */

.service-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 6%;
  background-size: cover;
  background-position: center;
}

.auto-hero {
  background: linear-gradient(
      to bottom,
      #000 0%,
      rgba(0, 0, 0, 0.55) 15%,
      rgba(0, 0, 0, 0) 38%,
      rgba(0, 0, 0, 0.55) 82%,
      #000 100%
    ),
    linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.45)),
    url("exotic-auto.jpg");
}

.service-hero-content {
  max-width: 700px;
  padding-top: 80px;
}

.service-hero-content h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.service-hero-content p {
  color: #d0d0d0;
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-intro {
  background: #000;
}

/* ========================= */
/* PREMIUM PACKAGE CARDS */
/* ========================= */
.package-list-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.premium-package {
  display: block;
  position: relative;
  min-height: 280px;
  padding: 34px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;

  border: 1px solid rgba(192, 192, 192, 0.16);

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.012)
  );

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

.premium-package::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(192, 192, 192, 0.13),
    transparent 34%
  );
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.premium-package::after {
  content: "→";
  position: absolute;
  right: 30px;
  bottom: 28px;
  color: #c0c0c0;
  font-size: 1.2rem;
  transition: 0.35s ease;
}

.premium-package:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 192, 192, 0.45);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.02)
  );
}

.premium-package:hover::before {
  opacity: 1;
}

.premium-package:hover::after {
  transform: translateX(6px);
  color: #fff;
}

.package-kicker {
  display: block;
  color: #9f9f9f;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 0.65rem;
  margin-bottom: 18px;
}

.package-label {
  display: inline-block;
  color: #000;
  background: #c0c0c0;
  padding: 7px 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.58rem;
  margin-bottom: 18px;
}

.premium-package h3 {
  max-width: 82%;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.premium-package p {
  max-width: 560px;
  color: #bdbdbd;
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 36px;
}

.package-action {
  position: absolute;
  left: 34px;
  bottom: 30px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.68rem;
  border-top: 1px solid rgba(192, 192, 192, 0.35);
  padding-top: 12px;
}

.premium-package.featured {
  border-color: rgba(192, 192, 192, 0.36);
}

.premium-package.maintenance {
  border-color: rgba(192, 192, 192, 0.26);
}

@media (min-width: 901px) {
  .package-list-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .premium-package {
    min-height: 330px;
  }
}

@media (max-width: 768px) {
  .premium-package {
    padding: 28px;
    min-height: 310px;
  }

  .premium-package h3 {
    max-width: 100%;
  }

  .package-action {
    left: 28px;
    bottom: 28px;
  }

  .premium-package::after {
    right: 26px;
    bottom: 26px;
  }
}

.process {
  background: #000;
}

.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 950px;
}

.process-list div {
  border-bottom: 1px solid rgba(192, 192, 192, 0.16);
  padding-bottom: 24px;
}

.process-list span {
  color: #c0c0c0;
  letter-spacing: 2px;
  font-size: 0.75rem;
}

.process-list h3 {
  text-transform: uppercase;
  margin: 10px 0;
  letter-spacing: 1px;
}

.process-list p {
  color: #aaa;
  line-height: 1.6;
}

@media (min-width: 901px) {
  .service-hero {
    padding: 0 7%;
  }

  .process-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-list div {
    border-bottom: none;
    border-left: 1px solid rgba(192, 192, 192, 0.16);
    padding-left: 24px;
  }
}

/* ========================= */
/* auto SERVICE PAGE */
/* ========================= */

.service-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 6%;
  background-size: cover;
  background-position: center;
}

.auto-hero {
  min-height: 100vh;

  background:
    
        /* TOP + BOTTOM FADE */ linear-gradient(
      to bottom,

      #000 0%,

      rgba(0, 0, 0, 0.3) 15%,

      rgba(0, 0, 0, 0) 35%,

      rgba(0, 0, 0, 0) 65%,

      rgba(0, 0, 0, 0.4) 85%,

      #000 100%
    ),
    /* LEFT DARK FOR TEXT */
      linear-gradient(
        to right,

        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.4)
      ),
    url("exotic-hero.jpg");

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  padding: 0 6%;
}

.service-hero-content {
  max-width: 700px;
  padding-top: 80px;
}

.service-hero-content span {
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
}

.service-hero-content h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.service-hero-content p {
  color: #ccc;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-intro {
  background: #000;
}

.packages {
  background: #050505;
  border-top: 1px solid rgba(192, 192, 192, 0.12);
  border-bottom: 1px solid rgba(192, 192, 192, 0.12);
}

.package-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.package-card {
  border: 1px solid rgba(192, 192, 192, 0.16);
  background: rgba(255, 255, 255, 0.03);
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(192, 192, 192, 0.38);
  background: rgba(255, 255, 255, 0.055);
}

.package-card h3 {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  margin-bottom: 14px;
}

.package-card p {
  color: #bdbdbd;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 18px;
}

.package-price {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-top: 1px solid rgba(192, 192, 192, 0.35);
  padding-top: 12px;
  display: inline-block;
}

.process {
  background: #000;
}

.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 950px;
}

.process-list div {
  border-bottom: 1px solid rgba(192, 192, 192, 0.16);
  padding-bottom: 24px;
}

.process-list span {
  color: #c0c0c0;
  letter-spacing: 2px;
  font-size: 0.75rem;
}

.process-list h3 {
  text-transform: uppercase;
  margin: 10px 0;
  letter-spacing: 1px;
}

.process-list p {
  color: #aaa;
  line-height: 1.6;
}

@media (min-width: 901px) {
  .service-hero {
    padding: 0 7%;
  }

  .package-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .process-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-list div {
    border-bottom: none;
    border-left: 1px solid rgba(192, 192, 192, 0.16);
    padding-left: 24px;
  }
}

.aircraft-hero {
  min-height: 100vh;

  background:
      
          /* TOP + BOTTOM FADE */ linear-gradient(
      to bottom,

      #000 0%,

      rgba(0, 0, 0, 0.3) 15%,

      rgba(0, 0, 0, 0) 35%,

      rgba(0, 0, 0, 0) 65%,

      rgba(0, 0, 0, 0.4) 85%,

      #000 100%
    ),
    /* LEFT DARK FOR TEXT */
      linear-gradient(
        to right,

        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.4)
      ),
    url("hero.JPG");

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  padding: 0 6%;
}

.marine-hero {
  min-height: 100vh;

  background:
        
            /* TOP + BOTTOM FADE */ linear-gradient(
      to bottom,

      #000 0%,

      rgba(0, 0, 0, 0.3) 15%,

      rgba(0, 0, 0, 0) 35%,

      rgba(0, 0, 0, 0) 65%,

      rgba(0, 0, 0, 0.4) 85%,

      #000 100%
    ),
    /* LEFT DARK FOR TEXT */
      linear-gradient(
        to right,

        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.4)
      ),
    url("marine_hero.JPG");

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  padding: 0 6%;
}

.about-page-hero {
  min-height: 100vh;

  background:
          
              /* TOP + BOTTOM FADE */ linear-gradient(
      to bottom,

      #000 0%,

      rgba(0, 0, 0, 0.3) 15%,

      rgba(0, 0, 0, 0) 35%,

      rgba(0, 0, 0, 0) 65%,

      rgba(0, 0, 0, 0.4) 85%,

      #000 100%
    ),
    /* LEFT DARK FOR TEXT */
      linear-gradient(
        to right,

        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.4)
      ),
    url("about.jpg");

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  padding: 0 6%;
}

.ceramic-hero {
  min-height: 100vh;

  background:
            
                /* TOP + BOTTOM FADE */ linear-gradient(
      to bottom,

      #000 0%,

      rgba(0, 0, 0, 0.3) 15%,

      rgba(0, 0, 0, 0) 35%,

      rgba(0, 0, 0, 0) 65%,

      rgba(0, 0, 0, 0.4) 85%,

      #000 100%
    ),
    /* LEFT DARK FOR TEXT */
      linear-gradient(
        to right,

        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.4)
      ),
    url("cb.jpg");

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  padding: 0 6%;
}

/* ========================= */
/* CONTACT */
/* ========================= */
.contact {
  background: linear-gradient(to bottom, #050505 0%, #000 100%);
}

.contact .section-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.contact-card {
  max-width: 760px;
  border-top: 1px solid rgba(192, 192, 192, 0.18);
}

.contact-line {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(192, 192, 192, 0.14);
  color: #c0c0c0;
}

.contact-line strong {
  font-size: 1rem;
  font-weight: 400;
  color: #dcdcdc;
  word-break: break-word;
}

.contact-line:hover strong {
  color: #fff;
}

.contact-btn {
  display: flex;

  width: fit-content;

  margin: 34px auto 0;
}

/* ========================= */
/* FOOTER */
/* ========================= */
.site-footer {
  background: #000;

  border-top: 1px solid rgba(192, 192, 192, 0.12);

  padding: 80px 6% 30px;
}

.footer-top {
  display: grid;

  grid-template-columns: 1.3fr 1fr 1fr 1fr;

  gap: 60px;

  padding-bottom: 50px;
}

.footer-brand h3 {
  font-size: 1rem;

  letter-spacing: 4px;

  margin-bottom: 18px;
}

.footer-brand p {
  color: #8f8f8f;

  line-height: 1.8;

  max-width: 420px;
}

.footer-links,
.footer-contact {
  display: flex;

  flex-direction: column;
}

.footer-links span,
.footer-contact span {
  color: #fff;

  text-transform: uppercase;

  letter-spacing: 2px;

  font-size: 0.72rem;

  margin-bottom: 18px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: #8f8f8f;

  margin-bottom: 14px;

  font-size: 0.88rem;

  transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(192, 192, 192, 0.12);

  padding-top: 24px;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  flex-wrap: wrap;
}

.footer-bottom p {
  color: #666;

  font-size: 0.78rem;

  letter-spacing: 1px;
}

.booking-page {
  min-height: 100vh;
  background: #000;
  padding: 28px 5%;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

/* MOBILE */
@media (max-width: 900px) {
  .site-footer {
    padding: 60px 6% 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 10px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-line {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }
}
