/* PAGE HERO - AFRICA TEAM */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(16, 64, 102, 0.05) 0%,
    rgba(248, 249, 250, 1) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?auto=format&fit=crop&w=800")
    center/cover no-repeat;
  opacity: 0.1;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 20px;
  color: var(--medium-gray);
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 16px;
  color: var(--medium-gray);
}

/* AFRICA TEAM INTRODUCTION */
.team-intro {
  padding: 80px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.team-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.team-text p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
}

.team-leaders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.team-leader {
  text-align: center;
  padding: 20px;
  background-color: var(--off-white);
  border-radius: 8px;
  transition: var(--transition);
}

.team-leader:hover {
  background-color: rgba(16, 64, 102, 0.05);
  transform: translateY(-5px);
}

.leader-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--light-gray);
  margin: 0 auto 15px;
  background-image: url("https://images.unsplash.com/photo-1544725176-7c40e5a71c5e?auto=format&fit=crop&w=300");
  background-size: cover;
  background-position: center;
}

.leader-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.leader-info p {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}

.team-visual {
  height: 400px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--dark-blue) 100%
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?auto=format&fit=crop&w=800");
  background-size: cover;
  background-position: center;
}

.team-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(16, 64, 102, 0.8) 0%,
    rgba(207, 1, 6, 0.3) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 40px;
}

/* PRODUCT CATEGORIES */
.categories-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

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

.category-card {
  background-color: white;
  border-radius: 8px;
  padding: 40px 25px;
  text-align: center;
  transition: var(--transition);
  border-top: 5px solid var(--primary-red);
  box-shadow: var(--shadow);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--primary-blue);
}

.category-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(207, 1, 6, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-red);
  font-size: 30px;
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.category-card p {
  color: var(--medium-gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.category-stats {
  display: inline-block;
  background-color: rgba(16, 64, 102, 0.1);
  color: var(--primary-blue);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* KEY MARKETS */
.markets-section {
  padding: 80px 0;
  background-color: white;
}

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

.market-card {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 35px;
  text-align: center;
  transition: var(--transition);
  border-left: 4px solid var(--primary-blue);
}

.market-card:hover {
  background-color: rgba(16, 64, 102, 0.05);
  transform: translateY(-5px);
}

.market-flag {
  font-size: 48px;
  margin-bottom: 20px;
}

.market-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.market-specialization {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.market-card p {
  color: var(--medium-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* CONTACT FORM SECTION */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(16, 64, 102, 0.05) 0%,
    rgba(248, 249, 250, 1) 100%
  );
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  padding: 50px;
  box-shadow: var(--shadow);
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-header p {
  color: var(--medium-gray);
  font-size: 18px;
}

.contact-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(16, 64, 102, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-interest {
  margin-bottom: 25px;
  padding: 25px;
  background-color: var(--off-white);
  border-radius: 6px;
  border-left: 4px solid var(--primary-red);
}

.product-interest h4 {
  margin-bottom: 15px;
  color: var(--dark-blue);
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.interest-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.interest-checkbox input {
  width: 18px;
  height: 18px;
}

.interest-checkbox label {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 0;
  cursor: pointer;
}

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

.guarantee {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
  color: var(--medium-gray);
  font-size: 14px;
}

.guarantee i {
  color: var(--primary-red);
  margin-right: 8px;
}

/* SUCCESS STORIES */
.stories-section {
  padding: 80px 0;
  background-color: white;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.story-card {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 35px;
  transition: var(--transition);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.story-avatar {
  width: 60px;
  height: 60px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-blue);
}

.story-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.story-info p {
  color: var(--medium-gray);
  font-size: 14px;
  margin-bottom: 0;
}

.story-content p {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 15px;
}

.story-results {
  margin-top: 20px;
  padding: 15px;
  background-color: white;
  border-radius: 6px;
  border-left: 4px solid var(--primary-blue);
}

.story-results h5 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.story-results ul {
  list-style: none;
  padding-left: 0;
}

.story-results li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--medium-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-results li:before {
  content: "✓";
  color: var(--primary-red);
  font-weight: bold;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--dark-blue) 100%
  );
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 50px;
}

.cta-feature {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  transition: var(--transition);
}

.cta-feature:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.cta-feature i {
  font-size: 36px;
  color: white;
  margin-bottom: 15px;
}

.cta-feature h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 18px;
}

.cta-feature p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 0;
}

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

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

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

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

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

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 60px;
  }

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

  .page-hero p {
    font-size: 18px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .team-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-container {
    padding: 30px;
  }

  .cta-features {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 32px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .contact-header h2 {
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 30px;
  }

  .team-leaders {
    grid-template-columns: 1fr;
  }
}