/* ========================================
   CONTACT BAR
======================================== */
.contact-bar {
  padding: 0.5rem 0;
  background-color: #fff;
  display: none;
}

.contact-bar .contact-bar-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-bar .contact-bar-grid .contacts ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-bar .contact-bar-grid .contacts ul li,
.contact-bar .contact-bar-grid .contacts ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-bar .contact-bar-grid .contacts ul li a {
  color: #1e1e1e;
  text-underline-offset: 3px;
}

.contact-bar .contact-bar-grid .contacts ul li a:hover {
  text-decoration: none;
}

.contact-bar .contact-bar-grid .contacts img {
  max-width: 1.25rem;
}

@media screen and (max-width: 991px) {
  .contact-bar {
    display: none;
  }
}


/* ========================================
   NAVBAR
======================================== */
.navbar {
  padding-block: 1.5rem;
  background-color: #1e1e1e;
  border-bottom: 6px solid #C6FA35;
  position: relative;
}

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

.navbar .logo {
  max-width: 254px;
}

.navbar .menu ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar .menu .nav-link {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
}

.navbar .menu .nav-link:hover,
.navbar .menu .nav-link.active {
  color: #C6FA35;
}

.menu-toggle-btn {
  display: none;
  flex-direction: column;
  margin-inline-start: auto;
  gap: .375rem
}

.menu-toggle-btn .line {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #fff;
  transition: cubic-bezier(.19, 1, .22, 1) .5s
}

.menu-toggle-btn.active .line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px)
}

.menu-toggle-btn.active .line:nth-child(2) {
  opacity: 0
}

.menu-toggle-btn.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px)
}

@media screen and (max-width: 991px) {
  .menu-toggle-btn {
    display: flex;
    margin-inline-start: 2rem;
  }

  .navbar .menu {
    max-width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    align-items: start;
    justify-content: space-between;
    padding-block: 1rem 2rem;
    opacity: 0;
    visibility: hidden;
    max-height: 500px;
    overflow: auto;
    background-color: #1e1e1e;
    transition: opacity .1s;
    gap: 2rem;
    z-index: 99;
  }

  .navbar .menu.active {
    opacity: 1;
    visibility: visible;
    box-shadow: 0 2px 6px #0000001a;
  }

  .navbar .menu ul {
    flex-direction: column;
    align-items: start;
  }
}

@media screen and (max-width: 767px) {
  .navbar .logo {
    max-width: 200px;
  }

  .navbar .menu ul {
    gap: 1rem;
  }
}


/* ========================================
   HERO SECTION
======================================== */
.hero {
  padding-block: 80px;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

/* Overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 0.9) 100%);
  z-index: 0;
}

.hero .hero-content {
  color: #fff;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero .hero-content span {
  color: #1e1e1e;
  font-size: 1rem;
  font-weight: 500;
  background-color: #fff;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.hero .hero-content h1 {
  color: #fff;
  margin-top: 1.5rem;
}

.hero.inner .hero-content h1 {
  margin-top: 0;
}

.hero .hero-content p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 1rem;
  text-wrap: pretty;
}

.hero .hero-content .cta-wrapper {
  display: flex;
  margin-top: 2rem;
  gap: 1rem;
}

@media screen and (max-width: 991px) {
  .hero {
    min-height: 600px;
  }

  .hero .hero-content span {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
  }

  .hero .hero-content {
    max-width: 540px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    padding-block: 2rem;
  }

  .hero::after {
    background: linear-gradient(270deg, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 0.9) 90%);
  }

  .hero.inner:after {
    background: linear-gradient(270deg, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 0.9) 100%)
  }

  .hero .hero-content p {
    font-size: 1rem;
    font-weight: 600;
  }

  .hero .hero-content .cta-wrapper {
    flex-direction: column;
  }

  .hero .hero-content .cta-wrapper .btn {
    width: 100%;
  }
}


/* ========================================
   SERVICES SECTION
======================================== */
.services {
  padding: 6rem 0;
}

.services .service-note {
  font-size: 1.25rem;
  text-align: center;
  margin-top: 1.5rem;
}

.services .service-cards-grid {
  display: flex;
  gap: 2rem;
}

.services.full-info .service-cards-grid {
  flex-direction: column;
  gap: 4rem;
}

.services .service-cards-grid .service-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 16px;
  overflow: hidden;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}

