:root {
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/* ============================================ */
/*       Google Maps & Contact Box              */
/* ============================================ */

.map-contact-section {
  padding: clamp(2.5rem, 5vw, 4rem) 1rem;
}

.map-contact-box {
  display: flex;
  gap: 2rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
}

.map-contact-map {
  flex: 1 1 55%;
  min-height: 350px;
}

.map-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  border-radius: 12px 0 0 12px;
}

.map-contact-info {
  flex: 1 1 40%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.map-contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--headerColor);
  margin: 0 0 0.25rem 0;
}

.map-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.map-contact-detail i {
  font-size: 1.25rem;
  color: var(--primaryLight);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.map-contact-detail p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--bodyTextColor);
}

.map-contact-detail a {
  color: var(--bodyTextColor);
  text-decoration: none;
}

.map-contact-detail a:hover {
  color: var(--primaryLight);
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  align-self: flex-start;
}

.map-directions-btn i {
  font-size: 1.1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .map-contact-box {
    flex-direction: column;
  }

  .map-contact-map {
    min-height: 280px;
  }

  .map-contact-map iframe {
    min-height: 280px;
    border-radius: 12px 12px 0 0;
  }

  .map-contact-info {
    padding: 1.5rem;
  }
}
