:root {
  --primary: #126f9d;
  --secondary: #f34848;
  --text-dark: #1f2933;
  --text-light: #6b7280;
  --bg-light: #ffffff;
}

.contact-wrapper {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.contact-info .section-label {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-info h1 {
  font-size: 42px;
  margin: 12px 0 20px;
  font-weight:500;
  color: var(--text-dark);
}

.contact-desc {
  color: var(--text-light);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item i {
  font-size: 22px;
  color: var(--primary);
  background: #f4f2ff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.info-item h4 {
  margin: 0;
  font-size: 16px;
      font-weight: 600;
  color: var(--text-dark);
}

.info-item p,
.info-item li {
  color: var(--text-light);
  font-size: 14px;
  list-style: none;
}

/* RIGHT FORM CARD */
label {
    color: white;
    margin-bottom: 10px;
}
.contact-form-card {
  background: var(--primary);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(59, 42, 143, 0.25);
}

/* FORM INPUTS (Livewire) */
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: none;
  margin-bottom: 20px;
  font-size: 15px;
}

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

.contact-form-card button {
  width: 100%;
  padding: 16px;
  background: var(--secondary);
  color: #ffffff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form-card button:hover {
  background: var( --text-light);
}
.map-container {
    width: 100vw;
    height: 450px;
  display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;
    /* break out of container */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    padding: 0;
    overflow: hidden;
}

/* force iframe to fill container */
.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
   .map-container  {
        height: 300px;
     
    }
}

@media (min-width: 1200px) {
 .map-container  {
        height: 550px;
        left: 105%;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info h1 {
    font-size: 32px;
  }

  .contact-form-card {
    padding: 30px;
  }
  

}
