/* Extracted from contact.html; shared chrome styles live in base.css. */

/*badge + heading + paragraph + buttons,bg image*/
.hero-section {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: url('contact.png') no-repeat center center;
    background-size: cover;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 23, 57, 0.68);
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding-right: 40px;
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 40px;

    height: 100%;
    box-sizing: border-box;
    overflow: hidden;

    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 950px;
}

.info-pill-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 30px;
    margin-bottom: 15px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-content h1 {
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    line-height: 1.20;
    margin-top: 20px;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}

.hero-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-consultation {
    background-color: var(--brand-red);
    color: var(--white);
    border: 1px solid var(--brand-red);
}

.btn-consultation:hover {
    background-color: #a71212;
    border-color: #a71212;
}

.btn-eligibility {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-eligibility:hover {
    background-color: var(--white);
    color: #010a26;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

.contact-section {
width: 92%;
max-width: 1100px;
margin: 50px auto;
display: flex;
border-radius: 16px;
overflow: hidden;
border: 2px solid var(--brand-red);
position: relative;
}

.contact-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--brand-red), #e8a13d);
z-index: 3;
}

/* --- LEFT DARK PANEL --- */
.contact-info-panel {
    background-color: #1e1e1e;
    color: var(--white);
    width: 38%;
    padding: 40px 32px;
}

.contact-info-panel h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
}

.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--white);
}

.info-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.info-text span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.info-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 22px 0;
}

/* --- RIGHT FORM PANEL --- */
.contact-form-panel {
    background-color: var(--white);
    width: 62%;
    padding: 32px 40px;
    position: relative;
    border-top: 10px solid transparent;
    border-image: linear-gradient(90deg, var(--brand-red), #e8a13d) 1;
}

.form-eyebrow {
    color: var(--brand-red);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.form-subtext {
    color: var(--text-muted);
    font-size: 13.5px;
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 13.5px;
    color: var(--text-dark);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-red);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0l5 6 5-6z' fill='%23475569'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-group textarea {
    resize: none;
    min-height: 46px;
}

.btn-submit {
    width: 100%;
    background-color: var(--brand-red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px 0;
    font-size: 14.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: #a71212;
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }
    .contact-info-panel,
    .contact-form-panel {
        width: 100%;
    }
    .form-row {
        flex-direction: column;
    }
    .contact-info-panel {
        padding: 28px 20px;
    }
    .contact-form-panel {
        padding: 24px 20px;
    }
}


.stats-strip-section {
background-image: url('union.png'); 
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
min-height: 220px;
padding: 0px 0;
width: 100%;
display: flex;
align-items: center;
position: relative;
box-sizing: border-box;
overflow: hidden;
}



.stats-strip-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(3, 23, 66, 0.70); 
z-index: 1;
}

.stats-strip-container {

position: relative;
z-index: 2; 
width: 85%;
max-width: 1300px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;


width: 92%; 
max-width: 1440px; 
margin:  auto;
display: flex;
justify-content: space-between;
align-items: center;

}

