/* Contact Page Styles */
.page-contact-hero {
    padding: 50px 0 150px 0;
}

.contact-info-row {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    margin-bottom: 60px;
}

.contact-col-left {
    flex: 0 0 calc(33.333% - 40px);
}

.contact-page-title {
  color: #000;
  font-family: Golden;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 2.5px;
  margin-top: 0;
  margin-bottom: 25px;
}

.contact-page-intro {
  color: #000;
  font-family: Outfit;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px;
}

.contact-page-intro p {
    margin: 0;
}

.contact-col-right {
    flex: 1;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 100px;
  margin-bottom: 40px;
}

.contact-item-title {
    color: #000;
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    margin: 0 0 7px 0;
}

.contact-item-value,
.contact-item-value p {
    color: #000;
    font-family: Outfit;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 27px;
    margin: 0;
}

.contact-item-value a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-value a:hover {
    color: #F76A32;
}

.contact-item-value a.contact-email-link {
    color: #F76A32;
}
.contact-item-value a.contact-email-link:hover {
    opacity: 0.8;
}

.contact-parking-item {
    max-width: 800px;
}

.contact-map-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 550px;
    border: 0;
    display: block;
}

/* Responsive Overrides */
@media screen and (max-width: 1279px) {
    .contact-info-row {
        gap: 50px;
        flex-direction: column;
    }
    .contact-col-left {
        flex: 0 0 35%;
    }
    .contact-page-title {
        font-size: 40px;
        line-height: normal;
        margin-bottom: 5px;
    }
    .page-contact-hero {
        padding: 40px 0 100px 0;
    }
    .contact-map-wrapper iframe {
        height: 420px;
    }
}

@media screen and (max-width: 726px) {
    .page-contact-hero {
        padding: 20px 0 50px 0;
    }
    .contact-info-row {
        flex-direction: column;
        gap: 15px;
    }
    .contact-col-left {
        flex: none;
        width: 100%;
    }
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    .contact-page-title {
        font-size: 27px;
    }
    .contact-page-intro {
        font-size: 18px;
    }
    .contact-item-title {
        font-size: 18px;
    }
    .contact-item-value, .contact-item-value p {
        font-size: 15px;
    }
}
