/* 👉 GLOBAL CSS (Sari Website / Har Page Ke Liye) 👈 */
* {
    box-sizing: border-box;
}

body {
    background-color: #0D0D0D;
    color: #E0E0E0;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main {
    padding: 50px 5%;
    text-align: center;
}
footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #222;
    background-color: #000000;
    margin-top: 40px;
}

footer p {
    color: #A0A0A0;
    margin: 0;
}


/* ============================================================
   UMAIR PRO ACADEMY — Sticky Header (Mobile UX bugs fixed)
============================================================= */
:root {
    --bg-dark: #05070a;
    --header-glass: rgba(5, 7, 10, 0.72);
    --border-color: rgba(255, 255, 255, 0.08);
    --gold-start: #F5A623;
    --gold-end: #d4891a;
    --text-main: #ffffff;
    --text-muted: #A0A0B0;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
a { text-decoration: none; }

body {
    margin: 0;
    background: var(--bg-dark);
    font-family: 'Poppins', -apple-system, sans-serif;
}

body.menu-open { overflow: hidden; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5%;
    border-bottom: 1px solid var(--border-color);
    isolation: isolate;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--header-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: -1;
}

.logo-link { display: flex; align-items: center; gap: 10px; }

.logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

.logo-text { color: var(--text-main); font-size: 17px; font-weight: 700; letter-spacing: -0.2px; }
.logo-text em { color: var(--gold-start); font-style: normal; }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1300;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--gold-start);
    border-radius: 3px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Desktop nav layout ---------- */
.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-primary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-primary li { position: relative; }

.nav-primary li a,
.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-primary li a:hover,
.dropdown-trigger:hover,
.dropdown-trigger:focus-visible {
    color: var(--text-main);
    background: rgba(245, 166, 35, 0.12);
}

.dropdown-arrow { font-size: 9px; transition: transform 0.3s var(--ease); }
.dropdown.open .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: #101218;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    border-radius: 10px;
    padding: 8px 0;
    width: 250px;
    list-style: none;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
    z-index: 999;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li { width: 100%; }

.dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-size: 13.5px;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    white-space: normal;
    line-height: 1.4;
    border-radius: 0;
    border-left: 3px solid transparent;
    transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus-visible {
    background: rgba(245, 166, 35, 0.1);
    color: var(--gold-start);
    padding-left: 25px;
    border-left-color: var(--gold-start);
}

/* ---------- Admin badge ---------- */
.nav-admin-link {
    position: relative;
    background: rgba(220, 38, 38, 0.08) !important;
    color: #F87171 !important;
    border: 1px solid rgba(220, 38, 38, 0.3);
    font-weight: 700 !important;
}

.nav-admin-link:hover {
    background: rgba(220, 38, 38, 0.15) !important;
    color: #ffffff !important;
}

.nav-badge {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 20px;
    margin-left: 4px;
}

/* ---------- Auth zone ---------- */
.nav-auth-zone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 14px;
    margin-left: 6px;
    border-left: 1px solid var(--border-color);
}

.nav-auth-label { display: none; }

.nav-auth-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.btn-nav-login {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 8px;
    border: 1px solid rgba(245, 166, 35, 0.45);
    color: var(--gold-start);
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-nav-login:hover {
    background: rgba(245, 166, 35, 0.1);
    transform: translateY(-2px);
}

.btn-nav-register {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.3);
    transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}

