/*
Theme Name: Academie LTA Child
Theme URI: https://academielta.ca
Description: Child theme for Academie LTA built on GeneratePress
Author: Academie LTA
Template: generatepress
Version: 1.0.0
Text Domain: academie-lta-child
*/

/* =============================================
   ACADEMIE LTA — GLOBAL BRAND STYLES
   ============================================= */

/* --- Brand Colors --- */
:root {
    --color-primary: #1565C0;       /* Blue — main brand */
    --color-primary-dark: #0D47A1;  /* Blue dark — hover states */
    --color-secondary: #4CAF50;     /* Green — accents, CTAs */
    --color-secondary-dark: #388E3C;/* Green dark — hover states */
    --color-text: #212121;          /* Near black — body text */
    --color-text-light: #616161;    /* Grey — secondary text */
    --color-bg: #FFFFFF;            /* White — page background */
    --color-bg-light: #F5F7FA;      /* Light grey — section backgrounds */
    --color-border: #E0E0E0;        /* Light border */
    --color-white: #FFFFFF;
}

/* --- Typography --- */
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin-bottom: 1.25rem; }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: var(--color-primary-dark); }

/* --- Buttons --- */
.btn-primary,
.wp-block-button__link {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-white) !important;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover,
.wp-block-button__link:hover {
    background-color: var(--color-secondary-dark);
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary) !important;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--color-primary);
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--color-bg-light);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }

/* =============================================
   SKIP LINK (accessibility)
   ============================================= */

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--color-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0 0 6px 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    z-index: 999;
    transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* =============================================
   HEADER & NAV
   ============================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
}

/* --- Logo --- */
.nav-logo a,
.nav-logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo .custom-logo {
    height: 44px;
    width: auto;
    display: block;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: #1565C0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

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

.logo-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

.logo-tagline {
    font-size: 10px;
    color: var(--color-text-light);
    font-weight: 400;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

/* --- Nav Links --- */
.nav-menu-wrap {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li { position: relative; }

.nav-links a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--color-text-light);
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links .current-menu-item > a {
    color: var(--color-primary);
    background: #EBF3FD;
}

.nav-links a i {
    font-size: 11px;
    color: var(--color-primary);
    opacity: 0.7;
}

/* --- Dropdown --- */
.nav-links .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0.4rem;
    min-width: 200px;
    z-index: 200;
}

.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
    display: block;
}

.nav-links .sub-menu a {
    font-size: 13px;
    border-radius: 6px;
    padding: 0.45rem 0.75rem;
}

/* --- CTA Button --- */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-secondary);
    color: #fff !important;
    padding: 0.5rem 1.125rem;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-left: 0.75rem;
    transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-1px);
    color: #fff !important;
}

.nav-cta i { font-size: 11px; }

/* --- Mobile Toggle --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1.5px solid var(--color-border);
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle-active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle-active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   RESPONSIVE NAV
   ============================================= */

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-menu-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0.25rem;
        z-index: 99;
    }

    .nav-menu-wrap.nav-menu-open { display: flex; }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-links a {
        padding: 0.6rem 0.75rem;
        font-size: 14px;
    }

    .nav-links .sub-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--color-border);
        border-radius: 0;
        margin-left: 1rem;
        padding: 0.25rem 0;
    }

    .nav-cta {
        margin-left: 0;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 0.65rem 1rem;
        font-size: 14px;
    }

    .nav-main {
        padding: 0.875rem 1.25rem;
        position: relative;
    }
}

@media (max-width: 480px) {
    .logo-tagline { display: none; }
}


/* =============================================
   HERO
   ============================================= */

