/* HERO SECTION - CONTACT US */
.btn-whatsapp {
	background-color: #25D366;
	color: white;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-whatsapp:hover {
	background-color: #128C7E;
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}


.contact-hero {
  padding: 180px 0 100px;
  background: linear-gradient(rgba(16, 64, 102, 0.85), rgba(10, 45, 74, 0.9)),
    url("https://images.unsplash.com/photo-1544531585-9847b12c598f?auto=format&fit=crop&w=1600")
      center/cover no-repeat;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path fill="white" 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.2;
}

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

.hero-slogan {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: white;
  position: relative;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

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

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

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* CONTACT CHANNELS SECTION */
.contact-channels {
  padding: 100px 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;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.channel-card {
  background-color: var(--off-white);
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}

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

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

.channel-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.channel-card p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.email-address {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-red);
  margin: 15px 0;
  word-break: break-all;
	cursor: pointer;
}

.whatsapp-number {
  font-size: 24px;
  font-weight: 700;
  color: #25d366;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
	cursor: pointer;
}

/* WHATSAPP CHANNEL SECTION */
.whatsapp-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.05) 0%,
    rgba(248, 249, 250, 1) 100%
  );
}

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

.whatsapp-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

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

.whatsapp-features {
  list-style: none;
  margin-top: 25px;
}

.whatsapp-features li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.whatsapp-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: bold;
  font-size: 18px;
}

.whatsapp-qr {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid #25d366;
}

.qr-code {
  width: 250px;
  height: 250px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, #25d366, #128c7e);
  /*background-image: url("../../public/img/count-us-1.png");*/
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.qr-code img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.qr-instructions {
  font-size: 14px;
  color: var(--medium-gray);
  margin-top: 15px;
}

/* GLOBAL OFFICES */
.offices-section {
  padding: 100px 0;
  background-color: white;
}

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

.office-card {
  background-color: var(--off-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.office-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.office-image.hangzhou {
  background-image: url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=800");
}

.office-image.qingdao {
  background-image: url("https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?auto=format&fit=crop&w=800");
}

.office-image.dubai {
  background-image: url("https://images.unsplash.com/photo-1518548419970-58e3b4079ab2?auto=format&fit=crop&w=800");
}

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

.office-overlay h3 {
  color: white;
  margin-bottom: 5px;
  font-size: 20px;
}

.office-content {
  padding: 25px;
}

.office-details {
  display: grid;
  gap: 15px;
  margin-bottom: 20px;
}

.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--medium-gray);
  font-size: 14px;
}

.office-detail i {
  color: var(--primary-red);
  margin-top: 3px;
}

/* WHY CHOOSE US SECTION */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(16, 64, 102, 0.05) 0%,
    rgba(248, 249, 250, 1) 100%
  );
  position: relative;
  overflow: hidden;
}

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

.why-choose-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.why-choose-container h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
}

.why-choose-container p {
  text-align: center;
  color: var(--medium-gray);
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

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

.benefit-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.benefit-content p {
  text-align: left;
  color: var(--medium-gray);
  margin-bottom: 0;
  font-size: 15px;
}

/* RESPONSE TIME SECTION */
.response-section {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}

.response-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

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

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

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

  .whatsapp-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

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

  .hero-slogan {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

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

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

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

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

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

  .hero-slogan {
    font-size: 20px;
  }

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

  .whatsapp-content h2 {
    font-size: 28px;
  }

  .email-address {
    font-size: 16px;
  }

  .whatsapp-number {
    font-size: 20px;
  }

  .qr-code {
    width: 200px;
    height: 200px;
  }
}
