
:root {
  --header-height: 100px;
}

/* .homeimg {
  max-width: 100%;
  height: 100px;
  display: block;
 /*  margin: 0 auto; centers the image */
/* }

@media (min-width: 992px) {
  .homeimg {
    height: 150px;
}
} */ */

html, body {
  height: 100%;
}

body { 
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  font-family: 'Poppins', 'Inter', sans-serif;
  background: var(--bg-light, #FEFBF2);
  color: var(--text-dark, #111827);
}

header.navbar {
    display: flex;
    position: fixed;  /* fixes the header to the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;    /* ensures header is above other content */
    justify-content: space-between;
    background-color: #000;  /* soft background */
    height: var(--header-height);
    padding: 0 1rem;
    color: white;
}

.logo-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-left img.homeimg {
  height: 60px;       /* default mobile size */
  width: auto;
  display: block;
  max-width: 100%;
}

.home {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;    
}

.home:hover {
  text-decoration: underline;
}

header div a {
    margin-right: 30px;
}


nav a {
      display: flex;
      margin: 20px 20px;
}

.menu-open {
  margin-top: 30px;
  margin-right: 15px;
  background: transparent;
  border: none;
  width: 60px;
  height: 55px;
  padding: 0;
}

.menu-open img {
  display: block;
 }

 .xclose {
  background: transparent;
 }

.menu-open, .xclose {
    display: block;
    z-index: 1100;
    cursor: pointer;
    width: 20px;
    height: 20px;
   
}
  
nav ul {
    position:fixed;
    background: white;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    top: 0;
    right: 0;
    height: 100vh;
    margin: 0;
    list-style: none;
    width: 70%;
    text-align: right;
    padding: 2em;
    transform: translateX(100%); /* hides the menu off-screen */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
    /*flex-direction: row;*/
  
    
  nav ul li {
    margin: 2em 0;
  }
        
 nav ul li:nth-of-type(1) {
    margin-bottom: 3em;
    margin-right: 10em;
}

nav ul li a {
   text-decoration: none;
   color: black;
   font-weight: bold;
   font-size: 1rem;
}
            
nav ul li a:hover {
  text-decoration: underline;
}

nav ul.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 992px) {
    .menu-open, .xclose {
        display: none !important;
    }

    nav ul {
        position: fixed;
        display: flex;
        top: 0;
        right: 0;
        height: auto;
        width: auto;
        background: none;
        margin: -50px 20px 0 0;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0%);
    }

    nav ul li a {
      color: white;
      font-weight: 400;
    }

  .logo-left  {
    height: 80px;
  }
} 

 /* .logo-left  {
    display: flex;
    max-width: 100%;
    height: auto; 
    img {
        height: 60px;
        width: auto;
        margin: 10px;
   } */
   
main {
  flex: 1;
  min-height: 0;                /* REQUIRED for proper scrolling */

  padding-top: var(--header-height);
  background: #fffbf3;
  overflow-y: auto;
  margin: 0;
}

footer {
    grid-row: 3;          /*sits in the bottom row of the body grid*/
    background: #000;  /*dark background for footer*/
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.6em;
    height: 100px;
}

footer a {
  text-decoration: none;
  color: white;
  padding: 0 15px;
}
 

footer p {
  margin: 0.3rem 0;
  font-size: 0.6rem;
}

footer p {
  margin: 0.3rem 0;
  font-size: 0.6rem;
}

@media (min-width: 992px) {
  :root {
    --header-height: 80px;
  }

  footer {
    font-size: 1rem;
  }
  footer p {
  font-size: 0.9rem;
  }
}
    
/* on larger screens, show menu as horizontal bar */

.grid-container {
  display: grid;
  grid-template-columns: 1fr; /* mobile: one column */
  margin: 0;
  padding: 0;
}

/* bigger screens: switch to 2x2 */
@media (min-width: 992px) {
  .grid-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: calc(100vh - 60px); /* adjust for navbar height */
  }
}

.grid-container div {
  background: #FEFBF2;
  text-align: center;
  padding: 0px;
}

.box1 {
    display: flex;
    margin: 0;
    justify-items: center;
    padding-bottom: 10px;
}

.vendor-content {
    align-items: center; /* centers children horizontally */
}

.getlisted-button {
    background-color: #000;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 5px 15px;
    border-radius: 8px;
}

.getlisted-button:hover {
    background-color: green /* Darker shade on hover */
}

