/* ============================================
   SUPPLAX — Main Stylesheet
   Font: Telegraf (CDNFonts)
   ============================================ */

@import url("https://fonts.cdnfonts.com/css/telegraf");

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --content-max-width: 1320px;
  --content-gutter: clamp(20px, 4vw, 56px);
  --content-side: max(var(--content-gutter), calc((100vw - var(--content-max-width)) / 2));
}

body {
  font-family: "Telegraf", sans-serif;
  font-weight: 400;
  color: #000;
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: "Telegraf", sans-serif;
  font-weight: 800;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.88;
}

.btn-dark {
  background: #000;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #000;
  font-size: 22px;
  padding: 18px 48px;
  border-radius: 12px;
}

.btn-white-large {
  background: #fff;
  color: #000;
  font-family: "Telegraf", sans-serif;
  font-weight: 800;
  font-size: 20px;
  padding: 18px 60px;
  border-radius: 40px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
  display: inline-block;
}

.btn-white-large:hover {
  opacity: 0.88;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: linear-gradient(90deg, #000 0%, #3533cd 90%);
  padding: 18px var(--content-gutter);
}

.header-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: auto;
  height: 90px;
  max-height: 90px;
  object-fit: contain;
  border-radius: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  margin-top: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  display: flex;
  height: calc(100vh - 126px);
  min-height: 420px;
  max-height: 760px;
  background: #ffe500;
}

