/* SECTION */
.content-section {
  padding: 100px 0;
  background: rgb(239, 246, 232);
  color: black;
}

/* CONTAINER */
.content-container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

/* HEADINGS */
.content-container h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.content-container h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #333d29;
}

/* PARAGRAPHS */
.content-container p {
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 10px;
  font-size: 15px;
}



/* SECTION */
.driver-section {
    padding: 100px 0;
    background: rgb(239, 246, 232);
    color: #000;
}

/* CONTAINER */
.driver-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT IMAGE */
.driver-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* UNIQUE CLIP SHAPE (different from previous sections) */
.driver-left img {
    width: 100%;
    max-width: 550px;
    height: 700px;
    object-fit: cover;

    clip-path: polygon(0% 10%,
            85% 0%,
            100% 20%,
            100% 90%,
            20% 100%,
            0% 85%);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* RIGHT CONTENT */
.driver-right {
    flex: 1;
}

.driver-right h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 15px;
}

.driver-right p {
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* LIST */
.driver-right ul {
    list-style: none;
    margin-bottom: 25px;
}

.driver-right ul li {
    margin-bottom: 10px;
    opacity: 0.9;
}

/* BUTTON */
.driver-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    background: #333d29;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: 0.25s ease;
}

.driver-btn:hover {
    transform: translateY(-3px);
}

.driver-btn img {
    width: 36px;
    height: 36px;
}

/* MOBILE */
@media (max-width: 768px) {
    .driver-section{
        padding: 20px 0;
    }
    .driver-container {
        flex-direction: column;
        text-align: center;
    }

    .driver-left img {
        height: auto;
        clip-path: none;
        border-radius: 15px;
    }
    .driver-btn {
    width: 100%;

    }
}



/* SECTION */
.app-section {
  padding: 100px 0;
  background: rgb(239, 246, 232);
  color: #000;
}

/* CONTAINER */
.app-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.app-left {
  flex: 1;
}

.app-left h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 15px;
}

.app-left p {
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* LIST */
.app-left ul {
  list-style: none;
  margin-bottom: 25px;
}

.app-left ul li {
  margin-bottom: 10px;
}

/* DOWNLOAD BUTTONS */
.app-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  color: #000;

  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);

  transition: 0.25s ease;
}

.store-btn img {
  width: 28px;
  height: 28px;
}

.store-btn:hover {
  transform: translateY(-3px);
}

/* ANDROID COLOR VARIATION */
.store-btn.android {
  background: rgba(164, 214, 0, 0.2);
}

/* RIGHT IMAGE */
.app-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* UNIQUE CURVED CLIP SHAPE */
.app-right img {
  width: 100%;
  max-width: 450px;
  height: auto;

      clip-path: polygon(0% 10%,
            85% 0%,
            100% 20%,
            100% 90%,
            20% 100%,
            0% 85%);

}

/* MOBILE */
@media (max-width: 768px) {
      .app-section{
        padding: 50px 0;
    }
  .app-container {
    flex-direction: column;
    text-align: center;
  }

  .app-buttons {
    justify-content: center;
  }

  .app-right img {
    clip-path: none;
    border-radius: 20px;
  }
}



/* SECTION */
.contact-section {
  padding: 100px 0;
  background: rgb(239, 246, 232);
  color: #000;
}

/* CONTAINER */
.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT IMAGE */
.contact-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact-left img {
  width: 100%;
  max-width: 450px;
  height: 500px;
  object-fit: cover;

  /* UNIQUE SHAPE */
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 85%,
    70% 100%,
    0% 100%
  );

}

/* RIGHT CONTENT */
.contact-right {
  flex: 1;
}

.contact-right h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 15px;
}

.contact-right p {
  opacity: 0.85;
  margin-bottom: 25px;
}

/* CONTACT INFO GRID */
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ITEM */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
max-width: 280px;
  background: rgba(255,255,255,0.05);
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);

  transition: 0.25s ease;
}

/* ICON */
.contact-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(0,0,0,0.4));
}

/* TEXT */
.contact-item h4 {
  margin-bottom: 4px;
  font-size: 14px;
  color: #333d29;
}

.contact-item p {
  font-size: 14px;
}

/* LINKS */
.contact-item a {
  color: #000;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* HOVER */
.contact-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-section{
        padding: 50px 0;
    }
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-left img {
    height: auto;
    clip-path: none;
    border-radius: 15px;
  }
  .contact-item{
    max-width: 100%;
  }
}


/* BOTTOM FOOTER */
.bottom-footer {
    border-top: 1px solid #333d29;
  background: rgb(239, 246, 232);
  color: #000;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* TEXT */
.bottom-footer p {
  margin: 0;
  letter-spacing: 0.5px;
}


#topBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 50px;
  height: 50px;

  border: none;
  border-radius: 50%;
  background: #333d29;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  display: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 999;

  transition: all 0.25s ease;
}

/* IMAGE */
#topBtn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* HOVER */
#topBtn:hover {
  transform: translateY(-5px) scale(1.05);
  background: #677b53;
}