/* Contact Us page — reference match */

.page-contact {
    background: #FEFAF5;
    color: #2D2521;
}

/* ---- Hero ---- */
.ct-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 5.5rem 0 4rem;
    background-color: #FEFAF5;
    background-image: var(--ct-hero-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    isolation: isolate;
}

.ct-hero > .container {
    width: 100%;
}

.ct-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 58rem;
    margin: 0 auto;
}

.ct-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C58F3E;
    margin-bottom: 1.15rem;
}

.ct-hero-label-line {
    position: relative;
    width: 42px;
    height: 1px;
    background: #C58F3E;
    opacity: 0.85;
}

.ct-hero-label-line i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: #C58F3E;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ct-hero-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.85rem, 5.4vw, 4.05rem);
    font-weight: 700;
    color: #001B3D;
    margin: 0 0 1.05rem;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.ct-hero-sub {
    margin: 0 auto 2.85rem;
    max-width: 36rem;
    color: #5A5A63;
    font-size: 1.02rem;
    line-height: 1.75;
    white-space: pre-line;
}

.ct-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 56rem;
    margin: 0 auto;
    text-align: left;
}

.ct-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.25rem 1.2rem;
    position: relative;
}

.ct-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: rgba(0, 27, 61, 0.12);
}

.ct-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 0;
    color: #C58F3E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 6px 18px rgba(45, 37, 33, 0.1);
    line-height: 0;
}

.ct-feature-icon svg {
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.ct-feature-copy {
    min-width: 0;
    padding-top: 0.15rem;
}

.ct-feature-copy strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    color: #001B3D;
    margin-bottom: 0.28rem;
    line-height: 1.25;
}

.ct-feature-copy span {
    display: block;
    font-size: 0.82rem;
    color: #7A7A84;
    line-height: 1.45;
}

@media (max-width: 991.98px) {
    .ct-hero {
        min-height: 0;
        background-position: 22% center;
        padding: 4.25rem 0 3rem;
    }

    .ct-features {
        grid-template-columns: 1fr 1fr;
        gap: 1.35rem 0.5rem;
        max-width: 32rem;
    }

    .ct-feature:nth-child(2)::after,
    .ct-feature:nth-child(4)::after {
        display: none;
    }

    .ct-feature:nth-child(1)::after,
    .ct-feature:nth-child(3)::after {
        display: block;
    }
}

@media (max-width: 575.98px) {
    .ct-hero {
        background-size: auto 100%;
        background-position: left center;
        padding: 3.5rem 0 2.5rem;
    }

    .ct-features {
        grid-template-columns: 1fr;
        gap: 1.15rem;
        max-width: 18rem;
        margin-left: auto;
        margin-right: auto;
    }

    .ct-feature {
        padding: 0;
    }

    .ct-feature::after {
        display: none !important;
    }
}

/* ---- Main layout ---- */
.ct-main {
    padding: 1rem 0 3.5rem;
    background: #fff;
}

.ct-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
}