#goToSearch {
  padding: 5px 15px;
  font-size: 1.5rem;
  font-weight: 400;
  background: #2b0d0d;   /* use your brand dark */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#goToSearch:hover {
  opacity: 0.9;
}

#goToSearch {
  display: block;
  margin: 1.5rem auto 0;
}


.box1 img {
    width: 100%;
    height: auto; /* Adjusts the image size to fit the box */
    border-radius: 8px; /* Optional: adds rounded corners to the image */
    margin-right: 40px;
    padding-bottom: 5rem;
}

.box1 .hero-text {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}


.box1 h1 {
  margin-top: 2rem;
  font-size: 2rem;
}


@media (min-width: 992px) {

.box1 h3 {
   margin-top: 2rem;
   font-size: 1.8rem;
}}

/*BOX 2 CSS PROPERTIES*/

.box2 {
    padding: 0;
    margin: 0;
    border-radius: 10px
}

.slideshow {
  position: relative;
  width: 100%;      /* fills container */
  height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  opacity: 0;
  animation: fade 15s infinite;
}

/* First slide (video) */
.slide:nth-child(1) {
  animation-delay: 0s;
}

/* Second slide (image1) */
.slide:nth-child(2) {
  animation-delay: 5s;
}

/* Third slide (image2) */
.slide:nth-child(3) {
  animation-delay: 10s;
}

/* Fade keyframes */
@keyframes fade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Make media fill container */
.slideshow img,
.slideshow video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
    .slideshow {
        height: 400px;
        width: 100%;
    }
     .slide video, .slide img {
      max-width: 100%;
      height: auto;
      display: block;
      width: 100%;
     }
  }
   
.apps {
  height: 100%;
  margin: 1rem;
}
.app-download {
  display: inline-block;
  text-align: center;
}

.app-download img {
  margin: 1rem;
  width: 200px; /* Adjust as needed */
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 0.5rem;
  border-radius: 16px;
  justify-items: right;
  
}

.app-download img:hover {
  transform: scale(1.05);
}

.app-download figcaption {
  margin-top: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #333; /* You can use your brand color */
}

@media (max-width: 991px) {
  h3.appCaption {
    font-size: 1rem !important;
    margin-left: 5px;
  }
}



/* INDEX BOX 3 */
.idbox3  {
    text-align: center;
    padding: 0.5rem;
    background-color: none;
  }

  div .benefits-intro {
    margin: 1.5rem;
  }

.idbox3 h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #222;
    text-align: center;
}

.feature {
    /*background: white;*/
    /*background: linear-gradient(to bottom right, lightgray, #edcab0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-left: 1.5rem;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*box-shadow: 0 3px 6px;*/
    margin-bottom: 2rem;
    margin-top: 0;
    width: 90%;
    
}

.feature span {
    font-size: 2rem;
    display: block;
    margin-bottom: 1.5rem;
}

.feature p {
    font-display: block;
    font-size: 1.8rem;
    color: #555;
    margin: 0;
}

.feature strong {
    color: #111;
}

/* .cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: white;
    background-color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 1rem;
} */

.cta {
  display: inline-block;
  background-color: #000;  /* your preferred color */
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  /* font-weight: 600; */
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: green;
}

[id^="homepage"] {
  scroll-margin-top: 100px; /* adjust to match your header height */
}

.featureheading {
  text-align: center;
  padding-left: 0rem;
  padding-bottom: 2rem;
  font-size: 2rem;
}


@media (max-width:991px) {
  .feature {
    width: auto;
  }

 .featureheading {
   font-size: 1rem;
  
  }

  .feature p {
    font-size: 1rem;
  }

  .cta  {
    padding: 0.5rem .35rem;
    font-size: 0.8rem;
  }

  div button {
    display: block;
    margin: 0 auto;

  }
}

/* BOX 4 */

.box4 {
  margin: 4rem;
}

.box4 .vendorBenefits {
  background: lightgrey;
  border-radius: 10px;
  box-shadow: 0 3px 6px gray; 
  margin-bottom: 1.8rem; 
  height: auto;
}


div.benefits-intro {
   background: white;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   margin-bottom: 1rem; 
}

div.benefits-intro p {
  font-size: 1.2em;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}

.box4 h2 {
  padding: 1.5rem 0;
}

.box4 p {
    font-size: 1.5rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    padding-top: 0;
}

.box4 .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 1em auto;
}

.box4 .cta-btn:hover {
    background-color: green;
}