.btn-nav-register:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.btn-nav-logout {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.btn-nav-logout:hover {
    color: #F87171;
    border-color: rgba(220, 38, 38, 0.4);
    background: rgba(220, 38, 38, 0.06);
}

.logout-icon { font-size: 14px; }

@keyframes nav-item-in {
    from { opacity: 0; transform: translateX(14px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   MOBILE — right-side slide-in panel, no blank space, links
   always visible by default (animation only enhances entrance)
============================================================= */
@media only screen and (max-width: 768px) {
    .menu-toggle { display: flex; }

    .site-nav {
        position: fixed;
        top: 66px;
        right: 0;
        left: auto;
        width: 82%;
        max-width: 340px;
        height: calc(100vh - 66px);
        background: #0a0c10;
        border-left: 1px solid var(--border-color);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 1100;
        overflow-y: auto;
        padding: 0 0 30px;
        visibility: hidden;
        pointer-events: none;
        -webkit-overflow-scrolling: touch;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-nav.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav::before {
        content: "";
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
        z-index: -1;
        pointer-events: none;
    }

    .site-nav.active::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-primary {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .nav-primary li { width: 100%; display: block !important; }

    .nav-primary li a,
    .dropdown-trigger {
        display: flex !important;
        width: 100%;
        padding: 15px 24px;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
        justify-content: space-between;
        color: var(--text-main) !important;
        background: transparent !important;
        opacity: 1;
    }

    .site-nav.active .nav-primary li a,
    .site-nav.active .dropdown-trigger {
        animation: nav-item-in 0.35s var(--ease) both;
    }

    .site-nav.active .nav-primary li:nth-child(1) a { animation-delay: 0.03s; }
    .site-nav.active .nav-primary li:nth-child(2) a { animation-delay: 0.07s; }
    .site-nav.active .nav-primary li:nth-child(3) .dropdown-trigger { animation-delay: 0.11s; }
    .site-nav.active .nav-primary li:nth-child(4) a { animation-delay: 0.15s; }
    .site-nav.active .nav-primary li:nth-child(5) a { animation-delay: 0.19s; }
    .site-nav.active .nav-primary li:nth-child(6) a { animation-delay: 0.23s; }
    .site-nav.active .nav-primary li:nth-child(7) a { animation-delay: 0.27s; }

    .nav-admin-link {
        background: rgba(220, 38, 38, 0.08) !important;
        border: none;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #000000;
        transform: none;
        max-height: 0;
        opacity: 1;
        visibility: visible;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.35s var(--ease);
    }

    .dropdown.open .dropdown-menu { max-height: 400px; }

    .dropdown-menu li a {
        padding: 13px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-left: 2px solid transparent;
        animation: none !important;
        opacity: 1 !important;
        pointer-events: auto;
        max-height: 400px;
    }

    .nav-auth-zone {
        flex-direction: column;
        align-items: stretch;
        border-left: none;
        padding: 24px 24px 0;
        margin: 20px 0 0;
        border-top: 1px solid var(--border-color);
        gap: 0;
    }

    .nav-auth-label {
        display: block;
        color: #6b6f7a;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }

    .nav-auth-list {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }

    .nav-auth-list li { width: 100%; }

    .btn-nav-login, .btn-nav-register, .btn-nav-logout {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 14px;
    }
} /* <<<< YEH MISSING BRACKET THI — ab media query yahan sahi tarah band ho rahi hai */


/* ============================================================
   UMAIR PRO ACADEMY — About Page
   Same brand system as header: --gold-start / --bg-dark
============================================================= */
.about-section {
    --bg-dark: #05070a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --gold-start: #F5A623;
    --gold-end: #d4891a;
    --gold-glow: rgba(245, 166, 35, 0.35);
    --text-main: #ffffff;
    --text-muted: #A0A0B0;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    background: var(--bg-dark);
    padding: 48px 16px 72px;
    font-family: 'Poppins', -apple-system, sans-serif;
}

.about-section * { box-sizing: border-box; }

.about-hero {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-section .eyebrow {
    display: inline-block;
    color: var(--gold-start);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border: 1px solid rgba(245, 166, 35, 0.35);
    border-radius: 30px;
    margin-bottom: 18px;
}

.about-section h1 {
    color: var(--text-main);
    font-size: clamp(26px, 7vw, 42px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 12px;
    line-height: 1.25;
}

.about-subtitle {
    color: var(--text-muted);
    font-size: clamp(14px, 3.5vw, 17px);
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 56px;
}

@media (min-width: 900px) {
    .about-grid { grid-template-columns: repeat(3, 1fr); }
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    animation: fade-up 0.6s var(--ease) both;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.about-card:nth-child(1) { animation-delay: 0.05s; }
.about-card:nth-child(2) { animation-delay: 0.15s; }
.about-card:nth-child(3) { animation-delay: 0.25s; }

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 166, 35, 0.35);
    box-shadow: 0 20px 45px -20px var(--gold-glow);
}

.card-icon { font-size: 28px; margin-bottom: 14px; }

.about-card h2 {
    color: var(--text-main);
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 12px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 12px;
}

.about-card p:last-child { margin-bottom: 0; }
.about-card strong { color: var(--gold-start); }

.why-different {
    max-width: 1100px;
    margin: 0 auto 56px;
    text-align: center;
}

.why-different h2 {
    color: var(--text-main);
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 800;
    margin: 0 0 12px;
}

.why-intro {
    color: var(--text-muted);
    font-size: 14.5px;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
}

@media (min-width: 768px) {
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-item {
    background: linear-gradient(180deg, var(--card-bg) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 26px 22px;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.3);
}

.feature-number {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold-start);
    margin-bottom: 10px;
}

.feature-item h3 {
    color: var(--text-main);
    font-size: 16.5px;
    font-weight: 700;
    margin: 0 0 10px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0;
}

.about-cta {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 24px;
    border-radius: 20px;
    border: 1px solid rgba(245, 166, 35, 0.25);
    background: linear-gradient(180deg, rgba(245, 166, 35, 0.06) 0%, rgba(5, 7, 10, 0.4) 100%);
    box-shadow: 0 0 60px -18px var(--gold-glow);
}

.about-cta h2 {
    color: var(--text-main);
    font-size: clamp(20px, 5vw, 26px);
    font-weight: 800;
    margin: 0 0 14px;
}

.about-cta p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0 0 10px;
}

.cta-highlight {
    color: var(--gold-start) !important;
    font-weight: 700;
    font-size: 15.5px !important;
    margin: 12px 0 24px !important;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 22px rgba(245, 166, 35, 0.3);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease);
}

.btn-cta:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.45);
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .about-section * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}


/* ============================================================
   UMAIR PRO ACADEMY — Contact Page
   Same brand system as About/Header: dark + gold accent
============================================================= */
.contact-section {
    --bg-dark: #05070a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --gold-start: #F5A623;
    --gold-end: #d4891a;
    --gold-glow: rgba(245, 166, 35, 0.35);
    --wa-green: #25D366;
    --wa-green-glow: rgba(37, 211, 102, 0.35);
    --text-main: #ffffff;
    --text-muted: #A0A0B0;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    background: var(--bg-dark);
    padding: 48px 16px 72px;
    font-family: 'Poppins', -apple-system, sans-serif;
}

.contact-section * { box-sizing: border-box; }

.contact-hero {
    max-width: 640px;
    margin: 0 auto 44px;
    text-align: center;
}

.contact-section .eyebrow {
    display: inline-block;
    color: var(--gold-start);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border: 1px solid rgba(245, 166, 35, 0.35);
    border-radius: 30px;
    margin-bottom: 18px;
}

.contact-section h1 {
    color: var(--text-main);
    font-size: clamp(26px, 7vw, 40px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 12px;
    line-height: 1.25;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.7;
    margin: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .contact-layout {
        grid-template-columns: 0.9fr 1.4fr;
        align-items: start;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    text-decoration: none;
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.35);
    box-shadow: 0 16px 36px -16px var(--gold-glow);
}

.wa-card:hover {
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 16px 36px -16px var(--wa-green-glow);
}

.info-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(245, 166, 35, 0.1);
}

.wa-card .info-icon { background: rgba(37, 211, 102, 0.12); }

.info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.info-label {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-value {
    color: var(--text-main);
    font-size: 14.5px;
    font-weight: 600;
    word-break: break-word;
}

.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 30px 24px;
}

.contact-form-card h2 {
    color: var(--text-main);
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 8px;
}

.form-subtext {
    color: var(--text-muted);
    font-size: 13.5px;
    margin: 0 0 24px;
    line-height: 1.6;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    color: var(--text-main);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #6b6f7a; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-start);
}

.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
    width: 100%;
    background: var(--wa-green);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.25);
}

.btn-submit:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.btn-submit:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--gold-start);
    outline-offset: 2px;
}


