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


body {
  font-family: "main", sans-serif;
  color: #111;
  background: #000000;
  line-height: 1.6;
  overflow-x: hidden !important;

}


@font-face {
font-family: "main";
src: url(../Assets/Generalsans-fonts/GeneralSans-Variable.woff2) format(woff2);
}



img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a, p {
  position: relative;
  font-family: "headings", sans-serif;
  text-decoration: none;
  color: #020202;
  font-size: 1rem;
  font-weight: 300;
  user-select: none;
}

/* ============================================
   DESKTOP NAV MENU FIX (Targets <ul class="desktop">)
=============================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Turn top nav into 2-column grid */
.logo,
.desktop {
  display: block;
}



.navbar {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  justify-self: start;
}

.desktop {
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  gap: 30px; /* <-- change this value */
}



.navbar .desktop li {
  list-style: none;
}

/* override your global anchor color */
.navbar .desktop li a {
  color: #000 !important;   /* desktop links must be black */
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: 0.3s ease;
}

/* hover underline */
.navbar .desktop li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}

.navbar .desktop li a:hover {
  color: #d5b034 !important;
}

.navbar .desktop li a:hover::after {
  transform: scaleX(1);
  background: #d5b034;
}

/* Contact button styling */
.navbar .desktop li a.btn {
  padding: 8px 18px;
  border: 2px solid #d5b034;
  border-radius: 6px;
  font-weight: 600;
}

.navbar .desktop li a.btn:hover {
  background: #d5b034;
  color: #fff !important;
}

/* -------------------------------- */
/* transition page                  */
/* -------------------------------- */

.transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}

/* THE ONE FULL BLOCK */
.transition-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform-origin: top;
  transform: scaleY(1);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  overflow: hidden; /* ensures logo is masked */
}

/* LOGO INSIDE BLOCK (does NOT stretch) */
.transition-logo {
  width: 200px;
  height: auto;
  pointer-events: none;

  position: absolute;
  inset: 0;
  margin: auto;

  /* prevent inheriting parent's scaleY */
  transform: none !important;

  /* opacity-only animation */
  opacity: 0;
  will-change: opacity;
}

/* =========================
   LOGO + MASK ANIMATION FIX
   (Smooth + Cinematic)
========================= */

/* Ensure transforms never jump */
.logo {
  transform-origin: center center;
  will-change: transform, opacity;
}

/* Cinematic entrance */
@keyframes logoReveal {
  0% {
    transform: translateY(40px) scale(0.92);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
}

.logo.animate-in {
  animation: logoReveal 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.8s; /* more cinematic */
}

/* Mask blocks — extended timing for smooth reveal */
.mask-block {
  animation: blockReveal 1.4s cubic-bezier(0.33, 0.00, 0.18, 1) forwards;
  animation-delay: var(--delay);
}

/* No glitch: exit animation begins EXACTLY where reveal ended */
@keyframes logoExit {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-40px) scale(0.92);
    opacity: 0;
  }
}

.logo.animate-out {
  animation: logoExit 1.6s cubic-bezier(0.65, 0.05, 0.36, 1) forwards;
  animation-delay: 0.1s; /* slight pause so exit feels cinematic */
}

/* Mask fade-out also slowed + aligned */
@keyframes maskFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.mask-block.fade-out {
  animation: maskFadeOut 1.2s ease forwards;
  animation-delay: var(--delay);
}






/* =========================================================
   NAV + MENU OVERLAY
========================================================= */

.nav {
  position: fixed;
  width: 100%;
  padding: 0px 0px;
  display: flex;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.logo a {
    font-weight: 600;
}

.logo-img {
    height: 70px; /* adjust as needed */
    width: auto;   /* keeps aspect ratio */
}

.main-menu{
  display: block;
}

.menu-toggle {
    position: relative;
    display: none;
    width: 3rem;
    height: 1.5rem;
    color: #000;
}

.navbar ul {
    
    color: #000 !important;
}



.menu-toggle p {
    position: absolute;
    transform-origin: top left;
    color: #000;
    will-change: transform, opacity;
}

.menu-toggle p#menu-close {
    opacity: 0;
    transform: translateX(-5px) translateY(10px) rotate(5deg);
}