.hero {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 50%, #1976D2 100%);
    padding: 5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

/* Hero image — uncomment when ready:
.hero {
    background-image: linear-gradient(135deg, rgba(13,71,161,0.92) 0%, rgba(21,101,192,0.88) 100%),
                      url('images/hero.jpg');
    background-size: cover;
    background-position: center top;
}
*/

.hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 350px; height: 350px;
    background: rgba(230,81,0,0.07);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(230,81,0,0.18);
    border: 1px solid rgba(230,81,0,0.35);
    color: #FFAB91;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero h1 em {
    font-style: normal;
    color: #FFAB91;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    list-style: none;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* =============================================
   TRUST BAR
   ============================================= */

.trust-bar {
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    padding: 0.8rem 2rem;
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

.trust-item i {
    color: var(--color-secondary);
    font-size: 12px;
}

/* =============================================
   EXPERIENCE BANNER
   ============================================= */

.exp-banner {
    background: var(--color-primary);
    padding: 2.5rem 2rem;
    text-align: center;
}

.exp-banner h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.exp-banner h2 em {
    font-style: normal;
    color: #FFAB91;
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */

.section {
    padding: 4rem 2rem;
}

.section-alt {
    background: var(--color-bg-light);
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-label i {
    margin-right: 4px;
}

.section-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #0D1B40;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 560px;
}

.section-head {
    margin-bottom: 2.5rem;
}

.section-head.center {
    text-align: center;
}

.section-head.center .section-desc {
    margin: 0 auto;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #E65100;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
}

.btn-orange:hover {
    background: #BF360C;
    color: #fff;
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: all 0.15s;
}

.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* =============================================
   FEATURE CARDS
   ============================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.15s;
}

.feature-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 6px 24px rgba(21,101,192,0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon i {
    font-size: 22px;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0D1B40;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.15s;
}

.feature-link:hover {
    color: #E65100;
}

.feature-link i {
    font-size: 11px;
    transition: transform 0.15s;
}

.feature-link:hover i {
    transform: translateX(3px);
}

/* =============================================
   ABOUT & APPROACH GRIDS
   ============================================= */

.about-grid,
.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p,
.approach-text p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-text .btn-orange,
.approach-text .btn-orange {
    margin-top: 0.5rem;
}

.about-image-placeholder {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.about-image-placeholder i {
    font-size: 56px;
    color: var(--color-primary);
    opacity: 0.2;
}

.about-image-placeholder span {
    font-size: 12px;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Real image — swap placeholder when ready */
.about-image-placeholder img,
.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* =============================================
   PROFESSIONS GRID
   ============================================= */

.prof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    list-style: none;
    padding: 0;
}

.prof-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1.1rem;
    text-align: center;
    transition: all 0.15s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prof-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21,101,192,0.1);
}

.prof-card.featured {
    border-color: var(--color-primary);
    background: #EBF3FD;
}

.prof-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #EBF3FD;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.prof-card.featured .prof-icon-wrap {
    background: var(--color-primary);
}

.prof-icon-wrap i {
    font-size: 19px;
    color: var(--color-primary);
}

.prof-card.featured .prof-icon-wrap i {
    color: #fff;
}

.prof-name {
    font-size: 12px;
    font-weight: 700;
    color: #0D1B40;
    line-height: 1.25;
    margin-bottom: 0.2rem;
    display: block;
}

.prof-name a {
    color: inherit;
    text-decoration: none;
}

.prof-count {
    font-size: 10px;
    color: #888;
    display: block;
}

.prof-pill {
    position: absolute;
    top: 6px; right: 6px;
    background: #E65100;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.prof-more {
    border: 1px solid var(--color-border);
    background: #fff;
}
.prof-more .prof-icon-wrap {
    background: var(--color-bg-light);
}
.prof-more .prof-icon-wrap i {
    color: var(--color-primary);
}

/* =============================================
   TESTIMONIALS
   ============================================= */

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.testi-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testi-stars {
    display: flex;
    gap: 2px;
    color: #FFC107;
    font-size: 13px;
}

.testi-stars .fa-regular {
    color: #ddd;
}

.testi-quote {
    font-size: 13px;
    color: #333;
    line-height: 1.65;
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.testi-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testi-name {
    font-size: 13px;
    font-weight: 700;
    color: #0D1B40;
    font-style: normal;
    display: block;
}

.testi-prof {
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 2px 0 0;
}

.testi-prof i {
    font-size: 9px;
    color: var(--color-secondary);
}

/* =============================================
   CTA BANNER
   ============================================= */

.cta-banner {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    padding: 4rem 2rem;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */

.lta-footer {
    background: #0D1B40;
    padding: 3rem 2rem 1.5rem;
    color: rgba(255,255,255,0.65);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand {}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.footer-logo-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.footer-tagline {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.15s;
}

.footer-social a:hover {
    border-color: #E65100;
    color: #E65100;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.85rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    margin-bottom: 0.45rem;
    transition: color 0.15s;
}

.footer-col a:hover {
    color: #FFAB91;
}

.footer-col a i {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    width: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
}

.footer-legal-links {
    display: flex;
    gap: 1.25rem;
}

.footer-legal-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-legal-links a:hover {
    color: rgba(255,255,255,0.7);
}

/* =============================================
   PROFESSIONS GRID — fixed 4 columns
   ============================================= */
.prof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    list-style: none;
    padding: 0;
}
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .prof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .about-image-placeholder {
        height: 220px;
        order: -1;
    }

    .hero {
        padding: 3rem 1.25rem 2.5rem;
    }

    .section {
        padding: 3rem 1.25rem;
    }

    .hero-stats {
        gap: 1.25rem;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-orange,
    .btn-ghost {
        justify-content: center;
        text-align: center;
    }

    .trust-inner {
        gap: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}/* Hide GeneratePress default footer */
.footer-bar,
.site-info,
#colophon {
    display: none !important;
}
.lta-footer {
    display: block !important;
    background: #0D1B40;
    padding: 3rem 2rem 1.5rem;
    color: rgba(255,255,255,0.6);
}