.stat-box-item {
flex: 1;
text-align: center;
display: flex;
flex-direction: column;
gap: 10px; 
position: relative;
}
.why-us-section {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}
s
.why-us-eyebrow {
    color: var(--brand-red);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.why-us-heading {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.why-us-card {
    border-radius: 16px;
    padding: 24px 20px;
    text-align: left;
}

.why-us-card.card-red   { background-color: #f6d3d3; }
.why-us-card.card-green { background-color: #c9e9d4; }
.why-us-card.card-gold  { background-color: #f7e3ad; }
.why-us-card.card-peach { background-color: #f9d2c2; }

.why-us-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
}

.why-us-icon.icon-red   { color: #c0392b; }
.why-us-icon.icon-green { color: #1e7a44; }
.why-us-icon.icon-gold  { color: #a3781a; }
.why-us-icon.icon-peach { color: #e2582a; }

.why-us-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.why-us-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 500;
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}
   /* --- STATISTICS HERO ROW --- */
.stats-section {
background: linear-gradient(180deg, rgba(8,18,53,.76) 0%, rgba(8,18,53,.60) 45%, rgba(8,18,53,.86) 100%),
            url('union.png') center/cover no-repeat;
    background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
min-height: 220px;
padding: 0px 0;
width: 100%;
display: flex;
align-items: center;
position: relative;
box-sizing: border-box;
overflow: hidden;
}



.stats-container {
width: 90%;
max-width: 1200px; 
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
background: transparent !important; 
padding: 0; 
}

.stat-item:hover .stat-icon {
border-color: #c91818; 
background-color: rgba(199, 24, 24, 0.15);
transform: translateY(-4px);
}

.stat-item {
flex: 1 1 180px;
min-width: 160px;
text-align: center;
padding: 15px 10px;
}
.stat-icon {
width: 65px;
height: 65px;
border-radius: 50%;
border: 2px solid rgba(255,255,255,0.85);
display: inline-flex;
align-items: center;
justify-content: center;
margin-bottom: 18px;
font-size: 26px;
color: #fff;
transition: all 0.3s ease; 
}

.stat-number {
display: block;
font-size: 28px; 
font-weight: 700;
margin-bottom: 6px;
color: #fff;
font-family: 'sans-serif'; 
}

.stat-label {
display: block;
font-size: 14px;
color: rgba(255,255,255,0.9);
font-weight: 600;
letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
.stats-section {
    background-attachment: scroll; 
    padding: 1px 0;
}
.stats-strip-section {
    background-attachment: scroll;
}
.stats-container { 
    justify-content: center;
    gap: 30px; 
}
.stat-item { flex: 1 1 30%; }
}

@media (max-width: 768px) {
.stat-item { flex: 1 1 45%; }
}

@media (max-width: 480px) {
.stat-item { flex: 1 1 100%; padding: 10px 0; }
.stat-number { font-size: 26px; }
}

/* ======= FAQ Section ======= */
.faq-section {
max-width: 1300px;
width: 100%;
margin: 0 auto;
padding: 80px 80px; 
display: flex;
align-items: center;
justify-content: space-between;
gap: 60px;
background-color: #ffffff;
}

.faq-content {
flex: 1.2; 
max-width: 580px;
}

.faq-content .subtitle {
color: #e51d24 !important;
font-size: 13px !important;
font-weight: 700 !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;

display: flex !important;
align-items: center !important;
gap: 10px !important; 
position: static !important;
padding-left: 0 !important;
margin-left: 0 !important;
margin-right: auto !important;
width: max-content !important;
margin-bottom: 12px !important;
}

.faq-content .subtitle::before {
content: '' !important;
position: static !important; 
transform: none !important;
width: 20px !important; 
height: 2px !important; 
background-color: #e51d24 !important;
display: inline-block !important;
}

.faq-content h2,
.faq-content h2 span {
font-family: 'Lora', 'Georgia', serif !important;
font-size: 36px;
font-weight: 700;
color: #0f172a;
margin-bottom: 12px;
line-height: 1.2;
}

.faq-content h2 span {
color: #e51d24;
}

.faq-content > p {
color: #64748B;
font-size: 14.5px;
font-weight: 500;
margin-bottom: 28px;
}

.faq-list {
display: flex;
flex-direction: column;
gap: 16px;
}

.faq-item {
border: 1px solid #cbd5e1; 
border-radius: 12px;
overflow: hidden;
background-color: #ffffff;
transition: all 0.3s ease;
}

.faq-item.active {
border-color: #e51d24;
background-color: #fffafb; 
}

.faq-question {
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
padding: 18px 20px;
cursor: pointer;
font-size: 15px;
font-weight: 700;
color: #0f172a;
}

.faq-question .q-left {
display: flex;
align-items: center;
gap: 12px;
}

.faq-question .q-icon {
width: 18px; 
height: 18px;
border-radius: 50%;
border: 1.5px solid #64748b; 
display: flex;
align-items: center;
justify-content: center;
font-size: 9px;             
color: #64748b;             
flex-shrink: 0;
}

.faq-item.active .q-icon {
border-color: #e51d24;
color: #e51d24;
}

.faq-question .chevron {
transition: transform 0.3s ease;
color: #64748b;
font-size: 13px;
flex-shrink: 0;
}

.faq-item.active .chevron {
transform: rotate(180deg);
color: #e51d24;
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
padding: 4px 20px 20px 50px;
font-size: 14px;
color: #475569;
line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-answer p { padding: 4px 10px 12px 10px; }
}

.faq-illustration {
flex: 0.9;
display: flex;
justify-content: center;
align-items: center;
max-width: 440px; 
}

.faq-illustration img {
width: 100%;
height: auto;
object-fit: contain;
opacity: 90%;
}

@media (max-width: 1024px) {
.faq-section {
    padding: 60px 40px;
    gap: 40px;
    flex-direction: column;
}
.faq-content, .faq-illustration {
    max-width: 100%;
    width: 100%;
}
.faq-illustration {
    order: 2; 
}
}

/*location sections*/

.office-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.office-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 5px;
}

.office-map-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
}

.office-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* --- CUSTOM MAP PIN --- */
.map-pin {
    position: absolute;
    top: 42%;
    left: 25%;
    width: 34px;
    height: 34px;
    background-color: #1a9cf0;
    border: 4px solid var(--white);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -100%) rotate(-45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* --- INFO CARD POPUP --- */
.map-info-card {
    position: absolute;
    top: 12%;
    left: 25%;
    transform: translateX(-50%);
    width: 240px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 6;
}

.map-info-image {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.map-info-body {
    background-color: #3a9247;
    padding: 12px 14px;
    color: var(--white);
}

.map-info-body h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.map-info-body h4 .highlight {
    color: #ffdede;
}

.map-info-address {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.map-info-distance {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
}

.map-info-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #3a9247;
}

@media (max-width: 768px) {
    .office-map-wrapper {
        height: 320px;
    }
    .map-info-card {
        width: 190px;
    }
    .map-info-image {
        height: 85px;
    }
    .hero-container { padding: 10px 20px; }
    .faq-section { padding: 40px 20px; }
}

@media (max-width: 480px) {
    .stats-strip-container {
        flex-wrap: wrap;
    }

    .faq-section {
        gap: 32px;
        padding: 32px 16px;
    }

    .faq-accordion-item {
        padding: 12px 14px;
    }

    .map-info-card {
        width: 160px;
    }

    .office-map-wrapper {
        height: 260px;
    }

    .hero-container {
        padding: 10px 16px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 20px 16px;
    }
}

@media (max-width: 400px) {
    .hero-container {
        padding: 10px 12px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .stats-strip-container {
        gap: 12px;
    }

    .stat-box-item {
        padding: 12px;
    }

    .stat-box-item h3 {
        font-size: 18px;
    }

    .stat-item {
        padding: 8px 0;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    .faq-section {
        gap: 24px;
        padding: 24px 12px;
    }

    .faq-accordion-item {
        padding: 10px 12px;
    }

    .map-info-card {
        width: 140px;
    }

    .map-info-image {
        height: 70px;
    }

    .office-map-wrapper {
        height: 220px;
    }

    .why-us-card {
        padding: 16px;
    }

    .why-us-card h3 {
        font-size: 13px;
    }

    .why-us-card p {
        font-size: 11px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 16px 12px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 10px 12px;
    }

    .hero-section {
        min-height: 40vh;
    }
}