/* ══════════════════════════════════════════════
   COMPONENTS – Header, Navigation, Buttons,
   Footer, Stats Bar, About Section
   ══════════════════════════════════════════════ */

/* ─── HEADER ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(10, 61, 143, 0.10);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

/* ─── LOGO ─── */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.logo-icon svg {
    width: 30px;
    height: 28px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--blue-deep);
    transition: color 0.3s;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 3px;
}

header:not(.scrolled) .logo-name {
    color: var(--white);
}

header:not(.scrolled) .logo-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ─── NAV LINKS ─── */
.nav-links {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-bottom: 4px;
}

header.scrolled .nav-links a {
    color: var(--text-mid);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

header.scrolled .nav-links a:hover {
    color: var(--blue-deep);
}

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 4px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
}

/* ─── MOBILE MENU ─── */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: background 0.3s;
}

header.scrolled .menu-toggle span {
    background: var(--blue-deep);
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(240, 123, 32, 0.35);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(240, 123, 32, 0.45);
}

.btn-outline {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    transition: border-color 0.25s, background 0.25s;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-blue {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--blue-mid);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.25s, transform 0.2s;
}

.btn-blue:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
}

/* ─── HERO (shared base) ─── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(240, 123, 32, 0.18);
    border: 1px solid rgba(240, 123, 32, 0.4);
    border-radius: 3px;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.6rem;
    animation: fadeUp 1s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-eyebrow span {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #FBBF7C;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ─── STATS BAR ─── */
.stats-bar {
    background: var(--blue-deep);
    padding: 2rem 5%;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange);
    display: block;
    line-height: 1;
}

.stat-lbl {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-sky);
    margin-top: 0.4rem;
    display: block;
}

/* ─── ABOUT ─── */
.about {
    background: var(--off-white);
}

.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 1rem;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--blue-mid);
    border-radius: 6px;
    padding: 1.2rem 1.4rem;
}

.about-card strong {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: 0.5rem;
}

.about-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(10, 61, 143, 0.15);
}

.about-accent {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 70%;
    height: 70%;
    border: 3px solid var(--blue-sky);
    border-radius: 8px;
    z-index: -1;
}

.about-tag {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: var(--orange);
    color: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(240, 123, 32, 0.3);
}

.about-tag .big {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-tag .sm {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.3rem;
    opacity: 0.9;
}

/* ─── FOOTER ─── */
footer {
    background: var(--text-dark);
}

.footer-cta {
    background: var(--blue-pale);
    padding: 4rem 5%;
}

.footer-cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-cta h2 {
    font-size: 2rem;
    color: var(--blue-deep);
    font-weight: 700;
}

.footer-cta p {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-top: 0.4rem;
}

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 5% 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 4rem;
}

.footer-brand .logo-name {
    color: var(--white);
    font-size: 1.25rem;
}

.footer-brand .logo-sub {
    color: var(--orange);
}

.footer-brand .logo-icon {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.9;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.4rem;
    font-family: 'Nunito Sans', sans-serif;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.25s;
}

.footer-col ul a:hover {
    color: var(--white);
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
}

.c-icon {
    width: 28px;
    height: 28px;
    background: rgba(240, 123, 32, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-row p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.4rem 5%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.22);
}

/* ─── RESPONSIVE – Shared ─── */
@media (max-width: 1024px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .about-tag {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        padding: 1.5rem 5%;
        box-shadow: 0 8px 24px rgba(10, 61, 143, 0.1);
        gap: 1rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        color: var(--text-mid) !important;
    }

    .menu-toggle {
        display: flex;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    section {
        padding: 5rem 5%;
    }

    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}