/* BOX 4 PART 2 */

    .idcard div {
      background: white;
      border-radius: 15px;
      margin: 0;
      
    }

    .idcard {
      display: flex;
      align-items: center;
      padding: 10px;
      border-radius: 12px;
      max-width: 700px;   
      margin-bottom: 2rem;
    }

    .box4 .idcard {
      background: lightgray;
      box-shadow: 0px 3px 6px #000;
      height: auto;
      
    }

    .idcard img {
      width: 180px;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
    }

    .idcard-content {
      flex: 1;
      margin: 0;
      
    }

    .idcard-content h3 {
      color: #000;
      margin: 0;
      padding: 1rem;
      font-size: 25px;
      
    }

    .idcard-content ul {
      list-style: none;
      padding: 0;
      margin: 0;
      height: auto;
    }

    .idcard-content ul li {
      margin: 0;
      font-size: 18px;
      text-align: center;
      font-style: italic;
      padding: 0;
    }

    .idcard-content ul li::before {
      content: "✓";
      color: #006400;
      font-weight: bold;
      margin-right: 8px;
    }

    .cta2-btn {
      display: block;
      background-color: #000;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      padding: 0.5rem 1.5rem;
      width: fit-content;
      text-align: center;
      margin: 1em auto;

      &:hover {
       background-color:green;
      }
    }

    @media (min-width: 992px) {
      .box4 h2 {
        font-size: 2.5rem;
      }
    }

   
/*CONTACT US PAGE*/

div.boxa-contactUs {
  grid-column: 1 / -1;          /* always span the whole row */
  background-color: #1d1d1d;    /* banner color */
  color: white;
  font-size: 0.8rem;
  padding: 1rem;
  margin-top: 1px;
}

.boxa-contactUs h1 {
  font-size: 2.5rem;
  width: 100%;
 }

#contactForm {
  width: 100%;
  max-width: 500px;
  margin: 2rem auto 0 auto;
}

option {
  text-align: center;
}

#contactForm input, 
#contactForm select, 
#contactForm textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-sizing: border-box;
  background: white;
  border: 2px solid lightgray;
}

.submitForm {
  background-color: #000;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
}

.submitForm:hover {
  background: green;
}

Form p {
  margin: 1rem;
}

#contactForm textarea {
  width: 100%;              /* fixed width (same as inputs) */
  max-width: 100%;          /* prevent growing wider than the form */
  min-height: 120px;        /* give it some height */
  resize: vertical;         /* user can only stretch height, not width */
  overflow-wrap: break-word; /* long words will break into next line */
  white-space: pre-wrap;     /* preserve spacing, wrap text nicely */
  box-sizing: border-box;   /* include padding in width */
}

#contactForm input:hover, 
#contactForm select:hover, 
#contactForm textarea:hover {
  border-color: #2ecc71;  
  box-shadow: 0 0 5px rgba(12, 237, 106, 0.5);
}

.boxc-contactUs img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 16px;

}

.boxd-contactUs {
  display:grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

div.bottom-text {
  padding: 0.5rem;
  border-radius: 16px;
  background-color: rgb(238, 220, 220); 
  margin-bottom: 1rem;
}

.bottom-text p {
  margin: 0.7rem 0;
  font-size: 1.0rem;
}

div.contact-details {
  text-align: left;
  border-radius: 12px;
  background: rgb(238, 220, 220);
  margin-bottom: 1rem;
}

.contact-details p, address {
  margin: 0.7rem 1rem;
  font-size: 0.9rem;
}

div.social-icons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin: 1rem 1.5rem 1rem 0;  
  justify-content: center;
  background: rgb(238, 220, 220);
}

.social-icons img {
  width:40px;   /* reduce icon width */
  height: auto;  /* keep aspect ratio */
  margin-left: 25px; /* space between icons */
  padding: 2px;

}


  @media (min-width: 992px) {
  .grid-container {
    grid-template-columns: 1fr 1fr; 
    grid-template-areas: 
      "boxa-contactUs boxa-contactUs"
      "boxb-contactUs boxc-contactUs"
      "boxd-contactUs boxd-contactUs";
      gap:30px;
      align-items: start;
  }

  .boxa-contactUs { grid-area: boxa-contactUs; }
  .boxb-contactUs { grid-area: boxb-contactUs; }
  .boxc-contactUs { grid-area: boxc-contactUs; }
  .boxd-contactUs { grid-area: boxd-contactUs; }

  .boxa-contactUs h1 {
    margin-top: 15px;
    font-size: 5rem;
    padding: 40px 0 0 0;
  }
  .boxa-contactUs p {
    font-size: 2rem;
  }

  Form p {
    margin: 1rem;
    font-size: 1.2rem;
  }  

  .boxd-contactUs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px;
}  

}

  @media (min-width: 992px) {
     .formWrapper::after {
        width: 200px;
        height: 200px;
    }
   }

