/* ===== Contact Page ===== */
.contact-page {
    --contact-bronze: #9A6B3C;
    --contact-cream: #FAF8F5;
    --contact-charcoal: #1E1C19;
    --contact-body: #6A645C;
    --contact-border: #E8E2D8;
}

/* ===== Hero ===== */
.contact-hero {
    position: relative;
    margin-top: var(--header-height);
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
}

.contact-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 14, 0.58);
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 0 40px;
    width: 100%;
    min-height: 300px;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 16px;
}

.contact-breadcrumb a,
.contact-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.75);
}

.contact-breadcrumb a:hover {
    color: #FFFFFF;
}

.contact-breadcrumb .current {
    color: #FFFFFF;
}

.contact-hero-inner h1 {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}

.contact-hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
}

.contact-hero-script {
    position: absolute;
    right: 40px;
    bottom: 36px;
    font-family: var(--font-script);
    font-size: 28px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.12;
    text-align: right;
    pointer-events: none;
}

/* ===== Main Contact Grid ===== */
.contact-main {
    padding: 52px 0 56px;
    background: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 40px;
    align-items: start;
}

/* ===== Form Column ===== */
.contact-tag {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--contact-bronze);
    margin-bottom: 8px;
}

.contact-form-col h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--contact-charcoal);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
}

.contact-intro {
    font-size: 14px;
    line-height: 1.75;
    color: var(--contact-body);
    margin-bottom: 24px;
    max-width: 520px;
}

.contact-form {
    max-width: 560px;
}

.form-field {
    margin-bottom: 12px;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #A39B91;
    pointer-events: none;
}

.input-icon-top {
    top: 14px;
    transform: none;
}

.input-wrap input,
.input-wrap textarea {
    width: 100%;
    padding: 12px 12px 12px 38px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--contact-charcoal);
    background: #FFFFFF;
    border: 1px solid var(--contact-border);
    border-radius: 5px;
    outline: none;
    transition: border-color 0.2s ease;
}

.input-wrap textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 13px;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
    border-color: var(--contact-bronze);
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
    color: #A39B91;
}

.form-submit {
    width: 100%;
    min-height: 42px;
    margin-top: 6px;
    font-size: 12px;
    border-radius: 5px;
}

.form-recaptcha {
    font-size: 10px;
    line-height: 1.5;
    color: #A39B91;
    margin-top: 12px;
}

.form-recaptcha a {
    color: var(--contact-bronze);
    text-decoration: underline;
}

.form-powered {
    margin-top: 10px;
    padding: 8px 12px;
    background: #F3F3F3;
    border: 1px solid #E5E5E5;
    border-radius: 3px;
    font-size: 11px;
    color: #888888;
    text-align: center;
}

.form-powered strong {
    font-weight: 700;
    color: #666666;
    letter-spacing: 0.5px;
}

/* ===== Sidebar ===== */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.office-card {
    background: #FFFFFF;
    border: 1px solid var(--contact-border);
    border-radius: 6px;
    padding: 20px 20px 18px;
    box-shadow: 0 2px 10px rgba(40, 32, 22, 0.04);
}

.office-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0EBE4;
}

.office-card-head svg {
    width: 18px;
    height: 18px;
    color: var(--contact-bronze);
    flex-shrink: 0;
}

.office-card-head h3 {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--contact-charcoal);
}

.office-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.office-list li:last-child {
    margin-bottom: 0;
}

.office-list svg {
    width: 16px;
    height: 16px;
    color: var(--contact-bronze);
    flex-shrink: 0;
    margin-top: 2px;
}

.office-list span {
    font-size: 13px;
    line-height: 1.55;
    color: var(--contact-body);
}

.office-follow {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #F0EBE4;
}

.office-follow > span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--contact-charcoal);
    margin-bottom: 10px;
}

.office-social {
    display: flex;
    gap: 8px;
}

.office-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3A3530;
    border-radius: 50%;
    color: #FFFFFF;
    transition: background 0.2s ease;
}

.office-social a:hover {
    background: var(--contact-bronze);
}

.office-social svg {
    width: 14px;
    height: 14px;
}

/* ===== Map ===== */
.contact-map {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--contact-border);
    line-height: 0;
}

.contact-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

/* ===== Quick Help ===== */
.quick-help-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 12px;
    align-items: start;
    background: var(--contact-cream);
    border: 1px solid #EDE6DC;
    border-radius: 6px;
    padding: 18px 16px;
}

.quick-help-icon {
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contact-bronze);
}

.quick-help-icon svg {
    width: 24px;
    height: 24px;
}

.quick-help-text h4 {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--contact-charcoal);
    margin-bottom: 4px;
}

.quick-help-text p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--contact-body);
    margin-bottom: 12px;
}

.quick-help-action {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.quick-help-btn {
    min-height: 34px;
    padding: 7px 14px;
    font-size: 11px;
    border-radius: 5px;
}

.quick-help-phones {
    font-size: 12px;
    color: var(--contact-body);
}

/* ===== Why Contact Us ===== */
.contact-why {
    background: var(--contact-cream);
    padding: 52px 0 56px;
}

.contact-why-header {
    text-align: center;
    margin-bottom: 36px;
}

.contact-why-tag {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--contact-bronze);
    margin-bottom: 10px;
}

.contact-why-header h2 {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 500;
    color: var(--contact-charcoal);
    line-height: 1.15;
    letter-spacing: -0.2px;
}

.contact-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.why-item {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid #E0DAD2;
}

.why-item:last-child {
    border-right: none;
}

.why-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contact-bronze);
}

.why-icon svg {
    width: 28px;
    height: 28px;
}

.why-item h4 {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--contact-charcoal);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--contact-body);
}

/* ===== CTA Banner ===== */
.contact-cta {
    position: relative;
    overflow: hidden;
}

.contact-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(1px);
    transform: scale(1.03);
}

.contact-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(246, 242, 236, 0.82);
}

.contact-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 130px;
    padding: 28px 0;
}

.contact-cta-text h2 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--contact-charcoal);
    line-height: 1.2;
    margin-bottom: 6px;
}

.contact-cta-text p {
    font-size: 13px;
    color: var(--contact-body);
    max-width: 480px;
    line-height: 1.55;
}

.contact-cta-inner .btn-primary {
    flex-shrink: 0;
    min-height: 42px;
    padding: 10px 22px;
    font-size: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-form {
        max-width: 100%;
    }

    .contact-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0;
    }

    .why-item:nth-child(2) {
        border-right: none;
    }

    .why-item {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .contact-hero-inner h1 {
        font-size: 34px;
    }

    .contact-hero-script {
        display: none;
    }

    .contact-why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-item {
        border-right: none;
        padding: 0;
    }

    .contact-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 0;
    }

    .contact-cta-text p {
        margin: 0 auto;
    }

    .quick-help-action {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .contact-main {
        padding: 40px 0 48px;
    }

    .contact-hero {
        min-height: 300px;
    }

    .contact-form-col h2 {
        font-size: 26px;
    }

    .contact-why-header h2 {
        font-size: 28px;
    }
}
