* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* THEME VARIABLES */
:root {
  --primary: #e5b567;
  --primary-light: #f3c87a;
  --dark: #0b0b0b;
  --text-light: #ccc;
  --text-muted: #8b8b8b;
  --white: #fff;
  --radius: 10px;
  --transition: 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--dark);
  color: var(--white);
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  pointer-events: none;
}

/* .hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
} */

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.2)
  );
}

/* .hero-content {
    position: relative;
    max-width: 600px;
    color: var(--white);
} */

.hero-content {
  position: relative;
  max-width: 600px;
  color: var(--white);
  margin-left: 40px; /* 👈 move right */
}

.tag {
  color: #e5b567;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.6px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(28px, 6vw, 60px);
  line-height: 1.2;
}

.hero-content span {
  color: var(--primary);
}

.desc {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.7;
  margin: 22px 0 0;
  max-width: 440px;
}

/* BUTTONS */
/* .btn {
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn i {
  font-size: 14px;
} */

/* PRIMARY */
/* .primary {
  background: var(--primary);
  color: #000;
  border: none;
  box-shadow: 0 0 15px rgba(229, 181, 103, 0.5);
} */

/* .primary:hover {
  background: var(--primary-light);
} */

/* OUTLINE */
/* .outline {
  border: 1px solid var(--primary);
  color: var(--white);
  background: transparent;
}

.outline:hover {
  background: var(--primary);
  color: #000;
} */

/* CONTACT SECTION */
.contact-section {
  display: flex;
  justify-content: center; /* 👈 centers content */
  gap: 40px;
  padding: 60px 8%;
  background: #f5f5f5;
  color: #000;
}

.form-container {
  flex: 1;
}

.section-tag {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.form-container h2 {
  margin-bottom: 20px;
}

form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.row {
  display: flex;
  gap: 10px;
}

/* BUTTON */
.send-btn {
  width: 100%;
  background: var(--primary);
  color: #000;
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.send-btn:hover {
  background: var(--primary-light);
}

/* .secure {
  font-size: 12px;
  margin-top: 10px;
  color: var(--text-muted);
} */

.secure {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center; /* center horizontally */

  font-size: 13px;
  margin-top: 14px;
  color: var(--text-muted);
}

.secure i {
  color: var(--primary);
  background: rgba(229, 181, 103, 0.12);

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  box-shadow: 0 4px 10px rgba(229, 181, 103, 0.18);

  font-size: 14px;
}

/* INFO CARDS */
.info-cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 50px; */
  justify-content: center; /* 👈 NEW */
  align-content: center; /* 👈 NEW */
  margin-left: 50px;
  column-gap: 35px; /* 👈 increase space between columns */
  row-gap: 35px; /* 👈 keep vertical spacing normal */
}

/* .card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: white;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all var(--transition);
  cursor: pointer;
} */

.card {
  display: flex;
  flex-direction: column; /* 👈 stack items */
  align-items: center; /* 👈 center horizontally */
  justify-content: center; /* 👈 center vertically */
  text-align: center; /* 👈 center text */

  gap: 10px; /* 👈 reduce spacing */
  background: white;
  padding: 18px; /* 👈 reduce padding */
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

  min-height: auto; /* 👈 remove extra height */
  transition: all var(--transition);
  height: 180px;
}

.card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.15),
    0 0 10px rgba(229, 181, 103, 0.2);
}

/* CARD TEXT SIZES (match team style) */

/* TITLE (Call Us, Email Us, etc.) */
.card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card div {
  display: flex;
  flex-direction: column;
  gap: 4px; /* 👈 spacing between lines */
  align-items: center; /* 👈 center text block */
}

/* MAIN VALUE (+1 number, email, address) */
.card .highlight {
  font-size: 14px;
  font-weight: 500;
}

/* DESCRIPTION TEXT */
.card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  /* margin-top: 2px; */
  margin: 0; /* 👈 remove extra margin */
}

