/* Container */
.container {
  max-width: 1227px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Contact Section */
.Our_Global_contact {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 0px;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); 
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #001246;
      margin-bottom: 10px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 3px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0f6fc7;
  box-shadow: 0 0 0 3px rgba(15, 111, 199, 0.1);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: #c62222;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: #a01b1b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 34, 34, 0.3);
}

/* Contact Info */
.contact-info-enquiry {
  display: flex;
  flex-direction: column;
  gap: 32px;
}


.info-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #001246;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card h3 i {
  color: #002283;
  font-size: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
  font-size: 15px;
}

.info-item i {
  color: rgb(198 34 34);
  font-size: 18px;
}

/* Office Locations */
.locations-section {
  padding: 60px 0;
  background: white;
}

.locations-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #001246;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.location-card {
  background: #f9fafb;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #c62222;
  transition: all 0.3s;
}

.location-card:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.location-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #001246;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-card h3 i {
  color: #c62222;
}

.location-card a {
  color: #0f6fc7;
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.location-card a:hover {
  color: #c62222;
}

.location-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.enquire-select{
  border: 1px solid #ddd;
  padding: 8px 16px;
  align-items: center;
  border-radius: 5px;
  color: black;
}

.enquire-select .list{
  width: 95%;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .locations-section h2 {
    font-size: 28px;
  }
}

