/* PAGE-SPECIFIC STYLES FOR THE CONTACT PAGE */
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  :root {
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 4.5vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75em, 7.82vw, 6.25em) 1rem;
  }
  #cs-contact {
    padding: var(--sectionPadding);
    font-family: "Roboto", "Arial", sans-serif;
  }
  #cs-contact .cs-container {
    margin: auto;
    /* changes to 1280px at desktop */
    max-width: 50rem;
    width: 100%;
  }
  #cs-contact .cs-contact-cards-wrapper {
    width: 100%;
  }
  #cs-contact .cs-content {
    width: 100%;
  }
  #cs-contact .cs-topper {
    /* 8px - 12px */
    margin-bottom: clamp(0.5rem, 1.4vw, 0.75rem);
    text-align: left;
    color: var(--footerBg);
    font-weight: 700;
  }
  #cs-contact .cs-title {
    max-width: 50rem;
    text-align: left;
  }
  #cs-contact .cs-text {
    margin: 0 auto 0 0;
    /* 40px - 48px */
    margin-bottom: clamp(2.5rem, 6.3vw, 3rem);
    /* 404px - 522px */
    max-width: clamp(25.25rem, 30vw, 32.625rem);
    text-align: left;
  }
  /* Contact Cards Grid */
  #cs-contact .cs-contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  @media (min-width: 480px) {
    #cs-contact .cs-contact-cards {
      grid-template-columns: 1fr 1fr;
    }
  }
  #cs-contact .cs-contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }
  #cs-contact .cs-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  #cs-contact .cs-contact-card .cs-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 1rem;
    color: #fff;
  }
  #cs-contact .cs-card-call .cs-card-icon {
    background: var(--footerBg);
  }
  #cs-contact .cs-card-whatsapp .cs-card-icon {
    background: #25D366;
    color: #fff;
  }
  #cs-contact .cs-card-email .cs-card-icon {
    background: var(--footerBg);
  }
  #cs-contact .cs-card-sms .cs-card-icon {
    background: var(--footerBg);
  }
  #cs-contact .cs-contact-card .cs-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
  }
  #cs-contact .cs-contact-card .cs-card-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--bodyTextColor);
    margin: 0 0 0.75rem 0;
  }
  #cs-contact .cs-contact-card .cs-card-link,
  #cs-contact .cs-contact-card .cs-card-meta {
    font-size: 0.875rem;
    color: var(--bodyTextColor);
    margin-bottom: 1rem;
    flex-grow: 1;
  }
  #cs-contact .cs-contact-card .cs-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    background: var(--footerBg);
    color: var(--bodyTextColorWhite);
    transition: background 0.2s, filter 0.2s;
  }
  #cs-contact .cs-card-whatsapp .cs-card-btn {
    background: #25D366;
  }
  #cs-contact .cs-contact-card:hover .cs-card-btn {
    filter: brightness(1.08);
  }
  #cs-contact .cs-contact-card .cs-card-btn-outline {
    background: transparent;
    color: var(--footerBg);
    border: 2px solid var(--footerBg);
  }
  #cs-contact .cs-contact-card:hover .cs-card-btn-outline {
    background: var(--footerBg);
    color: var(--bodyTextColorWhite);
    filter: none;
  }
  #cs-contact .cs-right-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  #cs-contact .cs-image-wrap {
    border-radius: 0.5rem 0.5rem 0 0;
    overflow: hidden;
  }
  #cs-contact .cs-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  #cs-contact .cs-contact-info-below {
    background: #f8f8f8;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: 0 0 0.5rem 0.5rem;
    border: 1px solid #eee;
    border-top: none;
  }
  #cs-contact .cs-contact-info-below .cs-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
  }
  #cs-contact .cs-contact-info-below .cs-info-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--bodyTextColor);
    margin: 0 0 1rem 0;
  }
  #cs-contact .cs-contact-info-below .cs-contact-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
  }
  #cs-contact .cs-contact-info-below .cs-details-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--footerBg);
    margin: 0 0 0.5rem 0;
  }
  #cs-contact .cs-contact-info-below .cs-detail-link {
    display: block;
    font-size: 0.9375rem;
    color: var(--headerColor);
    text-decoration: none;
    margin-bottom: 0.25rem;
  }
  #cs-contact .cs-contact-info-below .cs-detail-link:hover {
    color: var(--footerBg);
    text-decoration: underline;
  }
}
/* Tablet - 700px */
@media only screen and (min-width: 43.75em) {
  #cs-contact .cs-contact-cards {
    gap: 1.5rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-contact .cs-container {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    max-width: 80rem;
    gap: 5rem;
  }
  #cs-contact .cs-contact-cards-wrapper {
    max-width: 39.375rem;
    flex: 1;
  }
  #cs-contact .cs-right-section {
    max-width: 33.875rem;
    width: 40%;
    flex: none;
    min-height: 0;
  }
  #cs-contact .cs-right-section .cs-image-wrap {
    flex: 1;
    min-height: 12rem;
    display: flex;
  }
  #cs-contact .cs-right-section .cs-image-wrap picture,
  #cs-contact .cs-right-section .cs-image-wrap img {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #cs-contact .cs-text,
  body.dark-mode #cs-contact .cs-title {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-contact .cs-contact-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
  }
  body.dark-mode #cs-contact .cs-contact-card .cs-card-title,
  body.dark-mode #cs-contact .cs-contact-card .cs-card-desc,
  body.dark-mode #cs-contact .cs-contact-card .cs-card-link,
  body.dark-mode #cs-contact .cs-contact-card .cs-card-meta {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-contact .cs-contact-info-below {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
  }
  body.dark-mode #cs-contact .cs-contact-info-below .cs-info-title,
  body.dark-mode #cs-contact .cs-contact-info-below .cs-info-text,
  body.dark-mode #cs-contact .cs-contact-info-below .cs-detail-link {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-contact .cs-contact-info-below .cs-contact-details {
    border-top-color: rgba(255, 255, 255, 0.15);
  }
}

/*# sourceMappingURL=contact.css.map */
