/* ===========================
   Global Layout
=========================== */
body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===========================
   Subhero
=========================== */
.subhero {
  padding: 4rem 0;
  background: #f6f8ff;
}

.subhero-wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.subhero-media img {
  width: 100%;
  max-width: 450px;
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.subhero-box h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.subhero-box p {
  color: #666;
  max-width: 450px;
  margin-top: 10px;
}

/* Breadcrumb */
.crumbs {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.crumbs a {
  color: #0a66c2;
  text-decoration: none;
}

/* ===========================
   Section Titles
=========================== */
.section-head {
  margin-bottom: 2.3rem;
  text-align: left;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.section-sub {
  font-size: 1rem;
  color: #666;
}

/* ===========================
   Cards (Visit – Call – Email)
=========================== */
.cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.card .icon {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

/* ===========================
   Contact Form
=========================== */
form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 18px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-row.two {
  flex-direction: row;
}

.form-row.two > div {
  flex: 1;
}

label {
  font-weight: 600;
  margin-bottom: 4px;
  display: inline-block;
}

input,
textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  font-size: 1rem;
  transition: 0.25s;
}

input:focus,
textarea:focus {
  border-color: #0a66c2;
  box-shadow: 0 0 0 3px rgba(10,102,194,0.2);
}

/* Submit Button */
.btn {
  display: inline-block;
  padding: 14px 24px;
  background: #0a66c2;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.btn:hover {
  background: #004a9e;
}

/* ===========================
   Map
=========================== */
.map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* ===========================
   Reveal Animation
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.7s ease-out;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .form-row.two {
    flex-direction: column;
  }
  .subhero-wrap {
    justify-content: center;
    text-align: center;
  }
}