/* Overlay */
.menu-overlay {
  position: fixed;
  width: 100vw;
  height: 100svh;
  background-color: #fff;
  z-index: 2;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

/* Menu content */
.menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: left bottom;
  transform: none;
  opacity: 1;
  will-change: transform, opacity;
}

/* Layout */
.menu-items,
.menu-footer {
  width: 100%;
  padding: 2.5em;
  display: flex;
  gap: 2.5em;
}

.col-lg { flex: 3; }
.col-sm { flex: 2; }

/* Preview Image */
.menu-items .col-lg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-preview-img {
  position: relative;
  width: 45%;
  height: 100%;
  overflow: hidden;
}

.menu-preview-img img {
  position: absolute;
  will-change: transform, opacity;
}

/* Links */
.menu-links,
.menu-social {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.link,
.social {
  padding-bottom: 6px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* MAIN LINKS */
.link a {
  font-size: 3.5rem;
  letter-spacing: -0.02rem;
  transform: translateY(120%);
  opacity: 1;
  color: #767676 !important;
}

/* Pure white hover fix */
.link a:hover {
  opacity: 1;
  color: #d5b034 !important;
}

.link a:hover::after {
  transform: scaleX(1);
  background: #d5b034!important;
}

/* SOCIAL LINKS — FIXED TO MATCH MAIN LINKS BEHAVIOR */
.social a {
  color: #000000;
  opacity: 1;
  transform: translateY(120%); /* SAME AS .link a */
}

.social a:hover {
  opacity: 1;
  color: #d5b034;
}

/* underline animation */
.link a::after,
.social a::after,
.menu-footer a::after {
  position: absolute;
  content: "";
  top: 102.5%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.6, 0, 0.4, 1);
}

.menu-footer {
  position: absolute;
  bottom: 0;
}

.menu-footer .col-sm {
  display: flex;
  justify-content: space-between;
}




/* Form Styling */
/* =============================
   SECTION WRAPPER
============================= */

.send-message {
  width: 90%;
  margin: 0 auto;
  max-width: 100%;
  padding-top: calc(clamp(103px, 11vw, 146px) + 60px);
  padding-bottom: 120px;
  
  
}

/* =============================
 TITLE + UNDERLINE
============================= */

.title {
  font-size: 90px;
  font-weight: 600;
  line-height: 0.95;
  margin-bottom: 20px;
}

.title-line {
  max-width: 100%;
  margin: 0 auto;
  height: 1px;
  background: #000;
  margin-bottom: 100px;
}

/* =============================
 MAIN 3×3 GRID
============================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  column-gap: 80px;
  row-gap: 48px;
}

.col-3 {
  grid-column: 2;
  margin-left: 0;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* LEFT COLUMN LABEL */
.info-label {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* CONTENT BLOCKS */
.info-block h4 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
}

.info-block p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.foundation-description {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 10px;
}

/* =============================
 FORM TOP LINE ALIGNMENT
============================= */



/* =============================
 FORM + INPUT FIELD CLASS
============================= */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0px;
  max-width: 550px;
}

body.contact-page .send-message .contact-grid .info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

body.contact-page .send-message .contact-grid .info-block h4,
body.contact-page .send-message .contact-grid .info-block p {
  margin: 0;
}

body.contact-page .send-message .contact-grid .contact-form {
  width: 100%;
  max-width: 100%;
}

.input-name {
  border: none;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  padding: 20px 0;
  font-size: 15px;
  background: transparent;
  outline: none;
  resize: none;
}

.input-field {
  border: none;
  border-bottom: 1px solid #000;
  padding: 20px 0;
  font-size: 15px;
  background: transparent;
  outline: none;
  resize: none;
}

