/* ══════════════════════════════════════════
   CONTACT PAGE SPECIFIC STYLES
══════════════════════════════════════════ */

/* Page Hero (Dark Overrides if needed) */
.page-hero {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    padding: clamp(52px, 8vw, 96px) 0;
    text-align: center;
    color: #fff;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(201, 168, 76, 0.18) 0%, transparent 65%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero .label-tag {
    color: var(--gold-light);
    margin-bottom: 14px;
}

.page-hero h1 {
    font-family: var(--fd);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.05;
    margin-bottom: 14px;
}

.page-hero h1 em {
    color: var(--gold-light);
    font-style: italic;
}

.page-hero p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.52);
    letter-spacing: 0.06em;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.8;
}

.breadcrumb-trail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.breadcrumb-trail i {
    font-size: 9px;
}

.breadcrumb-trail span {
    color: rgba(255, 255, 255, 0.65);
}

/* Contact Cards */
.contact-cards-sec {
    background: var(--white);
    padding: 56px 0;
    border-bottom: 1px solid var(--border);
}

.contact-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow var(--ease), border-color var(--ease);
    height: 100%;
}

.contact-card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    margin: 0 auto 16px;
    transition: all var(--ease);
}

.contact-card:hover .contact-card-icon {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.contact-card h5 {
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-card a {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.03em;
    border-bottom: 1px solid var(--gold-light);
    padding-bottom: 1px;
    transition: border-color var(--ease);
}

.contact-card a:hover {
    border-color: var(--gold);
}

.availability {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--success);
    background: rgba(39, 115, 74, 0.08);
    border: 1px solid rgba(39, 115, 74, 0.18);
    padding: 3px 10px;
    margin-top: 6px;
}

.availability.busy {
    color: var(--mid-grey);
    background: var(--cream);
    border-color: var(--border);
}

/* Main Section Layout */
.contact-main-sec {
    padding: 72px 0;
    background: var(--cream);
}

.contact-form-wrap {
    background: var(--white);
    padding: clamp(28px, 5vw, 52px);
}

.form-sec-title {
    font-family: var(--fd);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.form-sec-title em {
    color: var(--gold);
    font-style: italic;
}

.form-sec-sub {
    font-size: 13px;
    color: var(--mid-grey);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Form Elements */
.f-group {
    margin-bottom: 22px;
}

.f-group label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mid-grey);
    margin-bottom: 8px;
    transition: color var(--ease);
}

.f-group:focus-within label {
    color: var(--gold);
}

.f-group input,
.f-group select,
.f-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border);
    outline: none;
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 300;
    padding: 10px 0;
    background: transparent;
    color: var(--charcoal);
    transition: border-color var(--ease);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    resize: none;
}

.f-group input::placeholder,
.f-group textarea::placeholder {
    color: var(--light-grey);
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
    border-bottom-color: var(--gold);
}

.f-group select {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5' stroke='%236b6b6b' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 4px center;
    cursor: pointer;
}

.f-group.has-error input,
.f-group.has-error select,
.f-group.has-error textarea {
    border-bottom-color: var(--error);
}

.f-error-msg {
    display: none;
    font-size: 11px;
    color: var(--error);
    margin-top: 5px;
}

.f-group.has-error .f-error-msg {
    display: block;
}

/* Consent checkbox */
#cfConsent {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1px solid var(--border);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    margin-top: 1px;
    flex-shrink: 0;
    transition: all var(--ease);
    position: relative;
    background: transparent;
}

#cfConsent:hover {
    border-color: var(--gold);
}

#cfConsent:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.15);
}

#cfConsent:checked {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

#cfConsent:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.btn-submit {
    width: 100%;
    background: var(--charcoal);
    color: #fff;
    border: 1px solid var(--charcoal);
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 15px;
    cursor: pointer;
    transition: all var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-submit .btn-arrow {
    transition: transform var(--ease);
}

.btn-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px 0;
}

.form-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(39, 115, 74, 0.08);
    border: 1px solid rgba(39, 115, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--success);
    margin: 0 auto 18px;
}

.form-success h4 {
    font-family: var(--fd);
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 8px;
}

.form-success h4 em {
    color: var(--gold);
    font-style: italic;
}

.form-success p {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.8;
}

/* Contact Info Sidebar */
.contact-info {
    padding: clamp(20px, 4vw, 40px) 0;
}

.info-block {
    margin-bottom: 36px;
}

.info-block h6 {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 14px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.info-row i {
    font-size: 16px;
    color: var(--gold);
    margin-top: 1px;
    flex-shrink: 0;
}

.info-row p {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.7;
}

.info-row a {
    color: var(--gold);
}

.gold-sep {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

/* Map Placeholder */
.map-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1208, #2d1e0f);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 60%);
}

.map-label {
    position: relative;
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.map-label i {
    font-size: 28px;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.map-label p {
    font-size: 12px;
    letter-spacing: 0.12em;
}

.map-pin {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    margin-top: 14px;
    cursor: pointer;
}

/* FAQ Section */
.faq-sec {
    background: var(--white);
    padding: 72px 0;
}

.faq-sec-head {
    text-align: center;
    margin-bottom: 48px;
}

.faq-sec-head h2 {
    font-family: var(--fd);
    font-size: clamp(26px, 3.8vw, 40px);
    font-weight: 300;
    letter-spacing: 0.04em;
}

.faq-sec-head h2 em {
    color: var(--gold);
    font-style: italic;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 4px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.faq-q span {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: color var(--ease);
}

.faq-q:hover span {
    color: var(--gold);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--mid-grey);
    flex-shrink: 0;
    transition: all var(--ease);
}

.faq-item.open .faq-icon {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 4px 20px;
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.85;
    max-width: 680px;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-a a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold-light);
    padding-bottom: 1px;
}

/* ── CONTACT SUCCESS MODAL ── */
.contact-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
}

.contact-modal-box {
    background: var(--white);
    max-width: 440px;
    width: 100%;
    padding: 52px 40px 44px;
    text-align: center;
    position: relative;
    animation: cmFadeUp .3s ease both;
    border-top: 3px solid var(--gold);
}

@keyframes cmFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cm-close-x {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--light-grey);
    cursor: pointer;
    line-height: 1;
    transition: color var(--ease);
    padding: 0;
}

.cm-close-x:hover {
    color: var(--charcoal);
}

.cm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
    margin: 0 auto 22px;
}

.cm-title {
    font-family: var(--fd);
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.cm-title em {
    color: var(--gold);
    font-style: italic;
}

.cm-body {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.8;
    margin-bottom: 28px;
}

.cm-btn {
    background: var(--charcoal);
    color: #fff;
    border: 1px solid var(--charcoal);
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 13px 36px;
    cursor: pointer;
    transition: all var(--ease);
}

.cm-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}