.contact-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-wrapper {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 60px;
}

/* LEFT INFO */
.contact-info {
  background: #bfeeee;
  color: #ffffff;
  padding: 50px 40px;
  flex: 1;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 25px;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 15px;
}

.info-box {
  background: #ffffff;
  color: #083b5c;
  display: flex;
  gap: 15px;
  padding: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.info-box .icon {
  font-size: 26px;
  background: #004f55;
  color: #ffffff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-box h4 {
  margin-bottom: 4px;
}

.info-box .icon a {
  text-decoration: none;
}

.contact-form .btn {
  width: 100%;
  margin-top: 20px;
}


/* FORM */
.contact-form {
  flex: 2;
}

.contact-form h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #004f55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact-form .tel {
  width: 100%;
  height: 50%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: none;
  background: #f3f5f7;
  font-size: 14px;
}

.contact-form textarea {
  margin-top: 20px;
  height: 160px;
  resize: none;
}

.contact-form .full {
  margin-top: 20px;
}

.hero-content {
  position: relative;
  color: #bfeeee;
  margin-left: 8%;
}

.hero-subtitle {
  font-size: 35px;
  font-weight: 700;
  margin-top: 8px;
  color: #bfeeee;
}

/* ================= OFFICE SECTION ================= */
.office-section {
  padding: 70px 0;
  background: #f5f7fa;
}

.office-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.office-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.office-card:hover {
  transform: translateY(-5px);
}

.office-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px 12px 0 0;
}
.office-content {
  padding: 25px;
}

.office-content h3 {
  color: var(--deep-teal);
  margin-bottom: 15px;
}

.office-content p {
  margin-bottom: 8px;
  font-size: 15px;
}

.associate-list div {
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .office-container {
    grid-template-columns: 1fr;
  }
}
/* ASSOCIATE GRID */
.associate-grid {
  display: grid;
  gap: 25px;
  margin-top: 20px;
}

.associate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f5f7fa;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.associate-item:hover {
  background: #e9f1f4;
  transform: translateY(-5px);
}

.associate-item img {
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.associate-info strong {
  color: var(--deep-teal);
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.associate-info p {
  font-size: 14px;
  margin: 0;
}

@media (min-width: 769px) {
  .associate-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* MOBILE */
@media (max-width: 600px) {
  .associate-item {
    flex-direction: column;
    text-align: center;
  }

  .associate-item img {
    width: 100%;
    height: 160px;
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

.offices-section {
  padding: 90px 0;
  background: #ffffff;
}

.offices-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.offices-title {
  font-size: 40px;
  color: #083b5c;
  margin-bottom: 50px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.office-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.office-icon {
  width: 56px;
  height: 56px;
  background: #083b5c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.office-text h4 {
  font-size: 20px;
  color: #0a6fb7;
  margin-bottom: 6px;
}

.office-text p {
  font-size: 15px;
  color: #0b2a44;
  line-height: 1.7;
}

.map-link {
  color: #0a6fb7;
  text-decoration: none;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }

  .offices-title {
    font-size: 30px;
  }
}

/* ================= CORPORATE HEAD OFFICE CARD ================= */
.corporate-card {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}

.corporate-image {
  flex: 1;
  min-width: 300px;
}

.corporate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corporate-content {
  flex: 1;
  padding: 40px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.corporate-content h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--deep-teal);
}

.corporate-content p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .corporate-card {
    flex-direction: column;
  }

  .corporate-image img {
    height: 250px;
  }

  .corporate-content {
    padding: 25px;
  }
}
