/* ===== PAGE HERO BASE (not in main.css) ===== */
.page-hero {
    padding: 108px 0 72px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}
.page-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 20px;
}
.page-hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 40px;
}
.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span[aria-current] {
    color: var(--text);
    font-weight: 500;
}

/* ===== CONTACT HERO ===== */
.contact-hero {
    padding-bottom: 56px;
    text-align: left;
}
.contact-hero .page-hero-content {
    max-width: none;
    margin: 0;
    text-align: left;
}
.contact-hero .page-hero-title {
    text-align: left;
}
.contact-hero .page-hero-sub {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 520px;
}
.contact-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: center;
}
.contact-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    min-width: 300px;
}

/* Desktop/mobile visibility toggles */
.contact-hint-mobile  { display: none; }
.contact-hint-desktop { display: block; }
.contact-cta-mobile   { display: none !important; }

/* ===== BIG PHONE CTA ===== */
.contact-big-phone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: rgba(245,158,11,0.07);
    border: 1.5px solid rgba(245,158,11,0.32);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(245,158,11,0.10);
    text-decoration: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.2s;
}
@media (min-width: 861px) {
    .contact-big-phone {
        cursor: default;
        pointer-events: none;
    }
}
@media (max-width: 860px) {
    .contact-big-phone:hover {
        transform: translateY(-2px);
        border-color: rgba(37,99,235,0.36);
        box-shadow: 0 28px 60px rgba(15,23,42,0.22);
    }
}
.contact-big-phone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.contact-phone-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.contact-phone-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b45309;
}
.contact-phone-number {
    font-family: var(--font-body);
    font-size: 1.65rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #92400e;
    line-height: 1;
}
.contact-phone-hint {
    font-size: 0.76rem;
    color: var(--muted);
    margin-top: 2px;
}
.contact-phone-pulse-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 24px;
}
.contact-phone-pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d97706;
    box-shadow: 0 0 0 0 rgba(217,119,6,0.5);
    animation: pulse-ring 2.2s ease infinite;
    flex-shrink: 0;
}
@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(217,119,6,0.5); }
    65%  { box-shadow: 0 0 0 10px rgba(217,119,6,0); }
    100% { box-shadow: 0 0 0 0 rgba(217,119,6,0); }
}
.contact-avail-text {
    font-size: 0.74rem;
    font-weight: 600;
    color: #b45309;
}

/* Text us button */
.contact-text-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius);
    background: rgba(15,23,42,0.05);
    border: 1px solid var(--border);
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.contact-text-btn:hover {
    background: rgba(37,99,235,0.07);
    border-color: rgba(37,99,235,0.3);
    color: var(--cyan);
}

/* ===== CONTACT MAIN SECTION ===== */
.contact-main-section {
    padding: 0 0 96px;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    align-items: stretch;
}

/* ===== LEFT: INFO COLUMN ===== */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 4px 16px rgba(15,23,42,0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.contact-card-title {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

/* Contact methods list */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(203,213,225,0.82);
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.contact-method:hover {
    border-color: rgba(148,163,184,0.86);
    background: rgba(248,250,252,0.94);
    box-shadow: 0 12px 26px rgba(15,23,42,0.08);
}
.contact-method-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #0f766e);
    color: #ffffff;
    flex-shrink: 0;
}
.contact-method-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact-method-label {
    font-size: 0.77rem;
    color: var(--muted);
}
.contact-method-value {
    font-size: 0.93rem;
    font-weight: 600;
    color: #0f172a;
}

/* Trust badges */
.contact-trust-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    color: #334155;
}
.contact-trust-item svg {
    flex-shrink: 0;
}

/* Cities */
.contact-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.contact-city-tag {
    font-size: 0.76rem;
    padding: 4px 10px;
    background: rgba(15,23,42,0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: #475569;
}

/* ===== RIGHT: FORM COLUMN ===== */
.contact-form-col {
    display: flex;
}
.contact-form-col .form-glass {
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    min-height: 100%;
}
.contact-form-col .gd-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contact-form-col .form-glass h3 {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}
.contact-form-col .form-glass > p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 28px;
}
.contact-form-col .contact-message-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contact-form-col #cp-message {
    flex: 1;
    min-height: 170px;
    resize: vertical;
}

/* ===== MOBILE ===== */
@media (max-width: 860px) {
    .contact-hint-mobile  { display: block; }
    .contact-hint-desktop { display: none; }
    .contact-cta-mobile   { display: flex !important; }
    .contact-cta-desktop  { display: none; }
    /* On mobile the phone card becomes tappable — restore pointer */
    .contact-big-phone { cursor: pointer; }
    .contact-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-hero .breadcrumb { justify-content: center; }
    .contact-hero-actions {
        min-width: 0;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .contact-info-col {
        position: static;
    }
    .contact-form-col .form-glass {
        padding: 28px 20px;
    }
}
@media (max-width: 480px) {
    .contact-phone-number {
        font-size: 1.35rem;
    }
}
