body {
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

/* ── Hero (Section 1) ── */
.section-1 {
    background: url("/assets/bg1_1.svg"), url("/assets/bg1_2.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right top;
    min-height: 700px;
    width: auto;
    overflow: hidden;
}
.section-1 .row > .col-md-6:first-of-type {
    position: relative;
    z-index: 2;
}
.section-1 .row > .col-md-6:last-of-type {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-1-about-us {
    background: url("/assets/bg1_1.svg"), url("/assets/bg1_2.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right top;
    min-height: 700px;
    width: auto;
    transform: scaleX(-1);
}
.section-1-about-us > * {
    transform: scaleX(-1);
}

/* ── Section Labels ── */
.section-1-code, .section-1-code-icon {
    font-size: 1.1rem;
    color: #5e89e1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.section-1-code {
    font-weight: bold;
    letter-spacing: 0.05em;
}
.section-1-code img {
    height: 20px;
    width: auto;
}

/* ── Utility ── */
.border-byellow {
    border-color: rgb(254 207 3) !important;
}

/* ── Alternating Sections ── */
.section-2 {
    background-color: #f8f9fa;
}
.section-3 {
    background-color: #ffffff;
}
.section-4 {
    background-color: #f8f9fa;
}

/* ── FAQ ── */
.accordion-item {
    border: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem !important;
    overflow: hidden;
}
.accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    background-color: #fff;
    color: #1a1a2e;
}
.accordion-button:not(.collapsed) {
    background-color: #fff8e1;
    color: #1a1a2e;
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: #fecf03;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235e89e1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* ── Locations ── */
.section-3 h3 {
    font-weight: 600;
}

/* ── CTA / Contact ── */
.contact-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}
.contact-section h2 {
    font-weight: 700;
    color: #1a1a2e;
}
.contact-section .btn-warning {
    background-color: #fecf03;
    border-color: #fecf03;
    color: #1a1a2e;
}
.contact-section .btn-warning:hover {
    background-color: #e6bb00;
    border-color: #e6bb00;
}
.contact-section a:hover {
    color: #ffd700 !important;
}

/* ── Footer ── */
.footer {
    background-color: #0A1628;
    color: white;
}
.footer .text-primary {
    color: #3B82F6 !important;
}
.footer .text-warning {
    color: #F59E0B !important;
}
.footer .bg-primary {
    background-color: #3B82F6 !important;
}

/* ── Buttons ── */
.btn-warning {
    background-color: #fecf03;
    border-color: #fecf03;
    color: #1a1a2e;
}
.btn-warning:hover {
    background-color: #e6bb00;
    border-color: #e6bb00;
    color: #1a1a2e;
}
.btn-outline-warning {
    color: #c9a200;
    border-color: #fecf03;
}
.btn-outline-warning:hover {
    background-color: #fecf03;
    border-color: #fecf03;
    color: #1a1a2e;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .section-1 {
        min-height: auto;
        background-size: 120px, 120px;
    }
    .section-1-about-us {
        min-height: auto;
        background-size: 120px, 120px;
    }
    .section-1-code, .section-1-code-icon {
        font-size: 0.9rem;
    }
    .display-4 {
        font-size: 2rem;
    }
    .display-6 {
        font-size: 1.5rem;
    }
    .row.p-5 {
        padding: 1.5rem !important;
    }
    .contact-section {
        padding: 40px 0;
    }
    .contact-section h2 {
        font-size: 1.6rem;
    }
}

/* ── Banner (legacy) ── */
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 6rem;
    color: var(--text);
    background-image: none;
}
.banner-content {
    flex: 1;
}
.banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.banner-content p {
    font-size: 1.2rem;
    max-width: 600px;
}
.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-image img {
    max-width: 400px;
    height: auto;
}