/* FAQ PAGE*/

.faq-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.faq-section h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #000;
}

.accordion {
  border-top: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background-color: #000;
  color: #fff;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background-color: green;
}

/* + / - indicator */
.accordion-header::after {
  content: '+';   /* default to open */
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.accordion-header.active::after {
  content: '-';  /* change to close */
  /* transform: rotate(180deg); */
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  background: rgb(238, 220, 220);
  border-radius: 10px;
  transition: max-height 0.3s ease;
  padding: 0 0.5rem;
}

/* Open when active */
.accordion-header.active + .accordion-panel {
  max-height: 1000px; /* enough for long answers */
  padding: 0.5rem;
}
.accordion-panel p {
  margin: 1rem 0;
  color: black;
  font-size: 1.3rem;
}


/*FEEDBACK PAGE*/

/* Page Layout */
.page-container {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.page-header {
  margin-bottom: 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: #555;
  font-size: 1rem;
}

/* Feedback Section Styles */
section.card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  max-width: 800px;
  margin: 4rem auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

section.card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

section.card p.muted {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Layout Rows */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.row > div {
  flex: 1;
  min-width: 240px;
}

.full {
  flex: 1 1 100%;
}



/* Labels + Inputs */
label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Actions */
.actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

button {
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
}

button.primary {
  background: #000;  /* your brand color */
  color: #fff;
}

button.primary:hover {
  background: #3b0a0a;
}

button.ghost {
  background: transparent;
  border: 1px solid #aaa;
  color: #333;
}

button.ghost:hover {
  background: #f9f9f9;
}

/* Small muted text */
.muted {
  color: #666;
  font-size: 0.85rem;
}

/* #result form {
  margin-bottom: 500px;
} */
  
/*GET LISTED PAGE*/

:root {
  --brand: #000;
  --highlight: green;
  --text-dark: #2b2b2b;
  --bg-light: #fffaf5;
}

/* ====== MAIN CONTENT ====== */
.get-listed-content {
  padding: 5rem 1rem 3rem;
  text-align: center;
}

.intro h1 {
  color: var(--brand);
  margin-bottom: 0.3rem;
  font-size: 2rem;
}

.intro p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ====== BILLING TOGGLE ====== */
.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.glslider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.glslider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 4px; bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .glslider {
  background-color: var(--brand);
}

input:checked + .glslider:before {
  transform: translateX(24px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ====== PRICING GRID ====== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1600px;
  margin: auto;
}

.glcard.dark-card {
  background: #000;
  color: white;
  border: none;
}

.glcard.dark-card:hover {
  box-shadow: 12px 14px 40px rgba(193, 46, 46, 0.4) !important;
}

.letsTalk {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}

.glcard {
  background: #fff;
  border: 1px solid #f6cbcb;
  border-radius: 16px;
  /*padding: 2rem 1.5rem 2.5rem;*/
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(9, 199, 15, 0.1);
}

.glcard.highlight {
  border: 2px solid var(--highlight);
  background: #fff5f5;
  position: relative;
  transform: translateY(-10px); /* Raises it slightly */
  border-top: 4px solid #3366ff;
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #3366ff;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 15px;
  white-space: nowrap;
}

.glcard h2 {
  color: var(--brand);
  font-size: 1.6rem;
  margin-top: 1.5rem; 
}

.dark-card h2 {
  color: var(--bg-light);
  font-size: 1.6rem;
  margin: 1.5rem 0 0 0;
  
}

.price {
  font-size: 1.8rem;
  margin: 1rem 0;
  color: var(--brand);
  font-weight: bold;
}

.glcard ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #eee;
}

.glcard ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  margin: 0rem 1.5rem 0rem 1.5rem;
}

.glcard ul li::before {
  content: "✓";
  color: darkgray;
  font-weight: bold;
  margin-right: 8px;
}

.big {
  font-weight: bold;
  font-size: 1.3rem;
  margin: 0;
}

.yearly {
  color: blue;
  font-style: italic;
  font-size: 15px;
  transition: opacity 0.5s ease;
}

.yearly[style*="none"] {
  opacity: 0;
}



/* ====== BUTTON ====== */
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.4rem;
  margin: 0 0.9rem 1.2rem 0.9rem;
  border-radius: 8px;
  transition: background 0.3s;
  margin-top: auto;
}

.recommendedbanner {
  /*border-radius: 8px;*/
  background: rgb(224, 236, 224);
  padding: 0.7rem 1.2rem;
  color: black;
  font-size: 1.2rem;
  /* border-style: solid; */
}

.btnwhite {
  display: inline-block;
  background: white;
  color: var(--brand);
  text-decoration: none;
  padding: 0.9rem 1.4rem;
  border-radius: 8px;
  transition: background 0.3s;
  margin: 0 0.9rem 1.2rem 0.9rem;
}

.btn:hover {
  background: var(--highlight);
}

.btnwhite:hover {
  background: var(--highlight);
}

/* ====== MOBILE ====== */
@media (max-width: 768px) {
  .get-listed-content {
    padding: 3rem 1rem;
  }

  .price {
    font-size: 1.6rem;
  }
}

/* ADDONS SECTION */

/* Add-Ons Toggle Wrapper */

/* General Wrapper */


:root {
  --addon-primary: #004aad;
  --addon-bg-light: #fdf9f3;
  --addon-card-bg: #e3e9f6;
  --addon-text-dark: #333;
  --addon-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  --addon-transition: 0.3s ease;
}

.gladdons-wrapper {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.addons-gray {
  font-size: 1.8rem;
  font-weight: 700;
}

.addons-title {
  color: var(--addon-primary);
}

/* Toggle */
.addon-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.addon-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.addon-switch input {
  display: none;
}

.addon-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  border-radius: 24px;
  transition: var(--addon-transition);
}

.addon-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: var(--addon-transition);
}

