/* ==========================================================================
   WTD Master Design System & Exact User Header/Footer CSS
   Workforce Training & Development (WTD)
   ========================================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background-color:#0b0f3e;
    color:#ffffff;
    line-height:1.6;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    overflow-x:hidden;
}

/* ===========================
        HEADER (User Exact)
=========================== */
:root{
    --bg-overlay-color: #0b0f3e;
    --bg-gradient: none;
    --padding: 0px;
    --margin: 0px;
    --direction: ltr;

    --wtd-navy: #0b0f3e;
    --wtd-navy-dark: #07092b;
    --wtd-navy-light: #121752;

    --wtd-gold: #FDBA54;
    --wtd-gold-bright: #ffd488;
    --wtd-border-light: rgba(255, 255, 255, 0.12);
    --wtd-border-gold: rgba(253, 186, 84, 0.35);
    --wtd-text-muted: #a4adca;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: .3s;
}

header{
    background-color:#0b0f3e;
    background-image:var(--bg-gradient);
    width:100%;
    direction:var(--direction);
    padding:var(--padding);
    margin:var(--margin);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container{
    width:92%;
    max-width:1400px;
    margin:var(--margin) auto;
    padding:var(--padding);
}

.navbar{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding-top:20px;
    padding-bottom:20px;
}

/* Logo — left */
.logo{
    display:flex;
    align-items:center;
    order:1;
}

.logo img{
    width:120px;
    display:block;
    height: auto;
}

/* Navigation — right */
.nav-menu{
    order:2;
    list-style:none;
    display:flex;
    gap:10px;
    align-items: center;
}

.nav-menu li a{
    display:block;
    text-decoration:none;
    color:#081844;
    background:#FDBA54;
    padding:12px 22px;
    border-radius:999px;
    border:2px solid #fff;
    font-family:'Poppins',sans-serif;
    font-style:normal;
    font-size:14px;
    font-weight:400;
    transition:.3s;
    white-space:nowrap;
}

.nav-menu li.active a{
    background:#fff;
    color:#e8622c;
}

.nav-menu li a:hover{
    background:#FFFFFF;
    border:1px solid #D74000;
    transform:translateY(-2px);
    box-shadow:0 6px 18px rgba(0,0,0,.25);
}

/* Dropdown — Apprenticeships & Units */
.nav-menu li.has-dropdown{
    position:relative;
}

/* Invisible Mouse Bridge */
.nav-menu li.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown-menu{
    list-style:none;
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    min-width:260px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.3);
    padding:8px;
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:.25s;
    z-index:2500;
}

.nav-menu li.has-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li {
    margin-bottom: 2px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu li a{
    display:block;
    text-decoration:none;
    color:#081844;
    background:transparent;
    border:none;
    border-radius:10px;
    padding:10px 14px;
    font-family:'Poppins',sans-serif;
    font-style:normal;
    font-size:14px;
    font-weight:400;
    white-space:nowrap;
    transition:.2s;
}

.dropdown-menu li a:hover{
    background:#FFF6EA;
    border:1px solid #D74000;
    color: #D74000;
    padding:9px 13px;
    box-shadow:none;
    transform:none;
}

/* ==========================================================================
   EXACT WIX FOOTER REPLICA (3-Column Pixel-Perfect Wix Layout)
   ========================================================================== */
.wtd-exact-footer {
    background-color: #0b0f3e;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 70px 0 35px 0;
    margin-top: auto;
    font-family: 'Poppins', sans-serif;
}

.footer-grid-exact {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1.5fr;
    gap: 50px;
    align-items: start;
    padding-bottom: 60px;
}

/* Column 1: Logo & Policy Links */
.footer-col-1 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    display: block;
}

.policy-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.policy-links-list li a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    text-decoration: underline;
    transition: color 0.2s ease;
    line-height: 1.45;
    display: inline-block;
}

.policy-links-list li a:hover {
    color: #FDBA54;
}

/* Column 2: Contact Info, Registered Address, Social & Badges */
.footer-col-2 {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phone-num a, .email-addr a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.registered-address-box {
    margin-top: 30px;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.45;
}

.address-header {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.social-and-badges {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-social-icons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1.5px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-icons a:hover {
    background: #ffffff;
    color: #0b0f3e;
}

.footer-accreditation-logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ofsted-badge-img, .iso-badge-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

/* Column 3: Talk to Us Form (Exact Wix Pill Styling) */
.footer-col-3 {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.talk-to-us-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.talk-to-us-title-row h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.yellow-chat-icon {
    color: #FDBA54;
    font-size: 1.4rem;
}

.talk-to-us-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field-item label {
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
}

.wix-pill-input {
    width: 100%;
    background: transparent;
    border: 1.5px solid #ffffff;
    border-radius: 50px;
    padding: 10px 20px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.wix-pill-textarea {
    width: 100%;
    background: transparent;
    border: 1.5px solid #ffffff;
    border-radius: 20px;
    padding: 14px 20px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.wix-pill-input:focus, .wix-pill-textarea:focus {
    border-color: #FDBA54;
    background: rgba(255, 255, 255, 0.05);
}

.submit-btn-wrapper {
    margin-top: 5px;
}

.wix-footer-submit-btn {
    background: #0b0f3e;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    border-radius: 50px;
    padding: 11px 0;
    width: 100%;
    text-align: center;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.wix-footer-submit-btn:hover {
    background: #ffffff;
    color: #0b0f3e;
    transform: translateY(-2px);
}

/* Copyright Bottom Section */
.footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lordicon-credit a {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .footer-grid-exact {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
