/* Supercar image for membership card */
.membership-supercar-img {
  width: 90%;
  max-width: 420px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  margin: 14px auto 18px auto;
  object-fit: cover;
  object-position: center bottom;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  display: block;
}
.option-radio input[type="radio"] {
  width: auto;
  min-width: unset;
  flex: 0 0 auto;
}
/* Ensure radio buttons and labels are left-aligned and on the same line */
.option-radio {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  justify-content: flex-start;
}
.option-radio label {
  margin-left: 10px;
  font-weight: normal;
  text-align: left;
}
/* Membership Learn More button styles */
.flip-btn {
  margin-top: 18px;
  padding: 10px 22px;
  background: var(--orange);
  color: #181818;
  font-weight: 800;
  border-radius: 8px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s, filter 0.18s, transform 0.18s;
  text-decoration: none;
  display: inline-block;
  font-size: 1.05em;
  box-shadow: 0 2px 10px rgba(255,122,24,0.08);
  letter-spacing: 0.02em;
}
.flip-btn.btn-outline {
  background: none;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.flip-btn:hover, .flip-btn:focus {
  background: #fff;
  color: var(--orange);
  border-color: var(--orange-glow);
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}
/* --- FLIP CARD STYLES FOR MEMBERSHIPS --- */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 22px;
  align-items: stretch;
  justify-items: center;
}

.flip-card {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 16px;
  perspective: 1200px;
  min-width: 260px;
  max-width: 320px;
  width: 100%;
  height: 370px;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.2,.6,.2,1);
}

.flip-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 32px 18px 24px 18px;
}

.card-front {
  z-index: 2;
  background: rgba(255,255,255,0.03);
  color: #fff;
}

.card-back {
  transform: rotateY(180deg);
  z-index: 3;
  background: rgba(30,30,30,0.98);
  color: #fff;
  justify-content: center;
}

.card-icon {
  font-size: 2.2em;
  margin-bottom: 10px;
}
/* --- FLIP CARD STYLES FOR MEMBERSHIPS --- */
/* Price styling for cards */
.price {
  font-size: 1.1em;
  font-weight: bold;
  color: var(--orange);
  margin: 8px 0 0 0;
}
.membership-card-front {
  z-index: 2;
  background: rgba(255,255,255,0.03);
  color: #fff;
}
.membership-card-back {
  transform: rotateY(180deg);
  z-index: 3;
  background: rgba(30,30,30,0.98);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.hero-side-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 2;
}
.hero-side-logo img {
  width: min(460px, 44vw);
  height: auto;
  object-fit: contain;
}
.hero-side-logo-img {
  filter: drop-shadow(0 0 14px rgba(255, 122, 24, 0.35));
}
@keyframes logoPulse {
  0% { filter: drop-shadow(0 0 14px rgba(255, 122, 24, 0.35)) brightness(1); transform: scale(1); }
  10% { filter: drop-shadow(0 0 24px rgba(255, 122, 24, 0.55)) brightness(1.08); transform: scale(1.04); }
  20% { filter: drop-shadow(0 0 14px rgba(255, 122, 24, 0.35)) brightness(1); transform: scale(1); }
  100% { filter: drop-shadow(0 0 14px rgba(255, 122, 24, 0.35)) brightness(1); transform: scale(1); }
}

.hero.show-final-logo .hero-side-logo {
  display: none;
}
:root {
  --black: #0b0b0b;
  --dark-gray: #1a1a1a;
  --steel: #2f2f2f;
  --orange: #ff7a18;
  --orange-glow: #ff9a3c;
  --white: #f5f5f5;
  --muted: #cfcfcf;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'ARP Display', Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
}

/* NAV */
/* NAVBAR FORMATTING */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 122, 24, 0.18);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  width: 100%;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* Brand */
.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-top {
  color: var(--orange);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.2px;
  text-shadow: 0 0 12px rgba(255, 122, 24, 0.45);
}

.brand-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Links + button */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease;
  position: relative;
}

.nav-links a:not(.nav-btn)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.nav-links a:not(.nav-btn):hover::after {
  transform: scaleX(1);
}

.nav-links a:not(.nav-btn):hover {
  color: #fff;
  background: rgba(255, 122, 24, 0.08);
}

/* Contact button styled as a button */

/* Generic button styles */
.btn, .nav-btn, .cta, .service-btn, .membership-btn, .send-btn {
  display: inline-block;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, filter 160ms ease, transform 160ms ease;
}

