/* Original global CSS */
:root {
  --color-primary: #e7a94c;
  --color-text: #ffffff;
  --color-background-dark: #141516;
  --color-background-medium: #252527;
  --color-background-light: #343639;
  --color-background-darkest: #0f0f0e;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000000;
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 60px 0;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

/* Extracted sections styles */
/* CSS for section section:hero */
.hero-section {
  position: relative;
  min-height: 744px;
  display: flex;
  align-items: center;
  padding: 100px 0;
  box-sizing: border-box;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.83;
  z-index: -1;
}

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

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

.hero-text h1 {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -2.9px;
  margin: 0 0 20px 0;
}

.hero-text h1 .highlight {
  font-weight: 800;
  color: #e6a94c;
}

.hero-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 492px;
  margin: 0;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}

.hero-cta .cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  padding: 20px 80px;
  border-radius: 7px;
  text-align: center;
  white-space: nowrap;
}

.hero-cta .phone-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-text);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  .hero-text {
    order: 2;
  }
  .hero-cta {
    order: 1;
  }
  .hero-text h1 {
    font-size: 48px;
  }
  .hero-cta .phone-number {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }
  .hero-text h1 {
    font-size: 36px;
  }
  .hero-text p {
    font-size: 18px;
  }
  .hero-cta .cta-button {
    padding: 15px 40px;
    font-size: 20px;
  }
  .hero-cta .phone-number {
    font-size: 28px;
  }
}

/* CSS for section section:advantages */
.advantages-section {
  background-color: var(--color-background-medium);
  padding: 80px 0;
}

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

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.advantage-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.advantage-item p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  max-width: 270px;
}

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .advantage-item p {
    font-size: 20px;
  }
}

/* CSS for section section:how-it-works */
.how-it-works-section {
  background-color: var(--color-background-light);
  padding: 80px 0;
}

.process-flow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 200px;
}

.process-step img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.process-step p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.process-arrow {
  margin-top: 75px; /* Align with the middle of the icons */
  width: 70px;
  height: auto;
}

@media (max-width: 1200px) {
  .process-flow {
    flex-wrap: wrap;
    gap: 40px;
  }
  .process-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-step {
    width: 100%;
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }
  .process-step img {
    width: 80px;
    height: 80px;
  }
  .process-step p {
    font-size: 20px;
  }
}

/* CSS for section section:cargo-types */
.cargo-types-section {
  background-color: var(--color-background-darkest);
  padding: 80px 0;
}

.cargo-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
}

.cargo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 325px;
}

.cargo-item img {
  width: 250px;
  height: 250px;
  object-fit: contain;
}

.cargo-item p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 768px) {
  .cargo-grid {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .cargo-item {
    width: 100%;
  }
  .cargo-item p {
    font-size: 20px;
  }
}

/* CSS for section section:contact */
.contact-section {
  background-color: var(--color-background-dark);
  padding: 80px 0;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  flex-basis: 45%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-contact img {
  width: 75px;
  height: 75px;
}

.phone-contact .phone-number {
  font-size: 58px;
  font-weight: 800;
  color: var(--color-text);
  text-decoration: none;
}

.logo-placeholder {
  background-color: #d9d9d9;
  color: #000;
  padding: 40px;
  font-size: 24px;
  line-height: 1.5;
}

.contact-form-container {
  flex-basis: 55%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-group {
  width: 100%;
}

.contact-form input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-text);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 500;
  padding: 10px 0;
  box-sizing: border-box;
}

.contact-form input::placeholder {
  color: var(--color-text);
  opacity: 0.5;
}

.contact-form input:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

.form-row {
  display: flex;
  gap: 20px;
}

.submit-button {
  background-color: #e8ab50;
  border: none;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 36px;
  font-weight: 800;
  padding: 22px 0;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

@media (max-width: 1200px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 60px;
  }
  .contact-info, .contact-form-container {
    flex-basis: 100%;
    width: 100%;
  }
  .phone-contact .phone-number {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .phone-contact {
    flex-direction: column;
    align-items: flex-start;
  }
  .phone-contact .phone-number {
    font-size: 36px;
  }
  .contact-form input {
    font-size: 24px;
  }
  .form-row {
    flex-direction: column;
    gap: 40px;
  }
  .submit-button {
    font-size: 28px;
  }
}


/* --- Neat image sizing fixes (added by converter) --- */
img { max-width:100%; height:auto; display:block; object-fit:contain; }
.hero-background img { width:100%; height:100%; object-fit:cover; }
.advantages-grid .advantage-item img { width:100px; height:100px; margin:0 auto; object-fit:contain; }
.process-step img { width:150px; height:150px; margin:0 auto; object-fit:contain; }
.process-arrow { width:70px; height:auto; }
.cargo-item img { width:250px; height:250px; margin:0 auto; object-fit:contain; }
.phone-contact img { width:75px; height:75px; object-fit:contain; }
