/* PAGE HERO - SOUTH ASIA */
.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('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path fill="%23104066" fill-opacity="0.03" d="M200,0 C310.46,0 400,89.54 400,200 C400,310.46 310.46,400 200,400 C89.54,400 0,310.46 0,200 C0,89.54 89.54,0 200,0 Z M200,50 C118.43,50 50,118.43 50,200 C50,281.57 118.43,350 200,350 C281.57,350 350,281.57 350,200 C350,118.43 281.57,50 200,50 Z"></path></svg>')
    center/contain no-repeat;
  opacity: 0.5;
}

.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);
}

/* REGION OVERVIEW */
.region-overview {
  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;
}

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

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

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

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

.highlight {
  background-color: var(--off-white);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-red);
}

.highlight h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.highlight p {
  font-size: 14px;
  margin-bottom: 0;
}

.region-map {
  height: 400px;
  background-color: var(--light-gray);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=800");
  background-size: cover;
  background-position: center;
}

.map-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.4) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.map-overlay h3 {
  color: white;
  font-size: 28px;
  text-align: center;
  padding: 20px;
}

/* SOUTH ASIA TEAM */
.team-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

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

.team-member {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.member-image {
  height: 250px;
  background-color: var(--light-gray);
  background-size: cover;
  background-position: center;
}

.member-image.rajesh {
  background-image: url("https://images.unsplash.com/photo-1544725176-7c40e5a71c5e?auto=format&fit=crop&w=800");
}

.member-image.priya {
  background-image: url("https://images.unsplash.com/photo-1580489944761-15a19d654956?auto=format&fit=crop&w=800");
}

.member-image.ahmed {
  background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=800");
}

.member-content {
  padding: 25px;
}

.member-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

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

.member-bio {
  color: var(--medium-gray);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.member-contact {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.member-contact a {
  width: 36px;
  height: 36px;
  background-color: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

.member-contact a:hover {
  background-color: var(--primary-blue);
  color: white;
}

/* MARKET SPECIALTIES */
.specialties-section {
  padding: 80px 0;
  background-color: white;
}

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

.specialty-card {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary-red);
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background-color: white;
}

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

.specialty-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.specialty-card p {
  color: var(--medium-gray);
  font-size: 14px;
}

/* CONTACT FORM SECTION */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--dark-blue) 100%
  );
  color: white;
}

.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 {
  color: var(--primary-blue);
  font-size: 36px;
  margin-bottom: 15px;
}

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

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

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.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;
}

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

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

.interest-checkbox input {
  width: auto;
}

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

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

/* SUCCESS MESSAGE */
.success-message {
  display: none;
  background-color: #d4edda;
  color: #155724;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #c3e6cb;
  margin-top: 20px;
  text-align: center;
}

/* WHY CHOOSE US */
.why-choose-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

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

.why-card {
  background-color: white;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border-top: 5px solid var(--primary-blue);
}

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

.why-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(16, 64, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-blue);
  font-size: 30px;
}

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

.why-card p {
  color: var(--medium-gray);
}

@media (max-width: 1024px) {
  .region-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .product-interests {
    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-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .region-highlights {
    grid-template-columns: 1fr;
  }

  .product-interests {
    grid-template-columns: 1fr;
  }

  .contact-container {
    padding: 30px 20px;
  }
}

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

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

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