.card i {
  font-size: 20px;
  color: var(--primary);
  background: rgba(229, 181, 103, 0.1);
  padding: 12px;
  border-radius: 50%;
  min-width: 45px;
  text-align: center;
}

.card:hover i {
  transform: scale(1.1);
}

.card h3 {
  margin-bottom: 5px;
}
.card .highlight {
  color: var(--primary); /* 👈 gold color */
  font-size: 14px;
  font-weight: 500;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* LOCATION SECTION */
.location-section {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 25px;
  padding: 30px 8% 60px;
  background: #f5f5f5;
}

a {
  text-decoration: none;
}

.location-card {
  background: #0c0c0c;
  color: white;
  padding: 30px;
  border-radius: var(--radius);
}

.location-card h2 {
  margin-bottom: 20px;
}

.location-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.location-item i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 4px;
}

/* .directions-btn {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
} */

.directions-btn {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;


  color: var(--primary); /* golden text */
  font-weight: 600;

  text-decoration: none;
}

.directions-btn i {
  color: var(--primary); /* golden icon */

  background: rgba(229, 181, 103, 0.1);

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
}

/* MAP */
.map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 350px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-pin {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--primary);
}

.map-label {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 13px;
}

/* HOURS CARD */
.hours-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
  cursor: pointer;
}

.hours-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.15),
    0 0 10px rgba(229, 181, 103, 0.2);
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.hours-header i {
  color: var(--primary);
  font-size: 18px;
}

.hours-header h3 {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 14px;
  border-bottom: 1px solid #e5e5e5;
}

.hours-row:last-of-type {
  border-bottom: none;
}

.emergency-box {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  align-items: center; /* 👈 fixes alignment */
}

.emergency-box {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.emergency-box div {
  display: flex;
  flex-direction: column;
  justify-content: center; /* 👈 keeps text centered with icon */
}

.emergency-box i {
  color: var(--primary); /* 👈 same as clinic icon */
  background: rgba(229, 181, 103, 0.1); /* same soft background */
  padding: 10px;
  border-radius: 50%;
}

.emergency-box p {
  color: var(--primary);
  font-weight: 600;
  margin: 0;
  white-space: nowrap; /* 👈 prevents line break */
}

/* RESPONSIVE stays SAME */

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* TABLET */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding: 60px 6%;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  /* .hero-buttons {
    margin-top: 25px;
    gap: 15px;
  } */

  .contact-section {
    flex-direction: column;
  }

  .info-cards {
    grid-template-columns: 1fr 1fr;
  }

  .location-section {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 60px 5%;
  }

  .hero-content {
    max-width: 100%;
    margin-left: 0; /* ❌ remove fixed shift */
    text-align: center; /* ✅ center content */
  }

  .tag {
    top: 0; /* reset for mobile */
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .desc {
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  /* .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  } */

  .contact-section {
    padding: 40px 5%;
    gap: 30px; /* ✅ clean spacing between form & cards */
  }

  .info-cards {
    grid-template-columns: 1fr;
    margin-left: 0; /* ❌ remove desktop shift */
    column-gap: 0;
    row-gap: 20px;
  }

  .location-section {
    padding: 40px 5%;
  }

  .row {
    flex-direction: column;
  }

  .hours-card,
  .location-card {
    width: 100%;
  }
}

/* SMALL MOBILE (iPhone SE etc.) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  /* .hero-buttons {
    gap: 10px;
  } */

  .desc {
    font-size: 13px;
  }

  /* .btn {
    padding: 12px;
    font-size: 14px;
  } */

  .card {
    padding: 14px;
  }

  .card h3 {
    font-size: 13px;
  }

  .card p {
    font-size: 12px;
  }

  .hours-row {
    font-size: 13px;
  }

  .map-label {
    font-size: 10px;
    padding: 8px;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .contact-section {
    flex-direction: column;
  }

  .row {
    flex-direction: column;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .map-label {
    font-size: 11px;
  }
}