.input-message {
  border: none;
  padding: 10px 0;
  font-size: 15px;
  background: transparent;
  outline: none;
  resize: none;
  height: 150px;   /* ← increase height here */
}

.input-field[type="textarea"],
.input-field textarea {
  height: 400px;
}

/* SEND BUTTON */

.send-btn {
  width: 120px;
  padding: 12px 0;
  margin-top: 10px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 15px;
}

.send-btn:hover {
  background: #333;
}

/* =============================
 RESPONSIVE
============================= */

@media (max-width: 950px) {
  .contact-grid {
      grid-template-columns: 1fr;
      row-gap: 80px;
  }

  .col-3 {
      margin-left: 0;
      grid-column: auto;
  }
}





/* =============================
   SECTION WRAPPER
============================= */

.faq-contact-section {
  width: 90%;
  margin: 0 auto;
  max-width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* =============================
 TITLE + UNDERLINE
============================= */

.faq-title {
  font-size: 90px;
  font-weight: 600;
  line-height: 0.95;
  margin-bottom: 20px;
}

.faq-title-line {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: 1px;
  background: #000;
  margin-bottom: 100px;
}

/* =============================
 MAIN GRID (2 COLUMNS)
============================= */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2.8fr;
  column-gap: 80px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* LEFT COLUMN LABEL */
.faq-info-label {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* CONTENT BLOCKS */
.faq-info-block h4 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
}

.faq-info-block p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.faq-vehicle-description {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 10px;
}

/* =============================
 FAQ ACCORDION
============================= */

.faq-accordion {
  width: 100%;
  border-top: 1px solid #000;
  padding-top: 8px;
}

.faq-accordion-item {
  border-bottom: 1px solid #000;
}

.faq-accordion-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}

.faq-accordion-question:hover{
  color: #d5b034;
}

.faq-accordion-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  transition: 0.3s ease;
}

.faq-accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-accordion-answer p {
  padding: 0 0 20px 0;
  margin: 0;
  line-height: 1.4;
}

/* OPEN STATE */
.faq-accordion-item.open .faq-accordion-answer {
  max-height: 300px;
}

.faq-accordion-item.open .faq-accordion-question::after {
  content: "−";
}

/* =============================
 RESPONSIVE
============================= */

@media (max-width: 950px) {
  .faq-grid {
      grid-template-columns: 1fr;
      row-gap: 80px;
  }
}






  /* --------------------------------------------
   GENERAL LAYOUT
--------------------------------------------- */
.contact-section {
  width: 100%;
  padding: 80px 60px;
  padding-bottom: 0 !important;
  background: #f8f8f8; /* match reference light grey */
  font-family: sans-serif;
}

/* --------------------------------------------
   TOP GRID
--------------------------------------------- */
.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.contact-desc p {
  font-size: 24px;
  line-height: 1.5;
  max-width: 800px;
  color: black;
}

/* --------------------------------------------
   RIGHT SIDE INFO
--------------------------------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  
  gap: 80px;
}

.info-block h4 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

.info-block p,
.info-block a {
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  color: black;
}

.info-block a:hover {
  opacity: 0.7;
}

/* --------------------------------------------
   BOTTOM CTA SECTION
--------------------------------------------- */
.contact-bottom{
  max-width: 1200px;
  margin: 0 auto;
}

.vehicle-label {
  font-size: 20px;
  margin-bottom: -40px;   /* REDUCED SPACE HERE */
  font-weight: 300;
  color: black;
}

/* Arrow now sits NEXT TO the title */
.connect-row {
  display: flex;
  align-items: center;
  gap: 80px;        /* space between title and arrow */
}

.connect-title {
  font-size: 100px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 2px;
  display: inline-block;
  color: #000;
  transition: color 0.3s ease;
}