input:checked + .addon-slider {
  background-color: var(--addon-primary);
}

input:checked + .addon-slider::before {
  transform: translateX(26px);
}

Add-on Cards

.addon-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.addon-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--addon-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--addon-transition);
}

.addon-card a {
  color: #0b5ed7;
}

.addon-card a:hover {
  color: #084298;
}

.addon-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
}

.addon-header p {
  margin: 10px;
}

.addon-header a {
  margin-left: 18px;
}

.select-addon {
  color: #044ab2fe; /* clean blue */
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.select-addon:hover {
  text-decoration: underline;
}

.addon-desc {
  font-size: 0.9rem;
  color: #283854;
}

.addon-pricing {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
}

.addon-plan {
  background: var(--addon-card-bg);
  padding: 12px;
  border-radius: 10px;
  flex: 1 1 45%;
  box-shadow: inset 0 0 0 1px #e5e9f2;
}

.addon-price {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.5rem 0;
  transition: var(--addon-transition);
}

.addon-free {
  margin: 0.5rem;
}

[id^="activate"] {
  scroll-margin-top: 200px; /* adjust to match your header height */
}

.addon-subscribe-btn {
  background: var(--addon-primary);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--addon-transition);
}

.addon-subscribe-btn:hover {
  opacity: 0.9;
}

.addon-btn-small {
  color: var(--addon-primary);
  text-decoration: none;
  font-size: 0.9rem;
}

/* Desktop layout */
@media (min-width: 768px) {
  .addon-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
  }

  .addon-header {
    flex: 1;
    text-align: left;
  }

  .addon-pricing {
    flex: 1;
    justify-content: flex-end;
  }
}


/* PLANS COMPARISON */

.pricing-table {
  display: none;
}

@media (min-width: 992px) {
  .pricing-table {
    display: block;
    padding: 12px;
    max-width: 100%;
    background: #f8e9e9;
    border-radius: 16px;
    border: 2px solid green;
    text-align: center;
  }

  .pricing-table h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
  }

.pricing-header, .row {
  display: grid;
  grid-template-columns: 220px repeat(5, 1fr);
  align-items: center;
  text-align: center;
}

.pricing-header {
  position: sticky;
  top: 0;
  background: #f1c8c8;
  z-index: 10;
  border-bottom: 1px solid #eee;
  border-radius: 16px 16px 0 0;
  padding: 10px 0;
}

.feature-col.header-empty {
  background: transparent;
  border: none;
}

 .plan-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  /* padding: 1rem 0.5rem; */
}

.plan-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 10px;
}

