/* Contact Hero Section */
.contact-hero-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(135deg, #25262a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../../images/hero_2.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.contact-hero-subtitle {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #8c92a0;
}

.contact-hero-title {
  font-size: 70px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #fff;
}

.contact-hero-description {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: #8c92a0;
}

@media (max-width: 768px) {
  .contact-hero-section {
    height: 50vh;
    min-height: 350px;
  }

  .contact-hero-title {
    font-size: 40px;
    letter-spacing: 4px;
  }

  .contact-hero-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .contact-hero-description {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: #fafafa;
}

.contact-info-wrapper,
.contact-form-wrapper {
  padding: 50px;
  background: #fff;
  border: 1px solid #edf0f5;
  height: 100%;
  transition: all 0.4s ease;
}

.contact-info-wrapper:hover,
.contact-form-wrapper:hover {
  border-color: #ee4266;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-section-title {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #25262a;
}

.contact-section-description {
  font-size: 15px;
  color: #8c92a0;
  margin-bottom: 50px;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* Contact Info Items */
.contact-info-items {
  margin-bottom: 50px;
  margin-left: -50px;
  margin-right: -50px;
  padding: 0 50px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #edf0f5;
  transition: all 0.3s ease;
}

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

.contact-info-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ee4266;
  color: #fff;
  font-size: 22px;
  margin-right: 25px;
  flex-shrink: 0;
  transition: none;
}

.contact-info-content h4 {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #25262a;
}

.contact-info-content p,
.contact-info-content a {
  font-size: 15px;
  color: #8c92a0;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.contact-info-content a:hover {
  color: #ee4266;
}

/* Mini Map in Location Section */
.mini-map {
  margin-top: 15px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #edf0f5;
  width: calc(100% + 100px);
  margin-left: -50px;
  margin-right: -50px;
}

.mini-map iframe {
  display: block;
  filter: grayscale(20%) contrast(1.1);
}

/* Contact Social */
.contact-social {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #edf0f5;
}

.contact-social h4 {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #25262a;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ee4266;
  border: 1px solid #ee4266;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
  background: #25262a;
  border-color: #25262a;
  transform: translateY(-5px);
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(37, 38, 42, 0.3);
}

.social-link i {
  color: inherit;
}

/* Contact Form */
.contact-form {
  margin-top: 0;
}

.contact-form .form-group {
  margin-bottom: 30px;
}

.contact-form label {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: #25262a;
  display: block;
}

.contact-form .required {
  color: #ee4266;
}

.contact-form .form-control {
  border: 1px solid #edf0f5;
  border-radius: 0;
  padding: 16px 20px;
  font-size: 15px;
  color: #25262a;
  transition: all 0.3s ease;
  background: #fafafa;
  letter-spacing: 0.5px;
}

.contact-form .form-control:focus {
  border-color: #ee4266;
  box-shadow: 0 0 0 3px rgba(238, 66, 102, 0.1);
  background: #fff;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: #8c92a0;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  width: 100%;
  padding: 18px 40px;
  background: #ee4266;
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #25262a;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(238, 66, 102, 0.3);
}

.btn-submit:hover::before {
  left: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 40px;
    margin-bottom: 30px;
  }

  .contact-section-title {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .map-wrapper {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-section-title {
    font-size: 24px;
    letter-spacing: 1.5px;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin-right: 20px;
  }

  .contact-info-content h4 {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .contact-info-content p,
  .contact-info-content a {
    font-size: 14px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .btn-submit {
    padding: 16px 30px;
    font-size: 12px;
  }
  
  .mini-map iframe {
    height: 150px;
  }
}

/* Animation Delays */
.contact-info-item:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-info-item:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-info-item:nth-child(3) {
  animation-delay: 0.3s;
}

/* Icon Fix - Ensure icons display properly */
.footer-social .social-link i,
.contact-social .social-link i,
.contact-info-icon i,
.footer-contact .contact-icon i {
  display: inline-block;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure footer icons inherit color properly */
.site-footer-new .footer-social .social-link {
  color: #fff;
}

.site-footer-new .footer-social .social-link:hover {
  color: #fff !important;
}

.site-footer-new .footer-social .social-link i {
  color: inherit !important;
}