.connect-arrow {
  width: 100px;
  height: auto;
  margin-left: 100px;
  display: inline-block;
  transition: transform 0.3s ease, fill 0.3s ease; /* added transform transition */
  fill: #000; /* initial color of SVG */
}

/* Hover effect on title also affects the arrow */
.connect-title:hover {
  color: #d5b034;
}

/* Scale arrow when title is hovered */
.connect-title:hover + .connect-arrow {
  transform: scale(1.2); /* arrow expands */
  fill: #d5b034; /* optional: change arrow color */
}






/* --------------------------------------------
   RESPONSIVE
--------------------------------------------- */
@media (max-width: 900px) {
  .connect-title {
    font-size: 90px;
  }

  .connect-arrow {
    width: 120px;
  }

  .contact-top {
    flex-direction: column;
    gap: 80px;
  }
}

/* ============================================
 HIDE DESKTOP MENU ON TABLET + MOBILE
=============================================== */
@media (max-width: 1024px) {
  .navbar .desktop {
      display: none !important;
  }


  .logo-img {
    height: 40px; /* adjust as needed */
    width: auto;   /* keeps aspect ratio */
  }


  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Turn top nav into 2-column grid */
.logo,
.menu-toggle {
    display: block;
}

.navbar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    justify-self: start;
}

.menu-toggle {
    justify-self: end;
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    padding-left: 6cqw;
    z-index: 2;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

/* Menu content */
.menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    justify-content: center;
    align-items: center;
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
    will-change: transform, opacity;
}

/* Layout */
.menu-items,
.menu-footer {
    width: 100%;
    padding: 2.5em;
    display: flex;
    gap: 2.5em;
}

.col-lg { flex: 3; }
.col-sm { flex: 2; }

/* Preview Image */
.menu-items .col-lg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-preview-img {
    position: relative;
    width: 45%;
    height: 100%;
    overflow: hidden;
}

.menu-preview-img img {
    position: absolute;
    will-change: transform, opacity;
}

/* Links */
.menu-links,
.menu-social {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  
}

.link,
.social {
    padding-bottom: 6px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    
}

/* MAIN LINKS */
.link a {
    font-size: 3.5rem;
    letter-spacing: -0.02rem;
    transform: translateY(120%);
    opacity: 1;
    color: #767676 !important;
}

/* Pure white hover fix */
.link a:hover {
    opacity: 1;
    color: #d5b034 !important;
}

.link a:hover::after {
    transform: scaleX(1);
    background: #d5b034!important;
}

/* SOCIAL LINKS — FIXED TO MATCH MAIN LINKS BEHAVIOR */
.social a {
    color: #000000;
    opacity: 1;
    transform: translateY(120%); /* SAME AS .link a */
}

.social a:hover {
    opacity: 1;
    color: #d5b034;
}

/* underline animation */
.link a::after,
.social a::after,
.menu-footer a::after {
    position: absolute;
    content: "";
    top: 102.5%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.6, 0, 0.4, 1);
}

.menu-footer {
    position: absolute;
    bottom: 0;
}