/* ============================================================
   UMAIR PRO ACADEMY — Premium Footer
   Same brand system: dark + gold accent, glass panels
============================================================= */
.site-footer {
    --bg-dark: #05070a;
    --footer-bg: #08090d;
    --border-color: rgba(255, 255, 255, 0.08);
    --gold-start: #F5A623;
    --gold-end: #d4891a;
    --gold-glow: rgba(245, 166, 35, 0.35);
    --wa-green: #25D366;
    --text-main: #ffffff;
    --text-muted: #9C9CA8;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    background: var(--footer-bg);
    border-top: 1px solid var(--border-color);
    padding: 56px 5% 0;
    font-family: 'Poppins', -apple-system, sans-serif;
    margin-top: 60px;
}

.site-footer * { box-sizing: border-box; }
.site-footer a { text-decoration: none; }

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

@media (min-width: 640px) {
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 30px; }
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.3);
}

.footer-logo-text { color: var(--text-main); font-size: 16.5px; font-weight: 700; }
.footer-logo-text em { color: var(--gold-start); font-style: normal; }

.footer-tagline {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 0 20px;
}

.footer-socials { display: flex; gap: 10px; }

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 15px;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: var(--gold-start);
    background: rgba(245, 166, 35, 0.1);
    color: var(--gold-start);
}

.wa-icon:hover {
    border-color: var(--wa-green);
    background: rgba(37, 211, 102, 0.12);
    color: var(--wa-green);
}

.footer-heading {
    color: var(--text-main);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--gold-start);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 13.5px;
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.footer-links a:hover { color: var(--gold-start); padding-left: 4px; }

.footer-contact {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li { display: flex; align-items: center; gap: 10px; }
.contact-icon { font-size: 14px; flex-shrink: 0; }

.footer-contact a {
    color: var(--text-muted);
    font-size: 13.5px;
    word-break: break-word;
    transition: color 0.3s var(--ease);
}

.footer-contact a:hover { color: var(--gold-start); }

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    color: #ffffff;
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.3);
    transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}

.footer-cta-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p { color: var(--text-muted); font-size: 12.5px; margin: 0; }
.footer-credit { color: #6b6f7a !important; }

/* ---------- NAYA: mobile par logo + tagline + social icons
   bilkul center align — jaisa aapne is baar request kiya ---------- */
@media (max-width: 768px) {
    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-socials {
        justify-content: center;
    }
}