.plan-btn {
  margin-top: 15px;
  padding: 6px 14px;
  border-radius: 8px;
  /* border: 1px solid #ccc; */
  background: #000;
  font-weight: 300;
  color: white;
}

/* Plans pricing Body */

.pricing-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
}

.row {
  display: grid;
  grid-template-columns: 220px repeat(5, 1fr);
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.feature-name {
  font-weight: 500;
  text-align: left;
  padding-left: 1rem;
}

.row div:not(.feature-name) {
  text-align: center;
  font-size: 18px;
}

pricing-body::-webkit-scrollbar {
  width: 8px;
}

.pricing-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
}

/*PRIVACY POLICY PAGE*/
    .privatecontainer {
      max-width: 900px;
      margin: 2rem auto;
      padding: 2rem;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
    }
    .privatecontainer h1, 
    .privatecontainer h2, 
    .privatecontainer h3 {
      color: #222;
    }
    .privatecontainer h1 {
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .privatecontainer ul {
      margin-left: 2rem;
      margin-bottom: 1rem;
    }
    .privatecontainer p {
      margin-bottom: 1rem;
    }
    .privatecontainer a {
      color: #0066cc;
      text-decoration: none;
    }
    .privatecontainer a:hover {
      text-decoration: underline;
    }

    /*END OF PRIVACY POLICY PAGE*/

    /*DISCLAIMER PAGE*/
    .disclaimercontainer {
      max-width: 900px;
      margin: 2rem auto;
      padding: 2rem;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
    }
    .disclaimercontainer h1, 
    .disclaimercontainer h2
    {
      color: #222;
    }
    .disclaimercontainer h1 {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .disclaimercontainer p {
      margin-bottom: 1rem;
    }
    .disclaimercontainer a {
      color: #0066cc;
      text-decoration: none;
    }
    .disclaimercontainer a:hover {
      text-decoration: underline;
    }

    /*END OF DISCLAIMER PAGE*/

    /*BEGINNING OF TERMS OF SERVICE PAGE*/
    .termscontainer {
      max-width: 900px;
      margin: 2rem auto;
      padding: 2rem;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
    }
    .termscontainer h1, 
    .termscontainer h2
    {
      color: #222;
    }
    .termscontainer h1 {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .termscontainer p {
      margin-bottom: 1rem;
    }
    .termscontainer a {
      color: #0066cc;
      text-decoration: none;
    }
    .termscontainer a:hover {
      text-decoration: underline;
    }

    /*END OF TERMS OF SERVICE PAGE*/

    /*VENDOR ONBOARDING*/
      .ob-container {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 520px;
    width: 100%;
    margin: 2rem auto;
  }

  .ob-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2b0000;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .ob-tier {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #333;
  }

  .ob-label {
    font-weight: 500;
    display: block;
    margin: 1rem 0 0.3rem;
  }

  .ob-req {
    color: #c00000;
    margin-left: 2px;
  }

  .ob-input,
  .ob-select,
  .ob-textarea {
    width: 100%;
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
  }

  .ob-input:focus,
  .ob-select:focus,
  .ob-textarea:focus {
    border-color: #400000;
  }

  .ob-textarea {
    resize: vertical;
  }

  .ob-step {
    display: block;
  }

  .ob-hidden {
    display: none !important;
  }

  /* Buttons */
  .ob-btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .ob-btn {
    background-color: #2b0000;
    color: #fff;
    border: none;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.25s ease;
  }

  .ob-btn:hover {
    background-color: #4b0000;
  }

  .ob-btn.primary {
    background-color: #3d0000;
  }

  /* Payment Section */
  .ob-payment p {
    margin-top: 0.5rem;
  }

  .ob-payment label {
    display: block;
    margin: 0.5rem 0;
    font-weight: 500;
  }

  /* Bank Info Box */
  .ob-bank-box {
    background: #f9f5f4;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e1d8d5;
    margin-top: 0.8rem;
  }

  /* Message Box */
  .ob-message {
    text-align: center;
    background: #fff8f7;
    border: 1px solid #f2d6d2;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
   /*END OF VENDOR ONBOARDING*/

     .hidden {
  display: none !important;
}

/* ===============================
   NAV LOGIN HIGHLIGHT
   =============================== */

.nav-login-btn {
  background: #f7c600; /* spotlight yellow */
  color: #2b1200 !important;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-login-btn:hover {
  background: #e6b800;
  transform: translateY(-1px);
}

.nav-login-btn:active {
  transform: translateY(0);
}