.menu-footer .col-sm {
    display: flex;
    justify-content: space-between;
}


}















  /* =========================================================
     CANVAS
  ========================================================= */
  #canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
  }
  
  /* =========================================================
     FONT
  ========================================================= */
  @font-face {
    font-family: "main";
    src: url(../Assets/Generalsans-fonts/GeneralSans-Variable.woff2) format("woff2");
  }
  
  /* =========================================================
     TEXT CONTAINER
  ========================================================= */
  .text {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 90%;
    height:525px;
    pointer-events: auto; /* allow hover and clicks */
  }
  
  .top-text {
    position: absolute;
    top: 4.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: top;       /* center vertically */
    width: 90%;
    pointer-events: auto; /* allow hover and clicks */
  }
  
  
  .intro-text {
    width: 55%;
  }
  
  .intro-form {
    display: flex;
    justify-content: flex-end; /* pushes content to the right */
    width: 100%;  
  }
  
  .company-type {
    display: flex;
    justify-content: flex-end; /* pushes content to the right */
    width: 100%;               /* make sure it fills its grid column */
  }
  
  .company-type p {
    margin: 0;                 /* remove default margin */
  }
  
  /* =========================================================
     TEXT STYLES
  ========================================================= */
  .text h2 {
    color: #fff;
    font-size: 36px;
    line-height: 34px;
    margin-bottom: 20px;
    font-weight: 300;
    font-family: "main";
  }
  
  .text p {
    color: #fff;
    font-size: 14px;
    font-family: "main";
  }
  
  .top-text p {
    color: #fff;
    font-size: 14px;
    font-family: "main";
  }
  
  .text a {
    color: #fff;
    background: none;
    font-size: 14px;
    font-family: "main";
    text-align: right;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  
  .info-block {
    display: flex;
    justify-content: flex-end;
  }




  
  .contact-form {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 20px;
  }

  .page {
    display: flex;
    flex-direction: row;
    align-items: center;       /* center vertically */
    justify-content: space-between; /* push h2 left, p right */
    width: 100%;
    border-bottom: 0.5px solid #fff ;
    margin-bottom: 10px;
    }

    .page h2 {
        margin: 0;  /* remove default margin */
        font-size: 14px !important;
        font-weight: 500 !important;
        text-transform: uppercase;
       
    }

    .page p {
        margin: 0;  /* remove default margin */
        font-size: 14px;
    }

  
  .form-step {
    display: none;
    flex-direction: column;
  }
  
  .form-step.active {
    display: flex;
    width: 100%;
  }
  
  
  .form-step.active h2{
    font-size: 18px;
    

  }
  
  input, textarea {
    padding: 10px;
    font-size: 1px;
    margin-top: 5px;
    
  }


  .input-block {
    width: 50%;
  }




  .inputarea{
    all: unset;
    font-size: 12px;
    padding: 8px;
    width: 96%;
    background: #ffffff;
    color: #000000;
  }

  .addinputarea{
    all: unset;
    font-size: 12px;
    width: 100%;
    height: 100px;
    background: #212121;
    color: #000000;
  }



  .inputblock{
    padding-top: 5px;
    padding-bottom: 5px;
  }
  

  .inputblock p{
    font-size: 14px;
    margin-bottom: 10px;
  }

  .button-row {
    display: flex;
    flex-direction: row;   /* Horizontal row */
    width: 100%;           /* Full row width */
    justify-content: flex-end; /* Align buttons to the right */
    align-items: center;   /* Vertical alignment */
    margin-top: 20px;
    gap: 0px;             /* Space between buttons */
  }
  
  .back-btn, .next-btn {
    all: unset;
    padding: 12px 20px;
    background: transparent;
    color: #000000;
    transition: 0.3s;
  }
  
  .back-btn:hover, .next-btn:hover {
    color: #000000;
  }


  .next-btn:hover {
    color: #000000;
  }
  
  .next-btn {
    all: unset;
    padding: 10px 25px;
    border-radius: 20px;
    background-color: #000000;
    font-size: 16px;
    width: fit-content;
    text-align: center;
  }
  
  

  .optionarea {
    display: flex;
    width: 100%;
    gap: 10px;   /* spacing between the two labels */
  }
  
  .optionarea label {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    background: #212121;
    color: #000000;
    transition: 0.2s;
    text-align: center;
    position: relative;
  }

  .inputblock span {
    color: #c3180f;

  }



  
  /* Hide the radio */
  .optionarea input[type="radio"] {
    display: none;
  }
  
  .optionarea label:has(input[type="radio"]:checked) {
    background: #ffffff;
    color: #000;
}

.optionarea label span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;   /* inherit from label */
}


