/* --------- COMPANY SECTION --------- */
.company-section {
  padding: 80px 20px;
  background-color: #f9fcfd;
  font-family: 'Outfit', sans-serif;
}

.company-container {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  align-items: stretch;
}

.company-image {
  flex: 0 0 50%;
  height: auto;
}

.company-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.company-text {
  flex: 1 1 50%;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-text h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #00b8c6;
}

.company-text h3 {
  margin-top: 25px;
  font-size: 22px;
  font-weight: 500;
  color: #00b8c6;
}

.company-text ul {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.company-text ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.company-text ul li::before {
  content: none;
}

.company-text ul li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.company-text > * {
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  color: #00b8c6;
  margin-bottom: 15px;
}

.about-features img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* --------- INFO SECTION (Cards) --------- */
.info-section {
  background-color: #f9fcfd;
  padding: 80px 20px;
  font-family: 'Outfit', sans-serif;
}

.info-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.info-block {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Shto delay për animacion radhazi */
.info-block:nth-child(1) {
  animation-delay: 0.2s;
}

.info-block:nth-child(2) {
  animation-delay: 0.5s;
}

.info-block:nth-child(3) {
  animation-delay: 0.8s;
}

.info-block:nth-child(4) {
  animation-delay: 1.1s;
}

.info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.info-block.alt {
  background-color: #eefafd;
}

.info-content h2 {
  font-size: 26px;
  color: #00b8c6;
  margin-bottom: 20px;
}

.info-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

/* --------- STEPS SECTION --------- */
.steps-section {
  background-color: #f1fbfc;
  padding: 80px 20px;
  font-family: 'Outfit', sans-serif;
  color: #1b365d;
  text-align: center;
}

.steps-container {
  max-width: 1100px;
  margin: 0 auto;
}

.steps-container h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #00b8c6;
}

.steps-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}


.step-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.step-box:nth-child(1) {
  animation-delay: 0.3s;
}

.step-box:nth-child(2) {
  animation-delay: 0.6s;
}

.step-box:nth-child(3) {
  animation-delay: 0.9s;
}

.step-box:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  background-color: #00b8c6;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: black;
}

.step-box p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.contact-section-split {
  display: flex;
  max-width: 1100px;
  margin: 60px auto 80px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 184, 198, 0.15);
  font-family: 'Outfit', sans-serif;
  background-color: #fff;
}

.contact-image {
  flex: 1.1;
  min-width: 320px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.contact-image img:hover {
  transform: scale(1.05);
}

.contact-form-wrapper {
  flex: 0.9;
  padding: 50px 40px;
  background-color: #f1fbfc;
  color: #1b365d;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #00b8c6;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: #007f8a;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 2px solid #00b8c6;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.3s ease;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007f8a;
  box-shadow: 0 0 8px rgba(0, 184, 198, 0.5);
}

.contact-form textarea {
  min-height: 130px;
}
textarea {
  resize: none; 
  max-height: 130px; 
}

.btn-submit {
  background-color: #00b8c6;
  color: white;
  border: none;
  padding: 16px 50px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s ease;
  user-select: none;
}

.btn-submit i {
  font-size: 20px;
}

.btn-submit:hover {
  background-color: #007f8a;
}

/* Responsivitet për mobile */
@media (max-width: 768px) {
  .contact-section-split {
    flex-direction: column;
    max-width: 100%;
  }

  .contact-image {
    height: 250px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }
}


/* --------- KEYFRAMES ANIMATION --------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------- RESPONSIVE --------- */
@media (max-width: 768px) {
  /* Company section mobile */
  .company-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 10px;
  }
  .company-text h2 {
    font-size: 26px;
  }
  .company-text {
    font-size: 16px;
  }

  /* Info section mobile */
  .info-block {
    padding: 30px 20px;
  }
  .info-content h2 {
    font-size: 22px;
  }
  .info-content p {
    font-size: 16px;
  }

  /* Steps section mobile */
  .steps-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .step-box {
    width: 100%;
  }

  /* People section (if you have it) */
  .people-section h2 {
    font-size: 26px;
  }
  .people-section p {
    font-size: 16px;
  }
}