/* Specific button variants */
.nav-btn, .cta {
  background: linear-gradient(90deg, #ff9800 0%, #ff5722 100%);
  color: #fff !important;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 0 16px 3px rgba(255, 140, 0, 0.30);
  text-shadow: 0 1px 6px rgba(0,0,0,0.15);
  letter-spacing: 0.5px;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.nav-btn:hover, .cta:hover {
  background: linear-gradient(90deg, #ffb300 0%, #ff7043 100%);
  box-shadow: 0 0 24px 6px rgba(255, 140, 0, 0.45);
  transform: scale(1.05);
}

.service-btn {
  width: 100%;
  padding: 14px 32px;
  background: linear-gradient(90deg, #ff9800 0%, #ff5722 100%);
  color: #fff;
  font-weight: 900;
  border-radius: 12px;
  box-shadow: 0 0 24px 6px rgba(255, 140, 0, 0.35);
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
  letter-spacing: 1px;
  border: none;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.service-btn:hover {
  background: linear-gradient(90deg, #ffb300 0%, #ff7043 100%);
  box-shadow: 0 0 32px 8px rgba(255, 140, 0, 0.45);
  transform: scale(1.05);
}

.membership-btn {
  width: 170px;
  padding: 10px 14px;
  background: #1f86ff;
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
}
.membership-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.send-btn {
  margin-top: 10px;
  width: 100%;
  padding: 14px 14px;
  background: #18b34a;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 4px;
}
.send-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.hamburger {
  display: none; /* hidden by default, shown on mobile */
}


/* Mobile layout */
@media (max-width: 760px) {
  .hamburger {
    display: flex;
    width: 46px;
    height: 46px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  /* Each line */
  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  /* Hamburger → X when menu is open */
  .navbar.open .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .navbar.open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .navbar.open .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Hide nav links by default on mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 28px 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9998;
  }

  /* Show nav links when menu is open */
  .navbar.open .nav-links {
    display: flex;
  }

  /* Style individual links for mobile */
  .nav-links a {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
    margin-top: 6px;
  }
}

/* Large devices — navbar & hero button */
@media (min-width: 1024px) {
  .nav-inner {
    padding: 16px 60px;
    align-items: center;
  }

  .hero-content .service-btn {
    width: auto;
    max-width: 280px;
    align-self: flex-start;
  }
}

/* HERO */
.hero {
  /* keep your existing hero background styles */
  padding: 0 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px; /* base spacing between elements */
}

/* Headline spacing */
.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

/* Paragraph spacing */
.hero-content p {
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.85);
}

/* Button spacing */
.hero-content .service-btn {
  margin-top: 8px;
  padding: 14px 22px;
  font-size: 1rem;
}

.hero-inner {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* text left, logo right */
  gap: 40px;
  align-items: center;
}

.hero-logo {
  display: flex;
  justify-content: center;   /* center logo in its column */
  align-items: center;
}



.hero-bg-frames {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
.hero-end-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: min(360px, 40vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(255, 122, 24, 0.45));
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}
.hero-end-logo.animated {
  animation: heroEndLogoGrow 1.1s cubic-bezier(.4,0,.2,1) 1;
  opacity: 1;
}
@keyframes heroEndLogoGrow {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
  60% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
}

.hero-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.7s ease-in-out;
  filter: brightness(0.32) grayscale(0.1) drop-shadow(0 0 14px rgba(255, 122, 24, 0.18));
  pointer-events: none;
}
.hero-frame.active {
  opacity: 1;
  z-index: 2;
}
.hero-frame.outgoing {
  opacity: 0;
  z-index: 1;
}
.hero-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  background: rgba(0,0,0,0.85);
  filter: none;
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.4s, transform 0.7s cubic-bezier(.4,0,.2,1);
}
.hero-logo-frame.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Final logo next to slogan */
.hero-final-logo {
  display: none;
  vertical-align: middle;
  width: 70px;
  height: auto;
  margin-left: 18px;
  filter: drop-shadow(0 0 10px rgba(255, 122, 24, 0.25));
}
.hero.show-final-logo .hero-final-logo {
  display: inline-block;
  animation: logoGrowIn 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes logoGrowIn {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.hero {
  position: relative;
  z-index: 1;
  /* keep your existing hero background styles */
  padding: 0 60px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* text left, logo right */
  gap: 40px;
  align-items: center;
}

/* Responsive: stack logo under text on smaller screens */
@media (max-width: 900px) {
  .hero {
    padding: 0 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-logo {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .hero-logo img {
    width: min(260px, 70vw);
  }

  .hero-side-logo {
    justify-content: center;
    margin-top: 16px;
  }

  .hero-side-logo img {
    width: min(300px, 74vw);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0 16px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-side-logo {
    margin-top: 24px;
    margin-bottom: 0;
    align-items: flex-start;
    justify-content: center;
    display: flex;
  }
  .hero-side-logo img {
    width: min(220px, 76vw);
    margin-top: -16px;
    margin-bottom: 0;
    display: block;
  }
  .hero-content .service-btn {
    margin-bottom: 0;
  }
}

/* --- SERVICE SECTION  --- */
.services {
  padding: 60px 0 0 0;
  background: linear-gradient(180deg, #111 60%, #181818 100%);
}
.services h2 {
  color: #ff7a18;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5em;
  letter-spacing: 0.02em;
}
.services p {
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 2em;
}
.services-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 0;
}

@media (max-width: 1100px) {
  .services-grid {
    gap: 18px;
  }
  .service-card {
    max-width: 320px;
    min-width: 180px;
    padding: 24px 8px 18px 8px;
  }
}

@media (max-width: 900px) {
  .services-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
  .service-card {
    max-width: 95vw;
    min-width: 0;
    margin: 0 auto 18px auto;
    padding: 18px 4vw 14px 4vw;
  }
}

@media (max-width: 600px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .service-card {
    max-width: 98vw;
    min-width: 0;
    margin: 0 auto 12px auto;
    padding: 12px 2vw 10px 2vw;
    font-size: 0.98em;
  }
  .service-card h3 {
    font-size: 1.15em;
  }
  .service-card .service-btn {
    font-size: 1em;
    padding: 10px 12px;
  }
}

.service-card {
  background: linear-gradient(180deg, #232323 60%, #181818 100%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 1.5px 0 #222 inset;
  border-radius: 18px;
  padding: 32px 18px 24px 18px;
  margin: 0 12px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
  max-width: 370px;
  overflow: visible;
  position: relative;
}
.service-card h3 {
  font-size: 1.5em;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5em;
  letter-spacing: 0.03em;
  text-align: left;
  width: 100%;
}
.badge-outline {
  color: #ff7a18;
  background: transparent;
  border: 2px solid #ff7a18;
}
.service-card ul {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  width: 100%;
}
.service-card li {
  color: #fff;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 1.1em;
  font-weight: 600;
}
.service-card li:first-child {
  border-top: 0;
}
.service-card .service-price {
  font-size: 1.2em;
  font-weight: 800;
  color: #ff7a18;
  margin-bottom: 16px;
  text-align: left;
  width: 100%;
}
.service-card .service-btn {
  font-size: 1.1em;
  font-weight: 900;
  padding: 12px 28px;
  border-radius: 8px;
  background: none;
  color: #ff7a18;
  margin-top: 16px;
  margin-bottom: 0;
  box-shadow: none;
  border: 2px solid #ff7a18;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  width: 100%;
  text-align: center;
  text-decoration: none !important;
  display: inline-block;
}
.service-card .service-btn:hover {
  background: #ff7a18;
  color: #181818;
  transform: scale(1.04);
}

/* --- SERVICE CARD HEADER FIX --- */
.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.5em;
}
.service-card h3 {
  font-size: 1.25em;
  font-weight: 900;
  color: #fff;
  margin: 0;
  letter-spacing: 0.03em;
  text-align: left;
  flex: 1 1 auto;
}
.service-card .service-price {
  font-size: 1.1em;
  font-weight: 800;
  color: #ff7a18;
  margin-bottom: 12px;
  text-align: left;
  width: 100%;
  margin-top: 0.2em;
}

/* ABOUT */
.about {
  padding: 100px 60px;
  background: linear-gradient(180deg, var(--dark-gray), #000);
}

.about-box {
  max-width: 600px;
  background: var(--steel);
  padding: 40px;
  border-left: 6px solid var(--orange);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about h2 {
  color: var(--orange);
  margin-bottom: 15px;
}

.about p {
  color: var(--muted);
  line-height: 1.6;
}
.services {
  padding: 100px 60px;
  background: linear-gradient(180deg, #000, var(--dark-gray));
}

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

.section-head h2 {
  color: var(--orange);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.6;
}

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

.service-card {
  background: linear-gradient(160deg, #252525 0%, #1e1e1e 55%, #141414 100%);
  border: 1px solid rgba(255, 122, 24, 0.15);
  border-top: 3px solid var(--orange);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 28px rgba(255,122,24,0.07);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  overflow: visible;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 24, 0.45);
  box-shadow: 0 28px 60px rgba(0,0,0,0.6), 0 0 38px rgba(255,122,24,0.13);
}

.service-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  gap: 8px;
}

.card-face.card-front .service-top h3 {
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0.5em;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--white);
}

.badge {
  display: inline-flex;
  align-items: center;
  background: var(--orange, #ff8000);
  color: #fff;
  border: 2px solid var(--orange, #ff8000);
  border-radius: 999px;
  font-weight: 800;
  padding: 0.22em 1.2em 0.18em 1.2em;
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin-bottom: 0;
  margin-left: 0.8em;
  vertical-align: middle;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 2px 12px 0 rgba(255,128,0,0.13);
  transition: box-shadow 0.18s, border 0.18s, background 0.18s;
}



.badge-outline {
  color: var(--orange);
  background: transparent;
  border: 1px solid rgba(255, 122, 24, 0.55);
}

.service-card ul {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
}

.service-card li {
  color: var(--muted);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.service-card li:first-child {
  border-top: 0;
}



/* Responsive */
@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services {
    padding: 80px 24px;
  }
  .service-card {
    min-width: 0;
    width: 100%;
    margin: 0 auto;
  }
}

.memberships {
  padding: 90px 60px;
  background: linear-gradient(180deg, #000, var(--dark-gray));
}

.memberships-overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0.6)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 50px 30px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

.memberships .container {
  max-width: 680px;
  margin: 0 auto;
}

.memberships h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 40px;
  color: var(--orange);
  letter-spacing: 0.3px;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 22px;
  align-items: start;
}

.membership-grid--single {
  grid-template-columns: minmax(300px, 560px);
  justify-content: center;
}

.membership-grid--single .flip-card {
  max-width: 560px;
  width: 100%;
  height: 760px;
}


.membership-grid--single .card-front {
  justify-content: flex-start;
  padding-top: 72px;
  text-align: center;
  background: linear-gradient(160deg, #252525 0%, #1e1e1e 55%, #141414 100%);
  border: 1px solid rgba(255, 122, 24, 0.15);
  border-top: 3px solid var(--orange);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 28px rgba(255,122,24,0.07);
}

.membership-grid--single .card-front h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.membership-grid--single .card-front ul {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  text-align: left;
  width: 100%;
}

.membership-grid--single .card-front ul li {
  padding: 9px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.95rem;
  color: var(--muted);
}

.membership-grid--single .card-front ul li:first-child {
  border-top: 0;
  padding-top: 0;
}

.membership-grid--single .card-front ul li::before {
  content: "• ";
  color: var(--orange);
}

.membership-grid--single .price {
  font-size: 1.45rem;
  font-weight: 900;
  margin: 16px 0 14px;
}

.membership-grid--single .card-back {
  text-align: center;
  padding: 32px 28px;
  background: linear-gradient(160deg, #252525 0%, #1e1e1e 55%, #141414 100%);
  border: 1px solid rgba(255, 122, 24, 0.15);
  border-top: 3px solid var(--orange);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 28px rgba(255,122,24,0.07);
}

.membership-grid--single .card-back h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.membership-grid--single .card-back p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 12px 0;
  color: #ccc;
}



.membership-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 24, 0.35);
}

/* Solid-color "image" block (no photos) */
.membership-img {
  height: 210px;
  background: linear-gradient(135deg, #1a1a1a, #2f2f2f);
  position: relative;
}

/* Give each tier a distinct but cohesive look */
.membership-card:nth-child(1) .membership-img {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.22), rgba(0,0,0,0.65));
}
.membership-card:nth-child(2) .membership-img {
  background: linear-gradient(135deg, rgba(220, 220, 220, 0.18), rgba(0,0,0,0.65));
}
.membership-card:nth-child(3) .membership-img {
  background: linear-gradient(135deg, rgba(255, 199, 66, 0.18), rgba(0,0,0,0.65));
}
.membership-card:nth-child(4) .membership-img {
  background: linear-gradient(135deg, rgba(140, 204, 255, 0.18), rgba(0,0,0,0.65));
}

/* subtle shine line */
.membership-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.0) 0%,
    rgba(255,255,255,0.10) 35%,
    rgba(255,255,255,0.0) 70%
  );
  transform: translateX(-30%);
  opacity: 0.35;
}

.membership-footer {
  color: #fff;
  background: none;
  font-weight: 800;
  border-radius: 10px;
  padding: 16px 16px 18px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.tier {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}



/* Responsive like the screenshot */
@media (max-width: 1100px) {
  .membership-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 620px) {
  .memberships {
    padding: 70px 18px;
  }
  .membership-grid {
    grid-template-columns: 1fr;
  }
  .membership-grid--single {
    grid-template-columns: 1fr;
  }
  .membership-grid--single .flip-card {
    max-width: 100%;
    height: 760px;
  }
}

/* CONTACT SECTION (matches reference layout) */
.contact {
  padding: 110px 60px;
  position: relative;

  /* If you want a background image later, replace this with:
     background: url("assets/contact-bg.jpg") center/cover no-repeat;
     For now, we'll simulate the photo look with gradients. */
  background:
    radial-gradient(1200px 500px at 30% 70%, rgba(255,122,24,0.12), rgba(0,0,0,0) 60%),
    linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.contact-overlay {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 18px;
  padding: 50px 40px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-info h2 {
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 14px;
}

.contact-lines p {
  color: var(--white);
  margin: 8px 0;
  line-height: 1.6;
}

.contact-lines strong {
  color: var(--muted);
  font-weight: 700;
}

/* Right card */
.contact-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 28px 28px 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #111;
  font-weight: 600;
  font-size: 0.95rem;
}

.req {
  color: #d10000;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  outline: none;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3aa0ff;
  box-shadow: 0 0 0 3px rgba(58,160,255,0.18);
}

/* Service type radios */
.service-type {
  border: none;
  padding: 0;
  margin-top: 6px;
  display: grid;
  gap: 10px;
}

.service-type legend {
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: #222;
}

.radio input {
  width: 16px;
  height: 16px;
}

/* Send button like reference */


.form-note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 980px) {
  .contact {
    padding: 60px 20px;
  }
  .contact-overlay {
    padding: 30px 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure .card-face fits within .flip-card */
.card-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Scrollbar styling to match orange/dark color scheme */
.card-face {
  scrollbar-width: thin;
  scrollbar-color: var(--orange) #1a1a1a;
}
.card-face::-webkit-scrollbar {
  width: 5px;
}
.card-face::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 3px;
}
.card-face::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}
.card-face::-webkit-scrollbar-thumb:hover {
  background: var(--orange-glow);
}
.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 370px;
  max-height: 100%;
  display: flex;
  align-items: stretch;
}

/* Make service cards expand to fit all content — no fixed height, no overflow */
.flip-card.service-card {
  height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.flip-card.service-card .card-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: auto;
}

/* Front face drives the card height; use relative positioning so it flows naturally */
.flip-card.service-card .card-face.card-front {
  position: relative;
  top: auto;
  left: auto;
  height: auto;
  overflow: visible;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 22px 20px 18px;
}

/* Back face overlays the same area as the front face */
.flip-card.service-card .card-face.card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: linear-gradient(160deg, #252525 0%, #1e1e1e 55%, #141414 100%);
  box-shadow: none;
  padding: 24px 20px 20px;
  justify-content: flex-start;
  align-items: flex-start;
}

/* Remove inner card appearance for service card faces */
.flip-card.service-card .card-face {
  overflow: visible;
  background: none;
  box-shadow: none;
}

/* Push "Learn More" (and the Get a Quote below it) to the card bottom */
.flip-card.service-card .card-face.card-front .flip-btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* "Back" button on the pricing face: full-width and anchored to bottom */
.flip-card.service-card .card-face.card-back .flip-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* Orange checkmarks on service list items */
.flip-card.service-card .card-face.card-front li {
  padding: 5px 0 5px 1.6em;
  font-size: 0.95em;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: var(--muted);
}
.flip-card.service-card .card-face.card-front li:first-child {
  border-top: none;
}
.flip-card.service-card .card-face.card-front li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.9em;
  top: 0.35em;
  line-height: 1;
}

/* Section sub-labels: Exterior / Interior */
.service-section-label {
  color: var(--orange);
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  margin-top: 14px;
  margin-bottom: 2px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 122, 24, 0.25);
}
/* QUOTE PAGE */
.quote-page {
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 20% 20%, rgba(255,122,24,0.14), rgba(0,0,0,0) 60%),
    linear-gradient(135deg, #0a0a0a, #141414);
}

.quote-hero {
  padding: 70px 22px 28px;
}

.quote-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.quote-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin: 0 0 8px;
}

.quote-sub {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 680px;
}

.quote-pill {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.9);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.quote-pill strong {
  color: var(--orange);
}

.quote-form-wrap {
  padding: 18px 22px 80px;
}

.quote-card {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
}

.quote-card-title {
  color: #fff;
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: block;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.45);
  color: #fff;
  outline: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: rgba(255, 122, 24, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.18);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 820px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}