.ct-card {
    background: #fff;
    border: 1px solid rgba(45, 37, 33, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(45, 37, 33, 0.06);
    padding: 1.65rem 1.55rem 1.75rem;
}

.ct-card-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #2D2521;
    margin: 0 0 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.ct-card-star {
    color: #E88C1B;
    font-size: 0.95rem;
}

.ct-alert {
    border-radius: 10px;
    padding: 0.75rem 0.95rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ct-alert--ok {
    background: rgba(34, 160, 90, 0.1);
    color: #1B7A45;
}

.ct-alert--err {
    background: rgba(200, 50, 50, 0.1);
    color: #A32020;
}

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ct-field label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: #2D2521;
    margin-bottom: 0.4rem;
}

.ct-field label span { color: #E88C1B; }

.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    border: 1px solid rgba(45, 37, 33, 0.14);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-size: 0.94rem;
    color: #2D2521;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.ct-field textarea {
    resize: vertical;
    min-height: 140px;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    outline: none;
    border-color: #E88C1B;
    box-shadow: 0 0 0 3px rgba(232, 140, 27, 0.15);
}

.ct-secure {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    background: #FFF6E8;
    color: #8A5A22;
    font-size: 0.84rem;
}

.ct-secure svg { color: #E88C1B; flex-shrink: 0; }

.ct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.8rem 1.25rem;
    border-radius: 10px;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.ct-btn svg {
    display: block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.ct-btn:hover { transform: translateY(-1px); }

.ct-btn--solid {
    background: #E88C1B;
    color: #fff;
}

.ct-btn--full { width: 100%; }

/* Get in touch */
.ct-touch-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ct-touch-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.ct-touch-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(232, 140, 27, 0.55);
    color: #E88C1B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(232, 140, 27, 0.06);
}

.ct-touch-list strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #2D2521;
}

.ct-touch-list p {
    margin: 0;
    font-size: 0.88rem;
    color: #6B625A;
    line-height: 1.55;
}

.ct-touch-list a {
    color: #2D2521;
    text-decoration: none;
    font-weight: 600;
}

.ct-touch-list a:hover { color: #E88C1B; }

/* ---- CTA ---- */
.ct-cta {
    padding: 0 0 3.25rem;
    background: #fff;
}

.ct-cta-bar {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr);
    gap: 1.25rem 1.5rem;
    align-items: center;
    padding: 1.15rem 1.35rem 1.15rem 1rem;
    border-radius: 18px;
    background: #FDFBF7;
    border: 1px solid rgba(45, 37, 33, 0.08);
    overflow: hidden;
}

.ct-cta-left {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem 1.25rem;
    align-items: center;
    min-width: 0;
}

.ct-cta-media {
    width: 168px;
    height: 148px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F7F1E8;
}

.ct-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.ct-cta-copy h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    margin: 0 0 0.4rem;
    color: #001B3D;
    font-weight: 700;
    line-height: 1.2;
}

.ct-cta-copy p {
    margin: 0 0 1rem;
    color: #3D4658;
    font-size: 0.94rem;
    line-height: 1.55;
    max-width: 40ch;
}

.ct-cta-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    min-width: 0;
    border-left: 1px solid rgba(0, 27, 61, 0.1);
    padding-left: 0.35rem;
}

.ct-cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
    padding: 0.35rem 0.85rem;
    position: relative;
}

.ct-cta-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: rgba(0, 27, 61, 0.1);
}

.ct-cta-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    color: #D87B1C;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
    background: radial-gradient(circle at 50% 40%, #FFF7EE, #F3E6D4);
    box-shadow: inset 0 0 0 1px rgba(216, 123, 28, 0.12);
}

.ct-cta-stat-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.ct-cta-stat-copy {
    min-width: 0;
}

.ct-cta-stat-copy strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #001B3D;
    line-height: 1.15;
}

.ct-cta-stat-copy span {
    display: block;
    font-size: 0.8rem;
    color: #5A6270;
    line-height: 1.35;
    margin-top: 0.2rem;
}

@media (max-width: 1199.98px) {
    .ct-cta-bar {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .ct-cta-stats {
        border-left: 0;
        border-top: 1px solid rgba(0, 27, 61, 0.1);
        padding: 1.15rem 0 0;
    }
}

@media (max-width: 767.98px) {
    .ct-cta-left {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .ct-cta-media {
        width: 180px;
        height: 150px;
    }

    .ct-cta-copy p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .ct-cta-stats {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .ct-cta-stat {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        padding: 0.35rem 0;
    }

    .ct-cta-stat:not(:last-child)::after {
        display: none;
    }

    .ct-cta-stat:not(:last-child) {
        border-bottom: 1px solid rgba(0, 27, 61, 0.08);
        padding-bottom: 0.85rem;
    }
}

/* ---- Map ---- */
.ct-map {
    padding: 0 0 4.5rem;
    background: #fff;
}

.ct-map-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(45, 37, 33, 0.08);
    min-height: 360px;
    background: #EDE7DF;
}

.ct-map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.ct-map-card {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    max-width: 280px;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 12px 28px rgba(45, 37, 33, 0.14);
}

.ct-map-card strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: #2D2521;
}

.ct-map-card p {
    margin: 0 0 0.65rem;
    font-size: 0.84rem;
    color: #6B625A;
    line-height: 1.5;
}

.ct-map-card a {
    color: #E88C1B;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.ct-map-card a:hover { color: #C45A12; }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .ct-layout,
    .ct-form-row { grid-template-columns: 1fr; }
    .ct-map-card {
        position: static;
        max-width: none;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid rgba(45, 37, 33, 0.08);
    }
}

@media (max-width: 767.98px) {
    .ct-main { padding-bottom: 2.5rem; }
    .ct-map { padding-bottom: 3.25rem; }
    .ct-map-wrap iframe { height: 300px; }
}
