.contact-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.maps-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.maps-background iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: hue-rotate(200deg) saturate(0.5) brightness(0.85);
}

.location-pin-wrapper {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.location-pin-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-pin {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 3;
}

.wave-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(220, 53, 69, 0.6);
  animation: pulse-wave 2s infinite;
}

.wave-1 {
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.wave-2 {
  width: 90px;
  height: 90px;
  border-color: rgba(220, 53, 69, 0.4);
  animation-delay: 0.7s;
}

.wave-3 {
  width: 150px;
  height: 150px;
  border-color: rgba(220, 53, 69, 0.3);
  animation-delay: 1.4s;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.5) 0%,
    rgba(185, 28, 28, 0.6) 50%,
    rgba(220, 53, 69, 0.5) 100%
  );
  clip-path: polygon(65% 0, 100% 0, 100% 100%, 45% 100%);
  z-index: 2;
}

.contact-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(220, 53, 69, 0.1) 0%,
    rgba(220, 53, 69, 0.2) 100%
  );
  clip-path: ellipse(800px 400px at 0% 0%);
  z-index: 3;
}

.contact-content {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.contact-content .container-fluid {
  height: auto;
  min-height: 100vh;
}

.contact-content .row {
  height: auto;
  min-height: 100vh;
  align-items: center;
}

.contact-info-col {
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  height: auto;
  min-height: 100vh;
}

.contact-info-card {
  background-color: rgba(30, 29, 32, 0.95);
  border: none;
  border-radius: 0;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(10px);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 20px;
  margin-top: 2px;
}

.contact-text {
  flex: 1;
  font-size: 0.9rem;
}

.contact-link {
  color: #ffc107;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ffdb4d;
}

.contact-form-col {
  display: flex;
  align-items: center;
  padding: 2rem;
  height: auto;
  min-height: 100vh;
}

.contact-form-card {
  background-color: rgba(30, 29, 32, 0.95);
  border: none;
  border-radius: 0;
  width: 100%;
  height: auto;
  min-height: 500px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-header {
  text-align: left;
}

.form-subtitle {
  color: var(--main-color);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-title {
  color: #ffffff;
  font-size: 1.75rem;
  margin: 0.5rem 0 0 0;
}

.contact-form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  color: #b8b3ba;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-input,
.contact-textarea {
  background-color: rgba(31, 41, 55, 0.8);
  border: 1px solid rgba(75, 85, 99, 0.5);
  color: #ffffff;
  border-radius: 0;
  padding: 0.75rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  background-color: rgba(31, 41, 55, 0.9);
  border-color: var(--main-color);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #9ca3af;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.recaptcha-container {
  display: flex;
  justify-content: flex-end;
}

.submit-container {
  display: flex;
  justify-content: flex-end;
}

.contact-submit-btn {
  background: linear-gradient(135deg, var(--main-color) 0%, #b91c1c 100%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  min-width: 200px;
  height: 60px;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
  color: #ffffff;
}

@keyframes pulse-wave {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.location-pin-container:hover .location-pin {
  animation: pin-bounce 0.6s ease-in-out;
}

@keyframes pin-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1199.98px) {
  .contact-content {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
  }

  .contact-info-col,
  .contact-form-col {
    padding: 1.5rem;
    min-height: auto;
  }

  .contact-info-card,
  .contact-form-card {
    max-width: none;
    height: auto;
    min-height: auto;
  }

  .contact-overlay {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 60%);
  }
}

@media (max-width: 991.98px) {
  .contact-container {
    min-height: auto;
  }

  .contact-content {
    padding: 1rem 0;
    min-height: auto;
  }

  .contact-content .container-fluid,
  .contact-content .row {
    min-height: auto;
  }

  .contact-info-col {
    order: 2;
    align-items: center;
    padding: 1rem;
    min-height: auto;
  }

  .contact-form-col {
    order: 1;
    padding: 1rem;
    min-height: auto;
  }

  .contact-info-card {
    max-width: 500px;
    min-height: auto;
  }

  .contact-form-card {
    max-width: 500px;
    margin: 0 auto;
    min-height: auto;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .contact-submit-btn {
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 767.98px) {
  .contact-info-col,
  .contact-form-col {
    padding: 1rem;
    min-height: auto;
  }

  .contact-info-card,
  .contact-form-card {
    max-width: none;
    min-height: auto;
  }

  .form-title {
    font-size: 1.25rem;
  }

  .contact-submit-btn {
    max-width: none;
    width: 100%;
  }

  .recaptcha-container {
    justify-content: center;
  }

  .submit-container {
    justify-content: center;
  }

  .location-pin-wrapper {
    display: none;
  }

  .contact-overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@media (max-width: 575.98px) {
  .contact-content {
    padding: 0.5rem 0;
  }

  .contact-info-col,
  .contact-form-col {
    padding: 0.5rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .contact-input,
  .contact-textarea {
    padding: 0.5rem;
    font-size: 0.875rem;
  }

  .contact-submit-btn {
    height: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
}

@media (min-width: 1400px) {
  .contact-info-card,
  .contact-form-card {
    max-width: 450px;
  }

  .form-title {
    font-size: 2rem;
  }

  .contact-input,
  .contact-textarea {
    padding: 1rem;
    font-size: 1rem;
  }
}
