/* Stylish Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f0f8 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin: 4rem auto;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
}

/* Get in touch section styling */
.left-column h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #186aff, #0d4ecc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.left-column h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #186aff, #0d4ecc);
  border-radius: 2px;
}

.left-column p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a6a7e;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: rgba(24, 106, 255, 0.1);
  border-radius: 0 0 0 100%;
  z-index: 0;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: rgba(24, 106, 255, 0.08);
  border-radius: 0 100% 0 0;
  z-index: 0;
}

.contact-section-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.contact-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.contact-section-header h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: #186aff;
  border-radius: 2px;
}

.contact-section-header p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5a6a7e;
  max-width: 700px;
}

.contact-section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.contact-info-container {
  flex: 1;
  min-width: 300px;
}

.contact-info-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.contact-info-card h3 i {
  color: #186aff;
  margin-right: 10px;
  font-size: 1.2rem;
}

.contact-info-item {
  display: flex;
  margin-bottom: 1.2rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  flex: 0 0 40px;
  height: 40px;
  background: rgba(24, 106, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-info-icon i {
  color: #186aff;
  font-size: 1.1rem;
}

.contact-info-text {
  flex: 1;
}

.contact-info-text strong {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 3px;
}

.contact-info-text span {
  color: #5a6a7e;
  font-size: 0.95rem;
}

.contact-info-text a {
  color: #186aff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-text a:hover {
  color: #0d4ecc;
  text-decoration: underline;
}

.global-presence-card {
  background: linear-gradient(135deg, #186aff 0%, #0d4ecc 100%);
  color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(24, 106, 255, 0.3);
}

.global-presence-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.global-presence-card h3 i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.global-presence-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.global-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.location-badge {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  transition: background 0.2s ease;
}

.location-badge:hover {
  background: rgba(255, 255, 255, 0.3);
}

.location-badge i {
  margin-right: 5px;
  font-size: 0.8rem;
}

.contact-cta {
  text-align: center;
  margin-top: 2rem;
}

.contact-cta-button {
  display: inline-block;
  background: #186aff;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(24, 106, 255, 0.3);
}

.contact-cta-button:hover {
  background: #0d4ecc;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24, 106, 255, 0.4);
}

.contact-cta-button i {
  margin-left: 8px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-section {
    padding: 2.5rem;
    margin: 3rem 1.5rem;
  }
  
  .contact-section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 2rem;
    margin: 2.5rem 1rem;
  }
  
  .contact-section-header h2 {
    font-size: 2rem;
  }
  
  .contact-section-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-info-container {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 1.5rem;
    margin: 2rem 0.75rem;
    border-radius: 12px;
  }
  
  .contact-section-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-section-header h2::after {
    width: 60px;
    height: 3px;
  }
  
  .contact-info-card, 
  .global-presence-card {
    padding: 1.5rem;
  }
}

/* Contact details styling */
.contact-details {
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.contact-info {
  padding: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #186aff, #0d4ecc);
  border-radius: 0 2px 2px 0;
}

.contact-info h3,
.global-offices h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
}

.contact-info h3::before {
  content: '\f2bb';
  font-family: 'Font Awesome 5 Free';
  margin-right: 10px;
  color: #186aff;
  font-weight: 900;
}

.contact-info p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info p strong {
  min-width: 120px;
  color: #2c3e50;
  font-weight: 600;
}

.global-offices {
  padding: 2rem;
  background: linear-gradient(135deg, #186aff 0%, #0d4ecc 100%);
  color: white;
  position: relative;
}

.global-offices h3 {
  color: white;
  margin-bottom: 1rem;
}

.global-offices h3::before {
  content: '\f0ac';
  font-family: 'Font Awesome 5 Free', sans-serif;
  margin-right: 10px;
  font-weight: 900;
}

.global-offices p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
}

.global-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.location-badge {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin: 5px;
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.location-badge i {
  margin-right: 6px;
  font-size: 0.8rem;
}

.location-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.global-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
  justify-content: center;
}

/* Animation for the contact details */
.contact-details {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhance the heading with animation */
.left-column h2 {
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive adjustments for the contact details */
@media (max-width: 768px) {
  .left-column h2 {
    font-size: 2rem;
    text-align: center;
    display: block;
  }
  
  .left-column h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .left-column p {
    text-align: center;
    max-width: 100%;
  }
  
  .contact-details {
    margin-top: 2rem;
  }
  
  .contact-info p strong {
    min-width: 100px;
  }
}

@media (max-width: 576px) {
  .left-column h2 {
    font-size: 1.8rem;
  }
  
  .contact-info,
  .global-offices {
    padding: 1.5rem;
  }
  
  .contact-info h3,
  .global-offices h3 {
    font-size: 1.3rem;
  }
}