:root {
  --sec-gap: clamp(2rem, 4vw, 3rem);
}
.container {
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.location-hero {
  background: linear-gradient(90deg, #0b3b66 50%, transparent 50%);
  border-radius: 20px;
  overflow: hidden;
  margin: 30px;
}

.location-hero .container {
  display: flex;
  align-items: center;
}

.hero-content {
  width: 50%;
  color: #fff;
  padding: 60px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero-content p {
  margin: 15px 0;
  opacity: 0.9;
}

.btn-wrap {
  margin-top: 20px;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 10px;
}

.btn.primary {
  background: #1e6bff;
  color: #fff;
}

.btn.secondary {
  border: 1px solid #fff;
  color: #fff;
}

.hero-image {
  width: 50%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ADDRESS */
.address-section {
  margin-top: var(--sec-gap);
  margin-bottom: var(--sec-gap);
}

.address-card {
  display: flex;
  background: #f5f7fa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.address-left {
  width: 40%;
  padding: 30px;
  display: flex;
  gap: 1.5rem;
  background: linear-gradient(
    135deg,
    #0f172a 0%,
    #0b2239 40%,
    #0a2c3f 70%,
    #0e3a4c 100%
  );
}
.address-left .blue-p {
  color: #1392ec;
  font-weight: 600;
}
.address-image {
  width: 60%;
}
/* .address-image iframe {
  border-radius: 16px;
} */
.default-place-card-container {
  display: none !important;
}
.address-image img {
  width: 100%;
  max-height: 270px;
  object-fit: cover;
  border-radius: 16px;
}

.address-note {
  margin-top: 15px;
  background: #eaf1fb;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.address-note p {
  margin: 0px 0px;
  font-weight: 600;
}
.address-note span {
  font-size: 42px;
  color: #1392ec;
  margin-right: 15px;
}
@media (max-width: 1024px) {
  .address-card {
    flex-direction: row;
  }

  .address-left {
    width: 45%;
    padding: 20px;
  }

  .address-image {
    width: 55%;
  }

  .address-left h3 {
    font-size: 24px;
  }

  .address-left p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .address-card {
    flex-direction: column;
    border-radius: 12px;
  }

  .address-left {
    width: 100%;
    padding: 20px;
    text-align: left;
  }

  .address-image {
    width: 100%;
    height: 220px;
  }

  .address-image img {
    height: 100%;
    object-fit: cover;
  }

  .address-left h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .address-left p {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

.directions {
  margin-top: var(--sec-gap);
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .direction-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.direction-box {
  background: #f5f7fa;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 1.5rem;
}
.direction-box h3 {
  font-weight: 600;
  font-size: 1.2rem;
}

.direction-box p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 0px;
  line-height: 1.7;
}
.parking {
  margin-top: var(--sec-gap);
  margin-bottom: var(--sec-gap);
}

.parking-box {
  display: flex;
  background: #eaf1fb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.parking-left {
  width: 50%;
  padding: 30px;
  display: flex;
  gap: 1.5rem;
}
.parking-left .stat-icon {
  min-width: 3.5rem;
}
.parking-left .stat-icon .material-symbols-outlined {
  font-size: 36px;
}
.parking-text h3 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.parking-text p {
  font-size: 16px;
  color: #6b7280;
  text-decoration: none;
  margin: 0px;
}
.parking-img {
  width: 50%;
  max-height: 270px;
}

.parking-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1392ec;
}
.add-text h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #fff;
}

.add-text p {
  font-size: 18px;
  color: #ececed;
  margin-bottom: 0px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .parking-left {
    width: 55%;
    padding: 20px;
  }

  .parking-img {
    width: 45%;
  }

  .parking-text h3 {
    font-size: 22px;
  }

  .parking-text p {
    font-size: 14px;
  }

  /* .parking .stat-icon {
    width: 45px;
    height: 45px;
  } */
}
@media (max-width: 768px) {
  .parking-box {
    flex-direction: column;
  }

  .parking-left {
    width: 100%;
    padding: 20px;
  }

  .parking-img {
    width: 100%;
    height: 220px;
  }

  .parking-img img {
    height: 100%;
  }

  .parking-text h3 {
    font-size: 20px;
  }

  .parking-text p {
    font-size: 14px;
  }
}
.sec-head {
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}

/* @media (min-width: 768px) {
  .sec-head {
    margin: 0 auto 4rem;
  }
} */

.sec-head h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.sec-head h2 span {
  color: #1392ec;
}
.sec-head p {
  color: #64748b;
  margin: 0px;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-div li {
  margin-left: 1.5rem;
}
