/* :: 16.0 Contact Area CSS */
.contact-content-area {
  position: relative;
  z-index: 50;
  box-shadow: var(--shadow-lg); }

.contact-content {
  position: relative;
  z-index: 2; }
  .contact-content h4 {
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
    font-size: 45px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .contact-content h4 {
        font-size: 36px; } }
    @media only screen and (max-width: 767px) {
      .contact-content h4 {
        font-size: 30px; } }
  .contact-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl); }
    @media only screen and (max-width: 767px) {
      .contact-content p {
        font-size: var(--font-size-base); } }
  .contact-content .single-contact-info {
    position: relative;
    margin-bottom: var(--spacing-2xl); }
    .contact-content .single-contact-info:last-child {
      margin-bottom: 0; }
    .contact-content .single-contact-info h6 {
      font-size: var(--font-size-md);
      color: var(--color-text-lighter);
      font-weight: var(--font-weight-medium); }
      @media only screen and (max-width: 767px) {
        .contact-content .single-contact-info h6 {
          font-size: var(--font-size-base); } }
    .contact-content .single-contact-info h4 {
      font-size: var(--font-size-xl);
      margin-bottom: 0; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .contact-content .single-contact-info h4 {
          font-size: var(--font-size-lg); } }
      @media only screen and (max-width: 767px) {
        .contact-content .single-contact-info h4 {
          font-size: var(--font-size-base); } }

/* Contact link interactive styles */
.contact-link-wrapper {
    flex: 1;
}

.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.contact-link:hover {
    color: var(--color-primary, #cf1b24);
    transform: translateX(5px);
}

.contact-icon {
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Ensure the contact info layout remains consistent */
.single-contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px !important;
}

.single-contact-info h6 {
    min-width: 100px;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .single-contact-info {
        flex-direction: column;
    }

    .single-contact-info h6 {
        min-width: auto;
        margin-bottom: 5px;
    }

    .contact-link {
        padding: 8px 0;
    }
}

/* Google Maps iframe */
.map-area iframe {
    border: 0;
    width: 100%;
}
