* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #fff;
}


/* =====================================
   HERO SECTION – FULLY RESPONSIVE
===================================== */

.hero-banner {
    width: 100%;
    background-image: url("../images/ContactUS.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;

    aspect-ratio: 16 / 7;
}

/* Tablet */
@media (max-width: 768px) {
    .hero-banner {
        aspect-ratio: 16 / 9;
        background-position: center top;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-banner {
        aspect-ratio: 4 / 3;
        height: 160px;   /* controlled mobile height */
        background-position: center;
    }
}











/* MAIN LAYOUT */
/* ===== AVAILABILITY SECTION ===== */
.availability-section {
    padding: 70px 0;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.availability-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT */
.availability-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.availability-left p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    max-width: 600px;
}

/* CLINIC CARDS */
.clinic-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
}

.clinic-card {
    border: 1.5px solid #0a3fa9;
    padding: 30px 25px;
    text-align: center;
}

.clinic-card h3 {
    font-size: 18px;
    color: #0a3fa9;
    margin-bottom: 20px;
    line-height: 1.4;
}

.timing strong {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.timing span {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

/* BUTTON */
.btn.primary {
    display: inline-block;
    margin-top: 25px;
    background: #0a3fa9;
    color: #fff;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    line-height: 1.4;
}

/* PHONE */
.phone {
    margin-top: 20px;
    background: #0a3fa9;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
}

/* RIGHT FORM */
.availability-right h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #666;
    outline: none;
    font-size: 14px;
}

.contact-form button {
    width: 100%;
    padding: 13px;
    background: #2f3640;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .availability-grid {
        grid-template-columns: 1fr;
    }

    .clinic-cards {
        grid-template-columns: 1fr;
    }
}


/* MODAL 
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
}

.modal {
  background: #fff;
  width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  position: relative;
}

.modal-header {
  background: linear-gradient(90deg,#ff1b8d,#ff4da6);
  color: #fff;
  padding: 16px;
  text-align: center;
  border-radius: 12px 12px 0 0;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.appointment-form {
  padding: 20px;
}

.appointment-form input,
.appointment-form select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.loading {
  font-style: italic;
  color: #666;
}

.pay-btn {
  width: 100%;
  padding: 14px;
  border: 2px dashed #ff1b8d;
  background: transparent;
  color: #ff1b8d;
  border-radius: 30px;
  margin-top: 15px;
}

.confirm-btn {
  width: 100%;
  padding: 16px;
  margin-top: 15px;
  background: linear-gradient(90deg,#ff1b8d,#ff4da6);
  color: #fff;
  border: none;
  border-radius: 30px;
}

/*location*/
.location-map-section {
    padding: 40px 30px;
}

.location-map-section h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.map-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.map-box {
    width: 48%;
    min-width: 320px;
    text-align: center;
}

.map-box h3 {
    color: #0a33ff;
    margin-bottom: 12px;
    font-size: 18px;
}

.map-box iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .map-box {
        width: 100%;
    }
}