.settingarea {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns */
    gap: 10px;
    width: 100%;
  }
  
  .settingarea label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    background: #212121;
    color: #fff;
    transition: 0.2s;
    text-align: center;
    position: relative;
    width: 100%;
  }
  
  /* your entire CSS EXACTLY as before — only change below */

  .settingarea input[type="checkbox"],
  .settingarea input[type="radio"] {
    display: none ;
  }

  .settingarea label:has(input[type="checkbox"]:checked),
  .settingarea label:has(input[type="radio"]:checked) {
    background: #ffffff;
    color: #000;
  }
  
  
  .settingarea label span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
  }





  .budgetarea {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns */
    gap: 10px;
    width: 100%;
  }
  
  .budgetarea label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    background: #212121;
    color: #fff;
    transition: 0.2s;
    text-align: center;
    position: relative;
    width: 100%;
  }
  
  /* your entire CSS EXACTLY as before — only change below */

  .budgetarea input[type="radio"] {
    display: none ;
  }
  
  .budgetarea label:has(input[type="radio"]:checked) {
    background: #ffffff;
    color: #000;
  }
  
  
  .budgetarea label span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
  }









.addarea {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns */
    gap: 10px;
    width: 100%;
  }
  
  .addarea label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    background: #212121;
    color: #fff;
    transition: 0.2s;
    text-align: center;
    position: relative;
    width: 100%;
  }
  
  /* your entire CSS EXACTLY as before — only change below */

  .addarea input[type="radio"] {
    display: none ;
  }
  
  .addarea label:has(input[type="radio"]:checked) {
    background: #ffffff;
    color: #000;
  }
  
  
  .addarea label span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
  }


  .submit-btn {
    all: unset;
    padding: 10px 25px;
    border-radius: 20px;
    background-color: #fff;
    font-size: 16px;
    width: fit-content;
    text-align: center;

  }