.services.full-info .service-cards-grid .service-card {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  border: 0;
  border-radius: 0;
}

.services.full-info .service-cards-grid .service-card>* {
  flex: 1;
}

.services .service-cards-grid .service-card:hover {
  transform: translateY(-8px);
}

.services.full-info .service-cards-grid .service-card:hover {
  transform: translateY(0);
}

.services .service-cards-grid .service-card .card-text {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  height: 100%;
}

.services .service-cards-grid .service-card .img-wrapper {
  max-width: 500px;
}

.services .service-cards-grid .service-card .img-wrapper img {
  width: 100%;
  border-radius: 20px;
}

.services.full-info .service-cards-grid .service-card img {
  margin-bottom: 0;
}

.services .service-cards-grid .service-card p {
  color: #1e1e1ecc;
  font-size: 1.25rem;
  margin-block: 1rem 2rem;
}

.services.full-info .service-cards-grid .service-card p {
  margin-bottom: 0;
}

.services .service-cards-grid .service-card .btn {
  margin-top: auto;
}

@media screen and (max-width: 991px) {
  .services {
    padding: 3.5rem 0;
  }

  .services .service-cards-grid {
    flex-direction: column;
  }

  .services .service-cards-grid .service-card {
    flex-direction: row;
    align-items: center;
  }

  .services.full-info .service-cards-grid .service-card {
    flex-direction: column;
    align-items: start;
  }

  .services .service-cards-grid .service-card img {
    margin-bottom: 0;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    object-position: center;
  }

  .services.full-info .service-cards-grid .service-card img {
    max-width: 100%;
    width: 100%;
  }

  .services.full-info .service-cards-grid .service-card .card-text {
    order: 2;
    padding: 0;
    padding-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .services .section-header {
    margin-bottom: 2rem;
  }

  .services .service-cards-grid {
    gap: 2rem;
  }

  .services .service-cards-grid .service-card {
    flex-direction: column;
    align-items: start;
  }

  .services .service-cards-grid .service-card img {
    max-width: 100%;
    width: 100%;
    height: 300px;
  }

  .services .service-note {
    font-size: 1rem;
  }

  .services .service-cards-grid .service-card p {
    font-size: 1rem;
    margin-block: 0.5rem 1rem;
  }
}


/* ========================================
   ABOUT TRUCK SECTION
======================================== */
.about-truck {
  padding: 6rem 0;
  background-color: #83A066;
}

.about-truck .about-grid {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.about-truck .about-grid .video-col video {
  object-fit: cover;
}

.about-truck .about-grid .text-col {
  max-width: 650px;
}

.about-truck .about-grid .text-col h2 {
  color: #fff;
}

.about-truck .about-grid .text-col p {
  font-size: 1.25rem;
  margin-top: 1rem;
  color: #fff;
}

.about-truck .about-grid .text-col ul {
  display: flex;
  flex-direction: column;
  padding-left: 1.25rem;
  margin-top: 1.5rem;
  list-style: disc;
  gap: 0.5rem;
}

.about-truck .about-grid .text-col ul li {
  color: #fff;
  font-size: 1.125rem;
}

.about-truck .about-grid .text-col .btn-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-truck .about-grid .text-col .btn {
  margin-top: 2rem;
}

@media screen and (max-width: 991px) {
  .about-truck {
    padding: 3.5rem 0;
  }

  .about-truck .about-grid {
    flex-direction: column;
    align-items: start;
  }
}

@media screen and (max-width: 767px) {
  .about-truck .about-grid {
    align-items: start;
    flex-direction: column;
    gap: 2.5rem;
  }

  .about-truck .about-grid .text-col p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .about-truck .about-grid .text-col .btn {
    margin-top: 1.5rem;
  }

  .about-truck .about-grid .text-col ul {
    gap: 0.25rem;
    margin-top: 1rem;
  }

  .about-truck .about-grid .text-col ul li {
    font-size: 1rem;
  }
}


/* ========================================
   FEATURES SECTION
======================================== */
.features {
  padding: 6rem 0;
}

.features .section-header {
  margin-bottom: 3rem;
}

.features .features-grid {
  display: flex;
  gap: 2rem;
}

.features .feature-card {
  flex: 1;
  border: 1px solid #ccc;
  overflow: hidden;
  border-radius: 16px;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}

.features .feature-card:hover {
  transform: translateY(-8px);
}

.features .feature-card .card-text {
  padding: 2rem 1.5rem;
}

.features .feature-card p {
  font-size: 1.25rem;
  margin-top: 1rem;
}

@media screen and (max-width: 991px) {
  .features {
    padding: 3.5rem 0;
  }

  .features .section-header {
    margin-bottom: 2.5rem;
  }

  .features .features-grid {
    gap: 2rem;
    flex-direction: column;
  }

  .features .feature-card {
    display: flex;
    align-items: center;
  }

    .features .feature-card img {
      max-width: 350px;
      height: 350px;
      object-fit: cover;
      object-position: center;
    }
}

@media screen and (max-width: 767px) {
  .features .section-header {
    margin-bottom: 2rem;
  }

  .features .feature-card {
    display: block;
  }

  .features .feature-card img {
    height: 300px;
    width: 100%;
    max-width: 100%;
  }
}


/* ========================================
   CTA SECTION
======================================== */
.cta-section {
  padding: 6rem 0;
  background-color: #83A066;
}

.cta-section .cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.cta-section .cta-text {
  color: #fff;
  max-width: 1000px;
}

.cta-section .cta-text h2 {
  color: #fff;
}

.cta-section .cta-text p {
  font-size: 1.25rem;
  margin-top: 1rem;
}

.cta-section .cta-tags {
  list-style: disc;
  display: flex;
  flex-direction: column;
  padding-left: 1.25rem;
  margin-block: 1rem;
  gap: 0.25rem;
}

.cta-section .cta-tags li {
  font-size: 1.25rem;
}

.cta-section .cta-action .btn.btn-secondary:hover {
  color: #1e1e1e;
  background-color: #C6FA35;
  border-color: #C6FA35;
}

.cta-section p a:hover {
  color: #C6FA35;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media screen and (max-width: 991px) {
  .cta-section {
    padding: 3.5rem 0;
  }

  .cta-section .cta-grid {
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .cta-section .cta-text p,
  .cta-section .cta-tags li {
    font-size: 1rem;
  }
}


/* ========================================
   GALLERY MODAL (Lightbox)
======================================== */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  padding-top: 40px;
}

.gallery-modal .modal-content {
  position: relative;
  margin: auto;
  width: 90%;
  max-width: 1200px;
  background-color: #000;
}

.gallery-modal .close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}

.gallery-modal .close:hover {
  color: #bbb;
}

.gallery-modal .mySlides {
  display: none;
  text-align: center;
}

.gallery-modal .mySlides img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-modal .prev,
.gallery-modal .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #1e1e1e;
  background-color: #fff;
  border-radius: 100px;
  user-select: none;
  transition: 0.3s ease;
}

