/* COMPANY HERO SECTION */
.company-hero {
  padding: 160px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(16, 64, 102, 0.1) 0%,
    rgba(248, 249, 250, 1) 100%
  );
  position: relative;
  overflow: hidden;
}

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

.company-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.company-info h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.company-tagline {
  font-size: 20px;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 20px;
}

.company-description {
  font-size: 18px;
  color: var(--medium-gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.company-stat {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

.company-visual {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-image: url("https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?auto=format&fit=crop&w=1200");
  background-size: cover;
  background-position: center;
  position: relative;
}

.company-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(16, 64, 102, 0.9));
  color: white;
}

.company-visual-overlay h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 24px;
}

/* SECTION STYLES */
.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;
}

/* SPECIALIZATIONS SECTION */
.specializations-section {
  padding: 80px 0;
  background-color: white;
}

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

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

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

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

.specialization-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.specialization-card p {
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.specialization-products {
  list-style: none;
  text-align: left;
  margin-top: 20px;
}

.specialization-products li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  color: var(--medium-gray);
}

.specialization-products li:before {
  content: "•";
  position: absolute;
  left: 10px;
  color: var(--primary-red);
  font-weight: bold;
}

/* MARKETS SECTION */
.markets-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

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

.markets-list {
  list-style: none;
}

.markets-list li {
  margin-bottom: 20px;
  padding: 25px;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-blue);
  transition: var(--transition);
}

.markets-list li:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

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

.market-flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 20px;
}

.market-header h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.market-details {
  color: var(--medium-gray);
  font-size: 15px;
  line-height: 1.6;
}

.markets-map {
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(16, 64, 102, 0.1) 0%,
    rgba(207, 1, 6, 0.1) 100%
  );
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1535139262971-c51845709a48?auto=format&fit=crop&w=800");
  background-size: cover;
  background-position: center;
}

.markets-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;
  text-align: center;
  padding: 40px;
}

.markets-overlay h3 {
  color: white;
  font-size: 28px;
}

/* INQUIRY FORM SECTION */
.inquiry-section {
  padding: 80px 0;
  background-color: white;
}

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

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

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

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

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  text-align: center;
  padding: 25px;
  background-color: white;
  border-radius: 8px;
  transition: var(--transition);
}

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

.contact-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 15px;
  color: var(--primary-red);
  font-size: 24px;
}

.contact-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-item p {
  color: var(--medium-gray);
  margin-bottom: 5px;
}

.contact-email {
  color: var(--primary-red);
  font-weight: 600;
}

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

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

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

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

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

.category-checkbox input {
  width: auto;
}

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

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

/* BENEFITS SECTION */
.benefits-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

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

.benefit-card {
  background-color: white;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border-left: 4px solid var(--primary-red);
}

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

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

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

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

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

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

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

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

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

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

  .company-info h1 {
    font-size: 36px;
  }

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

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

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

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

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

  .contact-info {
    grid-template-columns: 1fr;
  }
}

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

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

  .company-stats {
    grid-template-columns: 1fr;
  }

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

  .company-visual {
    height: 300px;
  }
}
