/* ============================================
   ALBASAER — CONTACT PAGE CSS (English / LTR)
   Figma: vmTA4IVgGrXqZYp0eeWe2h  node 430-306
   ============================================ */

/* ── Local variables ── */
:root {
    --ct-section-pad:     80px;
    --ct-section-pad-sm:  48px;
    --ct-container:       1200px;
    --ct-radius:          16px;
    --ct-radius-sm:       8px;
    --ct-radius-map:      12px;
    --ct-shadow:          0 1px 3px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.06);
    --ct-border:          #e5e7eb;
    --ct-bg-faq:          #f9fafb;
    --ct-icon-bg:         rgba(138, 21, 56, .08);
    --ct-input-border:    #e5e7eb;
    --ct-input-focus-shadow: 0 0 0 3px rgba(138, 21, 56, .12);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.ct-breadcrumb {
    padding: 24px 0 0;
    font-size: 14px;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ct-breadcrumb a {
    color: var(--clr-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.ct-breadcrumb a:hover {
    color: var(--clr-brand);
}

.ct-breadcrumb__sep {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1;
}

.ct-breadcrumb__current {
    color: var(--clr-text);
    font-weight: 500;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.ct-page-header {
    padding: 40px 0 48px;
}

.ct-page-header__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1.2;
    margin-bottom: 12px;
}

.ct-page-header__subtitle {
  font-size: 15px;
  color: #6A7282;
  font-weight:400;
  line-height: 1.6;
  max-width: 664px;
  margin: 0;
}

/* ============================================
   CONTACT SECTION (info card + form card)
   ============================================ */
.ct-contact-section {
    padding-bottom: 70px;
}

/* ── Shared card ── */
.ct-info-card,
.ct-form-card {
    background: #fff;
    border-radius: var(--ct-radius);
    box-shadow: var(--ct-shadow);
    padding: 32px;
    height: 100%;
}
.ct-map-wrap {
    margin-top: 24px;
}
.ct-info-card{
    height:auto;
}
/* ============================================
   INFO CARD
   ============================================ */
.ct-info-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 28px;
}

/* Contact item row */
.ct-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.ct-info-item:last-of-type {
    margin-bottom: 0;
}

.ct-info-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ct-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-brand);
}

.ct-info-item__icon svg,
.ct-info-item__icon i {
    width: 18px;
    height: 18px;
    font-size: 16px;
    color: var(--clr-brand);
}

.ct-info-item__body {
    flex: 1;
    min-width: 0;
}

.ct-info-item__label {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-text);
    line-height:1.5;
    margin-bottom: 4px;
}

.ct-info-item__value {
  font-size: 14px;
  color: #6A7282;
  line-height: 1.5;
  font-weight:400;
  margin: 0;
}

.ct-info-item__value a {
    color: var(--clr-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.ct-info-item__value a:hover {
    color: var(--clr-brand);
}

/* Map */
.ct-map-wrap {
    margin-top: 4px;
    overflow: hidden;
    line-height: 0;
    position: relative;
}

.ct-map-open-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-brand);
    text-decoration: none;
    margin-bottom: 10px;
    transition: opacity var(--transition);
}

.ct-map-open-link:hover {
    opacity: .75;
    color: var(--clr-brand);
}

.ct-map-open-link svg {
    width: 14px;
    height: 14px;
}

.ct-map-iframe {
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
  border-radius: 14px;
  border: 1px solid #F3F4F6;
  background: #FFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10);
  margin-top: 22px;
}

/* ============================================
   FORM CARD
   ============================================ */
.ct-form-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 24px;
}

.ct-form-group {
    margin-bottom: 18px;
}

.ct-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height:1.5;
    color: var(--clr-text);
    margin-bottom: 6px;
}

.ct-form-control {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--clr-text);
    background: #fff;
    border: 1.5px solid var(--ct-input-border);
    border-radius: var(--ct-radius-sm);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    -webkit-appearance: none;
}

.ct-form-control::placeholder {
    color: #9ca3af;
    font-size: 14px;
}

.ct-form-control:focus {
    border-color: var(--clr-brand);
    box-shadow: var(--ct-input-focus-shadow);
}

.ct-form-control:focus-visible {
    outline: none;
}

textarea.ct-form-control {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* Send button */
.ct-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: var(--clr-brand);
    border: none;
    border-radius: var(--ct-radius-sm);
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    margin-top: 4px;
}

.ct-submit-btn:hover:not(:disabled) {
    background: #6d1030;
    box-shadow: 0 4px 16px rgba(138, 21, 56, .3);
}

.ct-submit-btn:active:not(:disabled) {
    transform: translateY(1px);
}

.ct-submit-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.ct-submit-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Form result message */
.ct-form-result {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--ct-radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.ct-form-result.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    display: block;
}

.ct-form-result.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.ct-faq {
/*    padding: var(--ct-section-pad) 0;*/
/*    background: var(--ct-bg-faq);*/
  padding-bottom:45px;
}

.ct-faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.ct-faq__heading {
    font-size: 30px;
    font-weight: 700;
    color: var(--clr-text);
    line-height:1.2;
    margin-bottom: 12px;
}

.ct-faq__desc {
  font-size: 15px;
  color: #6A7282;
  line-height: 1.6;
  max-width: 585px;
  font-weight:400;
  margin: 0 auto;
}

/* Accordion */
.ct-accordion {
    max-width: 800px;
    margin: 0 auto;
}

  .ct-accordion .accordion-item {
    background: transparent;
   margin-bottom:16px;
    border-radius: 14px;
    border: 1px solid #F3F4F6;
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    /*    border-bottom: 1px solid var(--ct-border);*/
  }

.ct-accordion .accordion-item:first-child {
    border-top: 1px solid var(--ct-border);
}

.ct-accordion .accordion-button {
    background: transparent;
    color: var(--clr-text);
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    padding: 20px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ct-accordion .accordion-button::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%234a5565' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform .2s ease;
    margin-left: auto;
}

.ct-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.ct-accordion .accordion-button:not(.collapsed) {
    color: var(--clr-brand);
}

.ct-accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.ct-accordion .accordion-body {
    padding: 0 20px 20px;
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.65;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .ct-page-header__title {
        font-size: 32px;
    }

    .ct-faq__heading {
        font-size: 26px;
    }

    .ct-info-card,
    .ct-form-card {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .ct-page-header {
        padding: 28px 0 36px;
    }

    .ct-page-header__title {
        font-size: 28px;
    }

    .ct-page-header__subtitle {
        font-size: 15px;
    }

    .ct-contact-section {
        padding-bottom: var(--ct-section-pad-sm);
    }

    .ct-info-card,
    .ct-form-card {
        padding: 20px;
    }

/*    .ct-faq {
        padding: var(--ct-section-pad-sm) 0;
    }*/

    .ct-faq__heading {
        font-size: 22px;
    }

    .ct-faq__header {
        margin-bottom: 32px;
    }

    .ct-accordion .accordion-button {
        font-size: 15px;
/*        padding: 16px 0;*/
    }
}