.hero-content {
  flex: 0 0 68%;
  padding: 24px clamp(24px, 3vw, 52px) 24px var(--content-side);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-content h1 {
  font-size: clamp(44px, 3.4vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #000;
}

.hero-description {
  font-size: clamp(21px, 1.45vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-image {
  flex: 0 0 32%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

@media (max-height: 900px) and (min-width: 1025px) {
  .hero-content {
    padding: 20px clamp(20px, 2.6vw, 44px) 20px var(--content-side);
  }

  .hero-content h1 {
    font-size: clamp(38px, 3vw, 50px);
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: clamp(18px, 1.25vw, 22px);
    margin-bottom: 20px;
  }
}

/* ============================================
   SECTION 2: NO MORE WASTED TRIPS
   ============================================ */
.section-wasted-trips {
  background: #fff;
}

.section-wasted-trips-inner {
  display: flex;
  height: 100vh;
  min-height: 420px;
  max-height: 760px;
}

.section-wasted-trips-text {
  flex: 0 0 55%;
  padding: 56px clamp(24px, 3vw, 52px) 56px var(--content-side);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-wasted-trips-text h2 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 22px;
  color: #000;
}

.section-wasted-trips-text p {
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  color: #000;
  max-width: 580px;
}

.section-wasted-trips-image {
  flex: 0 0 45%;
  overflow: hidden;
}

.section-wasted-trips-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-height: 900px) and (min-width: 1025px) {
  .section-wasted-trips-text {
    padding: 40px clamp(20px, 2.6vw, 44px) 40px var(--content-side);
  }

  .section-wasted-trips-text h2 {
    font-size: 64px;
    margin-bottom: 16px;
  }

  .section-wasted-trips-text p {
    font-size: clamp(16px, 1.05vw, 20px);
  }
}

/* ============================================
   SECTION 3: HOW WE HELP
   ============================================ */
.section-how-we-help {
  background: linear-gradient(90deg, #000009 0%, #3637ca 100%);
  padding: 62px var(--content-gutter) 74px;
}

.section-how-we-help h2 {
  text-align: center;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 800;
  margin-bottom: 34px;
  color: #ffe65a;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 68px;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.help-column {
  text-align: left;
}

.help-icon {
  text-align: center;
  margin-bottom: 22px;
  line-height: 0;
}

.help-item {
  margin-bottom: 34px;
}

.help-item:last-child {
  margin-bottom: 0;
}

.help-item h3 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.08;
  color: #f5f6ff;
  margin-bottom: 12px;
  padding-left: 14px;
}

.help-item h3::before {
  content: "\2022";
  margin-right: 12px;
}

.help-item p {
  font-size: 19px;
  font-weight: 400;
  color: #f1dd70;
  line-height: 1.34;
}

/* ============================================
   SECTION 4: 100% SUCCESS-DRIVEN
   ============================================ */
.section-success {
  background: #ffe500;
  padding: 0 0 20px;
}

.section-success-inner {
  display: flex;
  align-items: center;
  min-height: 500px;
}

.section-success-image {
  flex: 0 0 42%;
  padding: 40px 0 40px 60px;
}

.section-success-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-success-text {
  flex: 1;
  padding: 40px var(--content-side) 40px clamp(24px, 4vw, 80px);
}

.section-success-text h2 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 30px;
  color: #000;
}

.section-success-text p {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  max-width: 640px;
}

.section-success-disclaimer {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 20px var(--content-gutter) 0;
}

/* ============================================
   SECTION 5: HEAR IT FROM THE PROS
   ============================================ */
.section-testimonials {
  background: #fff;
  padding: 70px var(--content-gutter) 80px;
}

.section-testimonials h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.testimonial-card {
  text-align: left;
}

.testimonial-header {
  background: #ffe500;
  border-radius: 16px;
  padding: 30px 24px 24px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto -10px;
  border: 4px solid #333;
  position: relative;
  top: -50px;
  margin-bottom: -40px;
}

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

.testimonial-info {
  text-align: left;
  padding-top: 10px;
}

.testimonial-name {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #000;
}

.testimonial-role {
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

.testimonial-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  padding: 0 4px;
}

/* ============================================
   SECTION 6: READY TO SCALE YOUR OPERATIONS
   ============================================ */
.section-scale {
  background: #fff;
}

.section-scale-inner {
  display: flex;
  min-height: 520px;
}

.section-scale-image {
  flex: 0 0 55%;
  overflow: hidden;
}

.section-scale-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-scale-text {
  flex: 0 0 45%;
  background: linear-gradient(90deg, #000 0%, #3533cd 90%);
  padding: 80px var(--content-side) 80px clamp(24px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-scale-text h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffe500;
  margin-bottom: 24px;
}

.section-scale-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 36px;
  max-width: 440px;
}

/* ============================================
   SECTION 7: GET IN TOUCH
   ============================================ */
.section-contact {
  background: #fff;
}

.section-contact-inner {
  display: flex;
  height: 100vh;
  min-height: 420px;
  max-height: 760px;
}

.section-contact-image {
  flex: 0 0 35%;
  overflow: hidden;
}

.section-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-contact-info {
  flex: 1;
  background: #ffe500;
  padding: 56px var(--content-side) 56px clamp(24px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-contact-info h2 {
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 800;
  color: #000;
  margin-bottom: 26px;
}

.contact-phone {
  font-size: clamp(22px, 1.65vw, 28px);
  font-weight: 400;
  color: #000;
  margin-bottom: 18px;
}

.contact-email {
  font-size: clamp(22px, 1.65vw, 28px);
  font-weight: 400;
  color: #000;
}

@media (max-height: 900px) and (min-width: 1025px) {
  .section-contact-info {
    padding: 40px var(--content-side) 40px clamp(20px, 2.6vw, 44px);
  }

  .section-contact-info h2 {
    font-size: clamp(36px, 3.2vw, 54px);
    margin-bottom: 18px;
  }

  .contact-phone,
  .contact-email {
    font-size: clamp(18px, 1.35vw, 24px);
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
 background: linear-gradient(90deg, #000 0%, #3533cd 90%);
  padding: 24px var(--content-gutter);
}

.footer-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-disclaimer {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  max-width: 900px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.footer-right a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-decoration: underline;
}

.footer-right a:hover {
  opacity: 0.8;
}

/* ============================================
   SCALE WITH US PAGE
   ============================================ */
.scale-header {
  background: #ffe500;
  padding: 40px 60px 30px;
  text-align: center;
}

.scale-header h1 {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.scale-header p {
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

.scale-form-section {
  background: url("assets/background-form.webp") center center / cover no-repeat;
  position: relative;
  min-height: 600px;
}

.scale-form-overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 60px 40px 60px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scale-form-container {
  background: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.scale-form-container .contact-form .form-row {
  gap: 16px;
  margin-bottom: 14px;
}

.scale-form-container .contact-form .form-row:last-child {
  margin-bottom: 0;
}

.scale-form-container .contact-form .form-group {
  margin-bottom: 0;
}

.scale-form-container .contact-form .form-consent-row {
  margin-top: 14px;
  margin-bottom: 0;
}

.scale-form-container .contact-form .consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  line-height: 1.5;
}

.scale-form-container .contact-form .consent-checkbox a {
  color: #2200b0;
  text-decoration: underline;
}

.scale-form-container .contact-form input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  font-family: "Telegraf", sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #d9ddea;
  border-radius: 10px;
  outline: none;
  background: #f7f9ff;
  color: #121212;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.scale-form-container .contact-form input::placeholder {
  color: #5f6578;
  font-weight: 500;
}

.scale-form-container .contact-form input:focus {
  border-color: #3300ff;
  box-shadow: 0 0 0 3px rgba(51, 0, 255, 0.12);
  background: #fff;
}

.scale-form-container .contact-form .consent-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
  padding: 0;
  border: 1px solid #b6bcd0;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  accent-color: #2200b0;
  flex: 0 0 auto;
  cursor: pointer;
}

.scale-form-container .contact-form .form-consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: auto;
  padding: 0;
  flex: 0 0 auto;
}

#scaleForm .form-consent-row input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  padding: 0 !important;
  margin: 2px 0 0 !important;
}

.scale-form-legal {
  max-width: 700px;
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
}

.scale-form-legal p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.55;
}

.scale-form-legal a {
  color: #fff;
  text-decoration: underline;
}

.scale-form-submit {
  margin-top: 30px;
  text-align: center;
}

.scale-form-submit .submit-btn {
  min-width: 220px;
  padding: 16px 44px;
  border-radius: 12px;
  border: none;
  font-family: "Telegraf", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #2200b0 0%, #3300ff 55%, #5a2bff 100%);
  box-shadow: 0 12px 30px rgba(35, 0, 150, 0.4);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.scale-form-submit .submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(35, 0, 150, 0.45);
}

.scale-form-submit .submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* ============================================
   APPLICATION RECEIVED PAGE
   ============================================ */
.confirmation-section {
  background: #ffe500;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.confirmation-content {
  text-align: center;
  max-width: 800px;
}

.confirmation-icon {
  margin-bottom: 30px;
}

.confirmation-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin-bottom: 24px;
}

.confirmation-text {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  margin-bottom: 40px;
}

.confirmation-sign {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

/* ============================================
   LEGAL PAGES (Terms / Privacy)
   ============================================ */
.legal-section {
  padding: 60px 40px 80px;
  background: #fff;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 42px;
  font-weight: 800;
  color: #000;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content a {
  color: #3300ff;
  text-decoration: underline;
}

/* ============================================
   WALLPAPER CONTACT FORM (Required HTML)
   ============================================ */
.feedback-form-container {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.feedback-form-container h3 {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  margin-bottom: 24px;
  text-align: center;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.contact-form .form-group {
  flex: 1;
}

.contact-form .form-group:only-child {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: "Telegraf", sans-serif;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  background: #f9f9f9;
  color: #000;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3300ff;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 16px;
}

.form-submit {
  text-align: center;
}

.submit-btn {
  background: #000;
  color: #fff;
  font-family: "Telegraf", sans-serif;
  font-weight: 800;
  font-size: 18px;
  padding: 16px 48px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.88;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 0;
    flex-direction: column;
  }

  .hero-content {
    flex: none;
    padding: 50px 40px;
  }

  .hero-image {
    flex: none;
    height: 360px;
  }

  .section-wasted-trips-inner {
    height: auto;
    min-height: 0;
    flex-direction: column;
  }

  .section-wasted-trips-text {
    flex: none;
    padding: 60px 40px;
  }

  .section-wasted-trips-image {
    flex: none;
    height: 400px;
  }

  .help-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .section-success-inner {
    flex-direction: column;
  }

  .section-success-image {
    flex: none;
    padding: 40px;
  }

  .section-success-text {
    padding: 0 40px 40px;
  }

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

  .section-scale-inner {
    flex-direction: column;
  }

  .section-scale-image {
    flex: none;
    height: 400px;
  }

  .section-scale-text {
    flex: none;
    padding: 60px 40px;
  }

  .section-contact-inner {
    height: auto;
    min-height: 0;
    flex-direction: column;
  }

  .section-contact-image {
    flex: none;
    height: 350px;
  }

  .section-contact-info {
    padding: 50px 40px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
  }

  .footer-right {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .logo-name {
    font-size: 28px;
  }

  .logo-tagline {
    font-size: 12px;
  }

  .logo-img {
    width: auto;
    height: 60px;
    max-height: 60px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

  .section-wasted-trips-text h2 {
    font-size: 36px;
  }

  .section-wasted-trips-text p {
    font-size: 17px;
  }

  .section-how-we-help {
    padding: 50px 24px 60px;
  }

  .section-how-we-help h2 {
    font-size: 42px;
    margin-bottom: 24px;
  }

  .help-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .help-icon {
    margin-bottom: 16px;
  }

  .help-item {
    margin-bottom: 28px;
  }

  .help-item h3 {
    font-size: 21px;
  }

  .help-item p {
    font-size: 19px;
  }

  .section-success-text h2 {
    font-size: 42px;
  }

  .section-success-text p {
    font-size: 18px;
  }

  .section-testimonials {
    padding: 50px 30px 60px;
  }

  .section-testimonials h2 {
    font-size: 36px;
  }

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

  .section-scale-text h2 {
    font-size: 36px;
  }

  .section-contact-info h2 {
    font-size: 40px;
  }

  .scale-header h1 {
    font-size: 36px;
  }

  .confirmation-content h1 {
    font-size: 36px;
  }

  .confirmation-text {
    font-size: 17px;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .legal-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 14px 20px;
  }

  .hero-content {
    padding: 40px 24px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .btn {
    font-size: 16px;
    padding: 14px 28px;
  }

  .section-wasted-trips-text {
    padding: 40px 24px;
  }

  .section-success-image {
    padding: 20px;
  }

  .section-success-text {
    padding: 0 24px 30px;
  }

  .section-scale-text {
    padding: 40px 24px;
  }

  .section-contact-info {
    padding: 40px 24px;
  }

  .scale-form-container {
    padding: 20px 24px;
  }
}