/* =========================================================
   BECOME A PARTNER FULL PAGE FORM
========================================================= */
body.partner-form-page {
  min-height: 100svh;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

.partner-page-logo {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 20;
  display: block;
  width: 92px;
  height: auto;
}

.partner-page-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.partner-form-wrap {
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}

body.partner-form-page .partner-form {
  width: min(100%, 980px);
  max-width: none;
  min-height: min(720px, calc(100svh - 128px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

body.partner-form-page .form-progress {
  width: 100%;
}

body.partner-form-page .progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  color: #000;
  font-family: "main", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

body.partner-form-page .progress-track {
  width: 100%;
  height: 8px;
  overflow: hidden;
  background: #e8e8e8;
  border-radius: 8px;
}

body.partner-form-page .progress-bar {
  width: 0%;
  height: 100%;
  background: #d5b034;
  border-radius: 8px;
  transition: width 0.35s ease;
}

body.partner-form-page .form-status {
  min-height: 22px;
  color: #b00020;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.partner-form-page .form-status.visible {
  opacity: 1;
}

body.partner-form-page .page {
  border-bottom-color: rgba(0, 0, 0, 0.28);
  padding-bottom: 16px;
  margin-bottom: 28px;
}

body.partner-form-page .page h2,
body.partner-form-page .page p,
body.partner-form-page .inputblock p,
body.partner-form-page .addinfo p {
  color: #000;
}

body.partner-form-page .page h2 {
  font-size: 22px !important;
  line-height: 1.2;
}

body.partner-form-page .form-step {
  min-height: 360px;
}

body.partner-form-page .form-step.active {
  gap: 14px;
}

body.partner-form-page .inputblock {
  padding: 0;
}

body.partner-form-page .inputblock p {
  font-size: 15px;
}

body.partner-form-page .inputarea,
body.partner-form-page .addinputarea {
  all: unset;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  box-sizing: border-box;
  background: #f6f6f6;
  color: #000;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #d7d7d7;
}

body.partner-form-page .inputarea[readonly] {
  background: #ededed;
  color: #333;
}

body.partner-form-page .amount-summary small {
  display: block;
  margin-top: 8px;
  color: #555;
  font-size: 13px;
  line-height: 1.4;
}

body.partner-form-page .addinputarea {
  min-height: 140px;
  display: flex;
  align-items: flex-start;
  padding-top: 14px;
}

body.partner-form-page .optionarea,
body.partner-form-page .settingarea,
body.partner-form-page .budgetarea,
body.partner-form-page .addarea {
  gap: 12px;
}

body.partner-form-page .optionarea label,
body.partner-form-page .settingarea label,
body.partner-form-page .budgetarea label,
body.partner-form-page .addarea label {
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  background: #f6f6f6;
  color: #000;
}

body.partner-form-page .optionarea label:has(input:checked),
body.partner-form-page .settingarea label:has(input:checked),
body.partner-form-page .budgetarea label:has(input:checked),
body.partner-form-page .addarea label:has(input:checked) {
  border-color: #d5b034;
  background: #fff;
  color: #000;
}

body.partner-form-page .button-row {
  margin-top: auto;
  gap: 12px;
}

body.partner-form-page .back-btn,
body.partner-form-page .next-btn,
body.partner-form-page .submit-btn {
  all: unset;
  min-width: 96px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.partner-form-page .back-btn {
  border: 1px solid #cfcfcf;
  color: #000;
}

body.partner-form-page .next-btn,
body.partner-form-page .submit-btn {
  background: #000;
  color: #fff;
}

body.partner-form-page .back-btn:hover {
  border-color: #000;
}

body.partner-form-page .next-btn:hover,
body.partner-form-page .submit-btn:hover {
  background: #d5b034;
  color: #fff;
}

body.partner-form-page .form-success {
  width: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding: 48px 0;
}

body.partner-form-page .form-success[hidden] {
  display: none;
}

body.partner-form-page .form-success h2 {
  color: #000;
  font-family: "main", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

body.partner-form-page .form-success p {
  max-width: 680px;
  color: #222;
  font-size: 18px;
  line-height: 1.5;
}

body.partner-form-page .success-bottom-message {
  margin-top: auto;
  padding-top: 32px;
  color: #555 !important;
  font-size: 15px !important;
}

@media (max-width: 720px) {
  .partner-page-logo {
    top: 18px;
    left: 18px;
    width: 72px;
  }

  .partner-form-wrap {
    align-items: flex-start;
    padding: 110px 18px 32px;
  }

  body.partner-form-page .partner-form {
    min-height: calc(100svh - 64px);
    gap: 24px;
  }

  body.partner-form-page .progress-meta,
  body.partner-form-page .page {
    gap: 12px;
  }

  body.partner-form-page .page h2 {
    font-size: 18px !important;
  }

  body.partner-form-page .optionarea,
  body.partner-form-page .settingarea,
  body.partner-form-page .budgetarea,
  body.partner-form-page .addarea {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  body.partner-form-page .button-row {
    justify-content: stretch;
  }

  body.partner-form-page .back-btn,
  body.partner-form-page .next-btn,
  body.partner-form-page .submit-btn {
    flex: 1;
  }

  body.partner-form-page .form-success h2 {
    font-size: 34px;
  }

  body.partner-form-page .form-success p {
    font-size: 16px;
  }
}

/* =========================================================
   BUTTON + ACCENT OVERRIDES
========================================================= */
:root {
  --site-accent: #d5b034;
}

.navbar .desktop li a.btn,
.send-btn,
.back-btn,
.next-btn,
.submit-btn,
body.partner-form-page .back-btn,
body.partner-form-page .next-btn,
body.partner-form-page .submit-btn {
  background: #000 !important;
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

.navbar .desktop li a.btn:hover,
.send-btn:hover,
.back-btn:hover,
.next-btn:hover,
.submit-btn:hover,
body.partner-form-page .back-btn:hover,
body.partner-form-page .next-btn:hover,
body.partner-form-page .submit-btn:hover {
  background: var(--site-accent) !important;
  background-color: var(--site-accent) !important;
  border-color: var(--site-accent) !important;
  color: #fff !important;
}