.gallery-modal .prev {
  left: -24px;
}

.gallery-modal .next {
  right: -24px;
}

.gallery-modal .prev:hover,
.gallery-modal .next:hover {
  color: #1e1e1e;
  background-color: #fff;
}

.gallery-modal .numbertext {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.gallery-modal .caption-container {
  text-align: center;
  background-color: #000;
  padding: 10px 16px;
  color: #f1f1f1;
}

@media screen and (max-width: 767px) {
  .gallery-modal .prev,
  .gallery-modal .next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .gallery-modal .next {
    right: -16px;
  }

  .gallery-modal .prev {
    left: -16px;
  }

  .gallery-modal .numbertext {
    font-size: 14px;
  }
}


/* ========================================
   GALLERY SECTION
======================================== */
.gallery {
  padding: 6rem 0;
  overflow: hidden;
}

.gallery .section-header {
  max-width: 800px;
  margin-bottom: 3rem;
}

.gallery-marquee {
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-marquee__track {
    display: flex;
    width: max-content;
    gap: 30px;
}

.gallery-marquee__track--left {
    animation: marquee-left 45s linear infinite;
}

.gallery-marquee__track--right {
    animation: marquee-right 45s linear infinite;
}

.gallery-item {
    flex-shrink: 0;
}

.gallery-item img {
    display: block;
    width: 340px;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}

.gallery-item img:hover {
  scale: 1.04;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .gallery-item img {
        width: 250px;
        height: 150px;
    }

    .gallery-marquee__track--left,
    .gallery-marquee__track--right {
        animation-duration: 28s;
    }
}

@media screen and (max-width: 991px) {
  .gallery {
    padding: 3.5rem 0;
  }

  .gallery .section-header {
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .gallery .section-header {
    margin-bottom: 2rem;
  }

  .gallery .gallery-grid {
    gap: 1rem;
  }

  .gallery .gallery-grid .gallery-item {
    max-width: calc(50% - 0.5rem);
  }
}


/* ========================================
   TRUCK WORKING VIDEO SECTION
======================================== */
.truck-working-video {
  padding: 6rem 0;
}

.truck-working-video .video-wrapper {
  position: relative;
  margin: 0 auto;
}

.truck-working-video video {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
}

.truck-working-video .video-control {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.truck-working-video .video-control.hidden {
  opacity: 0;
  pointer-events: none;
}

.truck-working-video .video-wrapper:hover .video-control {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .truck-working-video {
    padding: 3.5rem 0;
  }
}

@media screen and (max-width: 767px) {
  .truck-working-video .video-control {
    width: 48px;
    height: 48px;
  }

  .truck-working-video .video-control svg {
    max-width: 1.5rem;
  }
}


/* ========================================
   FOOTER SECTION
======================================== */
.footer {
  border-bottom: 6px solid #C6FA35;
  background-color: #1e1e1e;
  padding: 6rem 0;
  color: #ffffff;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer .footer-logo img {
  max-width: 240px;
  margin-bottom: 20px;
}

.footer .footer-description {
  max-width: 300px;
  margin: 10px 0 30px;
  color: #f1f1f1;
  font-size: 15px;
  line-height: 1.6;
}

.footer .footer-copy {
  font-size: 13px;
  opacity: 0.8;
}

.footer .footer-links h3,
.footer .footer-contact h3 {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 28px;
}

.footer .footer-links ul,
.footer .contact-list,
.footer .social-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .footer-links ul li {
  margin-bottom: 10px;
}

.footer .footer-links ul li a {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
}

.footer .footer-links ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer .footer-contact p {
  margin-bottom: 15px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

.footer .contact-list li {
  margin-bottom: 10px;
}

.footer .contact-list a {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
}

.footer .contact-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer .social-links a {
  max-width: 20px;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.footer .social-links a:hover {
  transform: scale(1.1);
}

.footer .footer-about,
.footer .footer-links,
.footer .footer-contact {
  display: flex;
  flex-direction: column;
}

.footer .footer-contact .divider {
  margin: 1rem 0;
}

@media (max-width: 1024px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 3rem 0;
  }

  .footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 575px) {
  .footer .footer-logo img {
    max-width: 200px;
  }

  .footer .footer-links h3,
  .footer .footer-contact h3 {
    font-size: 16px;
  }

  .footer .contact-list li,
  .footer .footer-links ul li {
    margin-bottom: 4px;
  }

  .footer .footer-links ul li a,
  .footer .contact-list a {
    font-size: 14px;
  }
}


/* ========================================
   TRUCK DETAILS SECTION
======================================== */
.truck-details {
  padding: 6rem 0;
  text-align: center;
}

.truck-logo img {
  max-width: 520px;
  height: auto;
  display: block;
  margin-bottom: 2rem;
  margin-inline: auto;
  text-align: center;
}

.truck-description {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 800px;
  margin-inline: auto;
}

.spec-list {
  margin: 1rem 0 2rem;
}

.spec-list li {
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 991px) {
  .truck-details {
    padding: 3.5rem 0;
  }

  .truck-logo img {
    max-width: 400px;
  }

  .truck-description {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .truck-logo img {
    max-width: 300px;
    margin-bottom: 1rem;
  }

  .truck-description {
    font-size: 1rem;
  }
}


/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
  padding: 6rem 0;
}

.contact-section .contact-grid {
  display: flex;
  gap: 3rem;
}

.contact-section .contact-left {
  flex: 1;
}

.contact-section .contact-left h2 {
  color: #83A066;
  margin-bottom: 1rem;
  max-width: 500px;
}

.contact-section .contact-left p {
  color: #1e1e1e;
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 20px;
  max-width: 500px;
}

.contact-section .contact-left ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-section .contact-left ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e1e1e;
}

.contact-section .contact-left a {
  color: inherit;
  text-decoration: none;
}

.contact-section .contact-left a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section .contact-left ul li img {
  display: inline-flex;
  max-width: 1.5rem;
  align-items: center;
  justify-content: center;
}

.contact-section .contact-right {
  flex: 1;
  padding: 2rem 0;
}

.contact-section .contact-right form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-section .contact-right .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-section .contact-right .form-field label {
  font-size: 1rem;
  color: #1e1e1e;
}

.contact-section .contact-right .form-field input,
.contact-section .contact-right .form-field textarea {
  border: none;
  border-bottom: 1px solid #1e1e1e;
  padding: 10px 0 12px;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.contact-section .contact-right .form-field textarea {
  resize: vertical;
  border: 0;
  border-bottom: 1px solid #1e1e1e;
  padding: 10px 12px;
}

.contact-section .contact-right .form-field input:focus,
.contact-section .contact-right .form-field textarea:focus {
  border-color: #83A066;
  box-shadow: 0 1px 0 0 #83A066;
}

@media (max-width: 991px) {
  .contact-section {
    padding: 3.5rem 0;
  }

  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   LEGAL CONTENT (Privacy Policy & Terms)
======================================== */
.legal-content {
  padding: 6rem 0;
}

.legal-content .content-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.legal-content .content-wrapper h2 {
  margin-block: 1rem;
}

@media screen and (min-width: 768px) {
  .legal-content .content-wrapper h2 {
    font-size: 2rem;
  }
}

.legal-content .content-wrapper h3 {
  margin-block: 1rem;
}

.legal-content .content-wrapper p {
  margin-block: 0.5rem;
  font-size: 1.125rem;
}

.legal-content .content-wrapper a {
  color: #83A066;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content .content-wrapper a:hover {
  text-decoration: none;
}

.legal-content .content-wrapper ul {
  list-style: disc;
  padding-left: 1.5rem;
}

@media screen and (max-width: 991px) {
  .legal-content {
    padding: 3.5rem 0;
  }
}

@media screen and (max-width: 767px) {
  .legal-content .content-wrapper p {
    margin-block: 0.5rem;
    font-size: 1rem;
  }
}


/* ========================================
   THANK YOU SECTION
======================================== */
.thankyou-section {
  min-height: 50vh;
  text-align: center;
  background-color: #fff;
  display: flex;
  align-items: center;
  margin-block-start: 3rem;
}

.thankyou-section h1 {
  margin-block-end: clamp(1rem, 4vw, 1.5rem);
}

.thankyou-section p {
  margin-block: 1rem;
  font-size: clamp(1rem, 4vw, 1.125rem);
  line-height: 1.8;
  max-width: 600px;
  margin-inline: auto;
}

.thankyou-section .btn {
  margin-block: clamp(1rem, 4vw, 2rem);
  margin-inline: auto;
}

@media screen and (max-width: 1199px) {
  .thankyou-section {
    margin-block-start: 0;
  }
}


.hero .hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}


/* ========= Promo Card Style ============ */

.promo-card {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  max-width: 450px;
  box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.25);
  z-index: 99;
}

.promo-card__img-wrapper {
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  height: 236px;
}

.promo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}

.promo-card:hover .promo-card__img {
  transform: scale(1.05);
}

.promo-card__heading {
  color: #2A3335;
  font-size: 24px;
  margin-top: 20px;
  line-height: 1.3;
}

.promo-card__heading--highlighted {color: #83A066;}

.promo-card__sub-heading {
  font-size: 17px;
  font-weight: 500;
  color: #2A3335;
  padding-block: 18px 28px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  font-family: Inter, sans-serif;
}

.btn.promo-card__btn {
  width: 100%;
}

.breadcrumb {
  margin-bottom: 16px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 1);
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb__item a {
  color: #C6FA35;
  text-decoration: none;
  transition: color 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb__item a:hover {
  text-decoration: none;
}

@media screen and (max-width:991px) {
  .hero {
    padding-block: 80px;
  }
  
  .hero .hero-grid {
    align-items: start;
    flex-direction: column;
    gap: 80px;
  }

  .promo-card {
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .promo-card__heading {
    margin-top: 0;
  }
}

@media screen and (max-width:575px) {
  .hero {
    padding-block: 60px;
  }

  .hero .hero-grid {
    gap: 50px;
  }

  .promo-card {
    padding: 16px;
    flex-direction: column;
    gap: 0;
  }

  .promo-card__heading {
    margin-top: 24px;
    font-size: 22px;
  }

  .promo-card__sub-heading {
    padding-block: 14px 24px;
  }
}



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

.how-it-works {
  padding: 6rem 0;
  background: #83A066;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.how-it-works .section-header h2 {
  color: #fff;
  margin-bottom: 32px;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  border-radius: 16px;
  position: relative;
  padding: 40px 24px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C6FA35;
  font-family: "Anton", sans-serif;
  font-size: 32px;
  border-radius: 100px;
  line-height: 1;
  color: #2a3335;
  user-select: none;
  margin-bottom: 3rem;
}

.step-card h3 {
  margin-bottom: 18px;
}

.how-it-works .cta-btn .btn {
  margin-inline: auto;
  margin-top: 2rem;
}

/* Tablet */

@media (max-width:991px) {
  .how-it-works {
    padding: 80px 0;
  }

  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width:640px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



/* ========================================
   TESTIMONIALS
======================================== */

.testimonials {
    padding: 100px 0;
    background: #83A066;
}

.testimonials .section-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.testimonials .section-header h2 {
  color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 40px 24px;
    border-radius: 16px;
    background: #fff;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #C6FA35;
}

.testimonial-rating {
    margin-bottom: 24px;
    color: #FFCC00;
    font-size: 22px;
    letter-spacing: 3px;
}

.testimonial-text {
    margin-bottom: 30px;
    font-size: 20px;
    font-style: italic;
}

.testimonial-author h3 {
    margin-bottom: 6px;
}

.testimonial-author span {
    opacity: .75;
    font-size: 15px;
}

@media (max-width:991px){

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

}

@media (max-width:640px){

    .testimonials{
        padding:80px 0;
    }

    .testimonials-grid{
        grid-template-columns:1fr;
    }

    .testimonial-card{
        padding:32px 24px;
    }

    .testimonial-text {
      font-size: 18px;
    }

}




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

.faq {
  padding: 100px 0;
  position: relative;
}

.faq .section-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.faq-list {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  background-image: url(../images/diggin-for-dollas-logo-dark.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1920px;
  height: 395px;
  max-width: 100%;
  opacity: 3%;
  z-index: -2
}

.faq-item {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  transition: .3s;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 70px 24px 30px;
  position: relative;
  font-size: 20px;
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #83A066;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  transition: .3s;
}

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

.faq-item p {
  font-size: 18px;
  padding: 0 30px 28px;
  color: #111;
}

@media(max-width:768px) {

  .faq {
    padding: 80px 0;
  }

  .faq-item summary {
    font-size: 18px;
    padding: 22px 60px 22px 20px;
  }

  .faq-item p {
    padding: 0 20px 22px;
  }

}