/* GREG BARROW - CONSULTATION ARCHITECTURE (LEFT-CENTER-RIGHT) 
   Syncs with: greg-variant.css (70% width / 1.35rem text)
*/

/* 1. SAFETY BANNER */
.safety-alert {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    border-left: 8px solid #DC2626;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.alert-tag {
    display: block;
    color: #DC2626;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.safety-alert p {
    font-size: 1.05rem;
    color: #991B1B;
    line-height: 1.4;
}

/* 2. TOP CONTAINER: SATIN COBALT */
.intake-header-panel {
    margin-bottom: 20px;
}

.satin-cobalt-box {
    background: linear-gradient(135deg, #1E3A8A 0%, #172554 100%);
    padding: 50px 70px;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.header-label {
    color: #93C5FD;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    display: block;
}

.satin-cobalt-box h1 {
    font-size: 2.6rem;
    font-weight: 300;
    text-transform: uppercase;
    margin: 5px 0;
}

.accent-rule-white {
    width: 70px;
    height: 4px;
    background: #2563EB;
    margin: 15px 0 25px 0;
}

.calm-statement {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.6;
    color: #E2E8F0;
}

/* 3. LOGISTICS PANEL (THE COMMAND CENTER) */
.intake-logistics-panel {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.1);
    padding: 45px 60px;
}

.logistics-flex {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    gap: 40px;
}

.logistics-col {
    flex: 1;
}

.logistics-col.center {
    flex: 0 0 320px; 
    text-align: center;
}

.logistics-col.right {
    text-align: right;
}

/* LABELS & TEXT */
.label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #1E3A8A;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.detail-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: #475569;
    line-height: 1.4;
}

/* STYLIZED ACTION BUTTON */
.btn-primary-action {
    display: block;
    width: 100%;
    background-color: #2563EB !important; 
    color: #FFFFFF !important;
    text-decoration: none;
    padding: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.btn-primary-action:hover {
    background-color: #1D4ED8 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-subtext {
    display: block;
    margin-top: 10px;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #94A3B8;
    letter-spacing: 1.5px;
}

/* 4. MODAL & OVERLAY - FIXED FOR IFRAME HEIGHT */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; pointer-events: none;
    transition: 0.3s;
    z-index: 2000;
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-container {
    width: 90%; 
    max-width: 900px;
    height: 90vh; /* Consistent popup size */
    background: #FFFFFF;
    position: relative;
    display: flex; /* Required to push iframe to full height */
    flex-direction: column;
}

.close-btn {
    position: absolute; 
    top: -55px; /* Positioned above white box on PC */
    right: 0;
    font-size: 3rem; 
    border: none; 
    background: none; 
    cursor: pointer; 
    color: #FFFFFF;
    line-height: 1;
}

.iframe-container { 
    flex-grow: 1; /* Forces container to fill the 90vh */
    width: 100%; 
    overflow: hidden; 
}

iframe { 
    width: 100%; 
    height: 100%; 
    border: none;
    display: block;
}
/* REFINED: High-Visibility Contact Narrative */
.contact-narrative-prominent {
    font-size: 1.2rem; /* 1px bigger than the previous version */
    line-height: 1.6;
    color: #2563EB; /* Signature Precision Blue */
    text-align: center;
    max-width: 320px; /* Slightly wider to accommodate larger text */
    margin: 0 auto;
    font-weight: 500; /* Medium weight for better readability */
    letter-spacing: 0.5px;
}

.contact-narrative-prominent strong {
    color: #1D4ED8; /* Darker Cobalt for specific emphasis */
    font-weight: 800;
    text-transform: uppercase;
}

/* MOBILE REFACTOR */
@media (max-width: 1024px) {
    .logistics-flex { flex-direction: column; text-align: center; gap: 40px; }
    .logistics-col.right { text-align: center; }
    .logistics-col.center { width: 100%; flex: none; }
    .satin-cobalt-box { padding: 40px 25px; text-align: center; }
    
    .modal-container {
        height: 100%;
        width: 100%;
    }
    
    .close-btn {
        top: 10px;
        right: 15px;
        color: #0F172A;
        font-size: 2.5rem;
    }
}