/* ============================================================
   AFRICA DYNAMIC GROUP - MAIN STYLESHEET
   ============================================================ */

:root {
    --navy: #020914;
    --navy-light: #061525;
    --blue: #006cff;
    --cyan: #00d9ff;
    --bright-blue: #009cff;
    --white: #ffffff;
    --grey: #aeb9c8;
    --dark-grey: #526174;
    --light-bg: #f5f8fb;
    --container: 1240px;
    --shadow: 0 25px 70px rgba(0, 0, 0, .35);
    --transition: all .35s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.section-container,
.nav-container,
.footer-container {
    width: min(calc(100% - 50px), var(--container));
    margin: auto;
}

/* ===== POPIA BANNER ===== */
.popia-banner {
    position: fixed;
    bottom: -100px;
    left: 20px;
    right: 20px;
    background: rgba(2, 9, 20, 0.95);
    border: 1px solid var(--cyan);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: bottom 0.5s ease;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}
.popia-banner.show {
    bottom: 80px;
}
.popia-banner p {
    font-size: 12px;
    color: #c5d1df;
}
.popia-banner a {
    color: var(--cyan);
    text-decoration: underline;
}
.popia-banner button {
    background: var(--cyan);
    color: var(--navy);
    border: none;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    border-radius: 4px;
}

/* ===== FLOATING CONTACT ===== */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1500;
}
.float-wrap {
    position: relative;
}
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 9, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    cursor: pointer;
}
.float-btn svg {
    width: 24px;
    height: 24px;
}
.float-wa {
    color: #25D366;
    border-color: #25D366;
}
.float-wa:hover {
    background: #25D366;
    color: var(--white);
    transform: scale(1.1);
}
.float-phone {
    color: var(--blue);
    border-color: var(--blue);
}
.float-phone:hover {
    background: var(--blue);
    color: var(--white);
    transform: scale(1.1);
}
.float-mail {
    color: var(--cyan);
    border-color: var(--cyan);
}
.float-mail:hover {
    background: var(--cyan);
    color: var(--navy);
    transform: scale(1.1);
}
.float-fb {
    color: #1877F2;
    border-color: #1877F2;
}
.float-fb:hover {
    background: #1877F2;
    color: var(--white);
    transform: scale(1.1);
}
.float-li {
    color: #0A66C2;
    border-color: #0A66C2;
}
.float-li:hover {
    background: #0A66C2;
    color: var(--white);
    transform: scale(1.1);
}
.float-menu {
    position: absolute;
    right: 65px;
    top: 0;
    min-width: 200px;
    background: rgba(2, 9, 20, 0.98);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1501;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.float-menu.open {
    display: flex;
}
.float-menu a {
    display: block;
    padding: 12px;
    border-radius: 5px;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.float-menu a:last-child {
    border-bottom: none;
}
.float-menu a:hover {
    background: rgba(0, 217, 255, 0.1);
}
.float-menu a small {
    display: block;
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--cyan);
    margin-bottom: 3px;
}
.float-menu a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 9, 20, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 217, 255, .12);
}
.nav-container {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.brand-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-name {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.brand-group {
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--cyan);
    margin-top: 5px;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}
.nav-list>li {
    position: relative;
}
.nav-list a {
    font-size: 13px;
    font-weight: 600;
    color: #dce5ef;
    transition: var(--transition);
}
.nav-list>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    transition: var(--transition);
}
.nav-list>li>a:hover,
.nav-list>li.active>a {
    color: var(--cyan);
}
.nav-list>li.active>a::after {
    width: 100%;
}
.dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    left: -15px;
    width: 250px;
    background: rgba(6, 21, 37, 0.95);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(0, 217, 255, .12);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
}
.has-dropdown:hover>.dropdown,
.has-dropdown.dropdown-open>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 25px;
    font-size: 13px;
}
.dropdown li a:hover {
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
}
.nav-button {
    border: 1px solid var(--cyan);
    padding: 11px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}
.nav-button:hover {
    background: var(--cyan);
    color: var(--navy);
    box-shadow: 0 0 25px rgba(0, 217, 255, .35);
}
.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu span {
    width: 26px;
    height: 2px;
    background: white;
    display: block;
    margin: 5px 0;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 150px 0 120px;
}
.hero-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(0, 156, 255, .28), transparent 35%),
        radial-gradient(circle at 20% 80%, rgba(0, 217, 255, .12), transparent 35%),
        linear-gradient(120deg, #020914, #031427 55%, #001f3e);
    z-index: -3;
}
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image:
        linear-gradient(rgba(0, 217, 255, .3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, .3) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to right, black, transparent 80%);
    z-index: -2;
}
.hero-contours {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 Q 25 75 50 100 T 100 100' stroke='%2300d9ff' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3Cpath d='M0 80 Q 25 55 50 80 T 100 80' stroke='%2300d9ff' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E");
    z-index: -2;
    background-size: cover;
}
.hero-content {
    position: relative;
    width: min(calc(100% - 50px), var(--container));
    margin: auto;
    z-index: 2;
}
.hero-eyebrow,
.section-tag {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}
.hero h1 {
    font-size: clamp(55px, 7vw, 105px);
    line-height: .95;
    margin: 20px 0 30px;
    max-width: 700px;
}
.hero h1 span {
    display: block;
}
.hero h1 strong {
    display: block;
    color: var(--cyan);
    text-shadow: 0 0 35px rgba(0, 217, 255, .25);
}
.hero-lead {
    max-width: 610px;
    color: #c5d1df;
    font-size: 18px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 38px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: var(--transition);
}
.button-primary {
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    color: var(--navy);
    box-shadow: 0 12px 35px rgba(0, 156, 255, .25);
}
.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 217, 255, .35);
}
.button-outline {
    border: 1px solid rgba(255, 255, 255, .3);
    color: white;
}
.button-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}
.hero-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 22px max(25px, calc((100% - 1240px) / 2));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(0, 0, 0, .25);
    border-top: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}
.hero-bottom div {
    padding: 0 25px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}
.hero-bottom div:last-child {
    border: none;
}
.hero-bottom strong {
    display: block;
    font-size: 21px;
    color: var(--cyan);
}
.hero-bottom span {
    display: block;
    color: #9baabd;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== ACCREDITATION STRIP ===== */
.accreditation-strip {
    background: var(--navy-light);
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.accreditation-strip .section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.accreditation-strip p {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--grey);
    text-transform: uppercase;
}
.accreditation-logos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.accreditation-logos span {
    font-size: 12px;
    font-weight: 800;
    color: var(--dark-grey);
    letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    position: relative;
}
.dark-section {
    background: linear-gradient(120deg, #020914, #05121f);
    border-top: 1px solid rgba(0, 217, 255, 0.05);
    border-bottom: 1px solid rgba(0, 217, 255, 0.05);
}
.light-section {
    background: var(--light-bg);
    color: var(--navy);
}
.section-heading {
    margin-bottom: 60px;
}
.section-heading.centered {
    text-align: center;
}
.section-heading h2 {
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1.05;
    margin-top: 12px;
    color: var(--white);
}
.light-section .section-heading h2 {
    color: var(--navy);
}
.section-heading h2 span,
.section-heading h2 strong {
    color: var(--cyan);
}
.section-heading p {
    max-width: 600px;
    margin: 20px auto 0;
    color: #667487;
}
.heading-line {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    margin-top: 20px;
}

/* ===== GLASS PANEL ===== */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px;
    box-shadow: var(--shadow);
    border-radius: 4px;
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-copy {
    color: #c5d1df;
    font-size: 16px;
}
.about-copy p {
    margin-bottom: 20px;
}
.about-copy .large-copy {
    color: var(--white);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.5;
}
.about-stat-card {
    padding: 40px;
    min-height: 300px;
    background: linear-gradient(145deg, rgba(0, 108, 255, 0.1), rgba(0, 217, 255, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.2);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.about-stat-card::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(0, 217, 255, .25);
    border-radius: 50%;
    right: -120px;
    bottom: -120px;
}
.stat-number {
    font-size: 90px;
    line-height: 1;
    font-weight: 900;
    color: var(--cyan);
}
.stat-title {
    margin-top: 20px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}
.stat-description {
    margin-top: 30px;
    color: #9eb2c7;
}

/* ===== TEAM ===== */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.team-card {
    background: #1a1f26;
    border: 1px solid #2a2f3a;
    border-radius: 12px;
    padding: 25px 20px 20px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}
.team-card:hover {
    border-color: #00bcd4;
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.team-card .team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    background: #2a2f3a;
    border: 2px solid #00bcd4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-card .team-avatar .avatar-fallback {
    font-size: 40px;
    color: #00bcd4;
    line-height: 120px;
}
.team-card .team-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}
.team-card .team-position {
    color: #00bcd4;
    font-size: 14px;
    margin: 0;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-overlay.open {
    display: flex;
}
.modal-content {
    background: var(--navy-light);
    border: 1px solid var(--cyan);
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px;
    box-shadow: var(--shadow);
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: var(--transition);
}
.modal-close:hover {
    background: var(--cyan);
    color: var(--navy);
}
.modal-img {
    flex: 1;
    min-width: 250px;
}
.modal-img img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    height: 100%;
    max-height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.modal-bio {
    flex: 2;
    min-width: 300px;
    color: #c5d1df;
}
.modal-bio h1 {
    color: var(--white);
    margin: 10px 0 5px;
    font-size: 32px;
}
.modal-position {
    color: var(--cyan);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.modal-exp {
    display: inline-block;
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.3);
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 20px;
}
.modal-bio p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
}
.modal-bio ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}
.modal-bio ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 14px;
}
.modal-bio ul li::before {
    content: "▹";
    color: var(--cyan);
    position: absolute;
    left: 0;
}

/* ===== CLIENTS ===== */
.clients-section {
    background: #fff;
    color: var(--navy);
    padding: 60px 0;
    border-top: 1px solid #eee;
}
.clients-heading {
    text-align: center;
    margin-bottom: 30px;
}
.clients-heading h2 {
    font-size: 48px;
    margin-top: 10px;
    color: var(--navy);
}
.clients-heading h2 span {
    color: var(--blue);
}
.client-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.client-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: clientScroll 40s linear infinite;
}
.client-track:hover {
    animation-play-state: paused;
}
.client-item {
    width: 220px;
    height: 120px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e3e9ef;
    padding: 20px;
    transition: var(--transition);
}
.client-item img {
    max-width: 100%;
    max-height: 65px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .7;
    transition: var(--transition);
}
.client-item:hover {
    border-color: rgba(0, 156, 255, .45);
    box-shadow: 0 15px 40px rgba(0, 50, 100, .08);
}
.client-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}
@keyframes clientScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== TESTIMONIALS ===== */
.testimonial-carousel {
    max-width: 900px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}
.test-track-wrapper {
    overflow: hidden;
    flex: 1;
}
.test-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.testimonial-item {
    min-width: 100%;
    text-align: center;
    padding: 20px;
}
.test-rating {
    color: #f5b342;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 4px;
}
.test-quote {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #c5d1df;
}
.light-section .test-quote {
    color: #344456;
}
.test-author {
    font-weight: 600;
    font-size: 14px;
}
.test-author span {
    display: block;
    margin-top: 4px;
    font-weight: 400;
    color: #8899aa;
    font-size: 13px;
}
.light-section .test-author span {
    color: #8997a7;
}
.test-arrow {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.test-arrow:hover {
    background: var(--blue);
    color: var(--white);
}
.light-section .test-arrow {
    background: rgba(0, 0, 0, 0.05);
    color: var(--navy);
}
.light-section .test-arrow:hover {
    background: var(--blue);
    color: var(--white);
}

/* ===== FAQ, TRAINING, BLOG, STUDENT RESOURCES ===== */
.faq-item { padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: var(--cyan); font-size: 18px; margin-bottom: 10px; font-weight: 600; }
.faq-item p { color: #c5d1df; font-size: 15px; line-height: 1.6; }

.training-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}
.tab-button {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--dark-grey);
    color: var(--grey);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tab-button.active, .tab-button:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}
.filter-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 20px;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--cyan);
    color: var(--navy);
    border-color: var(--cyan);
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.card-dark {
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.card-dark:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
}
.card-dark h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 10px;
}
.card-dark p {
    color: var(--grey);
    font-size: 13px;
    margin-bottom: 20px;
}
.card-link {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-card {
    cursor: pointer;
    padding: 0;
    overflow: hidden;
}
.blog-card .blog-img {
    height: 200px;
    overflow: hidden;
}
.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-img img {
    transform: scale(1.05);
}
.blog-card .blog-info {
    padding: 25px;
}
.blog-card .blog-info h3 {
    color: var(--white);
    font-size: 20px;
    margin: 8px 0 10px;
}
.blog-card .blog-info p {
    color: var(--grey);
    font-size: 13px;
    margin-bottom: 20px;
}

.article-gallery {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-track img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    height: 450px;
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: var(--white);
    border: 1px solid var(--cyan);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 26px;
    z-index: 10;
    transition: var(--transition);
}
.gallery-arrow:hover {
    background: var(--cyan);
    color: var(--navy);
}
.gallery-prev { left: 15px; }
.gallery-next { right: 15px; }

.resource-group {
    margin-bottom: 40px;
}
.resource-group h3 {
    color: var(--cyan);
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.resource-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 10px;
    transition: var(--transition);
}
.resource-item:hover {
    border-color: var(--cyan);
}
.resource-item span {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}
.resource-item a {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

/* ===== POLICY ===== */
.policy-section {
    background: #03101f;
    padding: 90px 0;
}
.policy-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}
.policy-section h2 {
    font-size: 48px;
    margin-top: 10px;
}
.policy-section p {
    color: #9cadbf;
    max-width: 650px;
    margin-top: 15px;
}
.policy-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.policy-links a {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.1);
    color: #c5d2df;
    font-size: 12px;
    transition: var(--transition);
}
.policy-links a:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

/* ===== CONTACT ===== */
.contact-section {
    background: linear-gradient(135deg, #006cff, #00bfe8);
    color: var(--navy);
    padding: 100px 0;
}
.contact-section .section-tag {
    color: var(--navy);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}
.contact-section h2 {
    font-size: clamp(45px, 6vw, 75px);
    line-height: 1;
    margin: 15px 0 25px;
}
.contact-section h2 span {
    color: white;
}
.contact-section p {
    max-width: 550px;
    font-size: 17px;
    opacity: .8;
}
.contact-details {
    display: grid;
    gap: 12px;
}
.contact-details a {
    display: block;
    padding: 17px 20px;
    background: rgba(0,0,0,.12);
    transition: var(--transition);
}
.contact-details a:hover {
    background: rgba(0,0,0,.25);
    transform: translateX(5px);
}
.contact-details small {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: .65;
    margin-bottom: 3px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #01060d;
    color: #8b9bab;
    padding: 30px 0;
    font-size: 11px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-container strong {
    color: white;
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
}
.footer-container span {
    color: var(--cyan);
    display: block;
    margin-top: 3px;
}

/* ============================================================
   NEW COMPACT EDITORIAL SERVICES GRID
   ============================================================ */

.our-why.compact {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.our-why.compact h2 {
    font-size: 42px;
    margin-top: 6px;
}
.our-why.compact .why-copy {
    max-width: 650px;
    margin: 6px auto 0;
    font-size: 16px;
    color: #445566;
}

.services-section .section-heading {
    margin-bottom: 30px;
}

.service-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}

.compact-card {
    background: #ffffff;
    border: 1px solid #e9edf2;
    border-left: 4px solid var(--cyan);
    border-radius: 8px;
    padding: 20px 18px 18px 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
    min-height: 170px;
    display: flex;
    flex-direction: column;
}
.compact-card .bg-number {
    position: absolute;
    bottom: -8px;
    right: -2px;
    font-size: 72px;
    font-weight: 800;
    color: var(--navy);
    opacity: 0.03;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.compact-card .card-number {
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: block;
}
.compact-card h4 {
    font-size: 20px;
    color: var(--navy);
    margin: 2px 0 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.compact-card .card-icon {
    font-size: 1.2em;
    line-height: 1;
}
.compact-card .card-trigger {
    font-size: 14px;
    color: #5a6b7e;
    line-height: 1.4;
    margin-bottom: 14px;
    flex: 1;
}
.compact-card .card-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.compact-card .card-cta:hover {
    color: var(--cyan);
    transform: translateX(4px);
}
.compact-card:hover {
    border-color: var(--cyan);
    background: #f6faff;
    box-shadow: 0 8px 25px rgba(0, 108, 255, 0.05);
    transform: translateY(-2px);
}

.priority-section {
    margin-top: 60px;
    padding: 40px 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    border: 1px solid #e9edf2;
}
.priority-section h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--navy);
    text-align: center;
}
.priority-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 40px;
    text-align: left;
}
.priority-form label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #344456;
    cursor: pointer;
}
.priority-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
}
.priority-form button {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 20px;
    background: var(--navy);
    color: white;
    border: none;
    padding: 16px 60px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.priority-form button:hover {
    background: var(--blue);
}

/* Offer Banner */
.offer-banner {
    background: linear-gradient(135deg, #0a1a2e, #001f3e);
    border-top: 2px solid var(--cyan);
    border-bottom: 2px solid var(--cyan);
    padding: 40px 0;
    margin: 20px 0;
}
.offer-content {
    text-align: center;
}
.offer-tag {
    display: inline-block;
    background: rgba(0, 217, 255, 0.15);
    color: var(--cyan);
    padding: 4px 16px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}
.offer-content h3 {
    font-size: 26px;
    color: white;
    margin-bottom: 8px;
}
.offer-content h3 span {
    color: var(--cyan);
}
.offer-content p {
    color: #c5d1df;
    font-size: 15px;
    margin-bottom: 25px;
}
.offer-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.button-outline-dark {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 14px 25px;
    background: transparent;
}
.button-outline-dark:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

/* ============================================================
   ADMIN PANEL – REUSABLE COMPONENTS
   ============================================================ */

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.admin-card {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 20px;
}
.admin-card h3 {
    color: var(--white);
    font-size: 16px;
    margin: 0 0 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th {
    text-align: left;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    color: #8899aa;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.admin-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: #c5d1df;
    vertical-align: middle;
}
.admin-table tr:hover td {
    background: rgba(255,255,255,0.02);
}
.admin-table .badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}
.admin-table .badge-active {
    background: rgba(0,200,150,0.15);
    color: #00c896;
}
.admin-table .badge-inactive {
    background: rgba(255,107,107,0.15);
    color: #ff6b6b;
}
.admin-table .badge-warning {
    background: rgba(255,193,7,0.15);
    color: #ffc107;
}
.admin-table .badge-info {
    background: rgba(0,217,255,0.15);
    color: var(--cyan);
}

.admin-btn {
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.admin-btn-primary {
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    color: var(--navy);
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}
.admin-btn-primary:hover {
    box-shadow: 0 0 20px rgba(0,217,255,0.3);
}
.admin-btn-edit {
    background: rgba(0,217,255,0.1);
    color: var(--cyan);
    border: 1px solid rgba(0,217,255,0.1);
}
.admin-btn-edit:hover {
    background: rgba(0,217,255,0.2);
}
.admin-btn-delete {
    background: rgba(255,107,107,0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255,107,107,0.1);
}
.admin-btn-delete:hover {
    background: rgba(255,107,107,0.2);
}
.admin-btn-success {
    background: rgba(0,200,150,0.15);
    color: #00c896;
    border: 1px solid rgba(0,200,150,0.2);
}
.admin-btn-success:hover {
    background: rgba(0,200,150,0.25);
}
.admin-btn-danger {
    background: rgba(255,107,107,0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255,107,107,0.2);
}
.admin-btn-danger:hover {
    background: rgba(255,107,107,0.25);
}
.admin-btn-warning {
    background: rgba(255,193,7,0.15);
    color: #ffc107;
    border: 1px solid rgba(255,193,7,0.2);
}
.admin-btn-warning:hover {
    background: rgba(255,193,7,0.25);
}
.admin-btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: #c5d1df;
    background: transparent;
}
.admin-btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.admin-toolbar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.back-link {
    color: var(--cyan);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}
.back-link:hover {
    color: var(--white);
}

/* ============================================================
   ADMIN NAVIGATION
   ============================================================ */

.admin-nav {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 20px;
    margin-bottom: 20px;
}
.admin-nav .nav-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}
.admin-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
    align-items: center;
}
.admin-nav .nav-menu li {
    position: relative;
}
.admin-nav .nav-menu a {
    color: #c5d1df;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    display: block;
    transition: 0.2s;
}
.admin-nav .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}
.admin-nav .nav-menu .has-dropdown > a::after {
    content: " ▾";
    font-size: 10px;
}
.admin-nav .nav-menu .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0a0e14;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    min-width: 180px;
    padding: 6px 0;
    z-index: 1000;
}
.admin-nav .nav-menu .has-dropdown:hover .dropdown {
    display: block;
}
.admin-nav .nav-menu .dropdown a {
    padding: 6px 16px;
    font-size: 13px;
    color: #c5d1df;
}
.admin-nav .nav-menu .dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}
@media (max-width: 768px) {
    .admin-nav .nav-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .admin-nav .nav-menu {
        flex-direction: column;
    }
    .admin-nav .nav-menu .dropdown {
        position: static;
    }
    .admin-nav .nav-menu .has-dropdown:hover .dropdown {
        display: none;
    }
    .admin-nav .nav-menu .has-dropdown.open .dropdown {
        display: block;
    }
}

/* ============================================================
   DASHBOARD SPECIFIC
   ============================================================ */

.dashboard-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}
.dashboard-header .title h1 {
    font-size: 28px;
    margin: 0;
}
.dashboard-header .title span {
    color: #667487;
    font-size: 14px;
}

.stats-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.stats-compact .stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    white-space: nowrap;
}
.stats-compact .stat-item .number {
    font-weight: 700;
    color: var(--cyan);
    font-size: 18px;
}
.stats-compact .stat-item .label {
    color: #8899aa;
}
.stats-compact .stat-item a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    margin-left: 4px;
}
.stats-compact .stat-item a:hover {
    text-decoration: underline;
}
.stats-compact .stat-item.interest .number {
    color: #ffc107;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 10px;
}
.dashboard-grid .full-width {
    grid-column: 1 / -1;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
}
.dashboard-card h3 {
    color: var(--white);
    font-size: 16px;
    margin: 0 0 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dashboard-card h3 .badge {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 600;
}
.dashboard-card .no-items {
    color: #667487;
    padding: 10px 0;
}
.dashboard-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}
.dashboard-card ul li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: #c5d1df;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dashboard-card ul li:last-child {
    border-bottom: none;
}
.dashboard-card ul li a {
    color: var(--cyan);
    text-decoration: none;
}
.dashboard-card ul li a:hover {
    color: var(--white);
}
.dashboard-card ul li .date {
    color: #667487;
    font-size: 12px;
}

.warning-item {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 14px;
    color: #c5d1df;
}
.warning-item:last-child {
    border-bottom: none;
}
.warning-item .danger {
    color: #ff6b6b;
}
.warning-item .warning {
    color: #f5b342;
}
.no-warnings {
    color: #0f0;
    font-weight: 600;
    padding: 10px 0;
}

.upcoming-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    align-items: center;
}
.upcoming-item:last-child {
    border-bottom: none;
}
.upcoming-item .course {
    color: var(--white);
    font-weight: 600;
}
.upcoming-item .facilitator {
    color: var(--cyan);
    font-size: 13px;
}
.upcoming-item .date {
    color: #8899aa;
    font-size: 12px;
}
.schedule-link {
    color: var(--cyan);
    text-decoration: none;
    font-size: 12px;
    margin-left: 12px;
}
.schedule-link:hover {
    color: var(--white);
}

.notification-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    align-items: center;
}
.notification-item:last-child {
    border-bottom: none;
}
.notification-item .msg {
    color: #c5d1df;
    font-size: 14px;
}
.notification-item .msg strong {
    color: var(--white);
}
.action-link {
    padding: 4px 12px;
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
}
.action-link:hover {
    background: rgba(0, 217, 255, 0.2);
}

.interest-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    align-items: center;
}
.interest-item:last-child {
    border-bottom: none;
}
.interest-item .course-name {
    color: var(--white);
    font-weight: 600;
}
.interest-item .count {
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}
.btn-notify {
    padding: 4px 12px;
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
}
.btn-notify:hover {
    background: rgba(0, 217, 255, 0.2);
}

/* ============================================================
   ADMIN FORM ELEMENTS
   ============================================================ */

.form-container {
    max-width: 700px;
    margin: 0 auto;
}
.form-container.form-wide {
    max-width: 1100px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    color: #c5d1df;
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 14px;
}
.form-group textarea {
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
.help-text {
    color: #667487;
    font-size: 12px;
    margin-top: 4px;
}
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #c5d1df;
    font-weight: normal;
    cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
    width: auto;
    accent-color: var(--cyan);
}

.error-msg {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}
.success-msg {
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.15);
    color: var(--cyan);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}
.no-items {
    text-align: center;
    padding: 60px 0;
    color: #8899aa;
}
.room-count {
    color: #8899aa;
    font-size: 12px;
}
.msg-box {
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.15);
    color: var(--cyan);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

/* ============================================================
   SESSION ITEMS (for schedules)
   ============================================================ */

.session-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.session-item .session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.session-item .session-header h4 {
    margin: 0;
    color: var(--cyan);
}
.session-item .remove-session {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 20px;
    padding: 4px 8px;
}
.session-item .session-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}
.session-item input[type="date"],
.session-item input[type="time"] {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}
.add-session-btn {
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}
.add-session-btn:hover {
    background: rgba(0, 217, 255, 0.2);
}
.session-counter {
    margin-top: 6px;
    font-size: 13px;
    color: #8899aa;
}
.date-warning {
    color: #ff6b6b;
    font-size: 12px;
    font-weight: 600;
    display: none;
}
.date-warning.show {
    display: inline;
}
.facilitator-warning {
    color: #f5b342;
    font-size: 12px;
    margin-top: 4px;
}

/* ============================================================
   PHASE ITEMS (for pathways)
   ============================================================ */

.phase-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}
.phase-item .phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.phase-item .phase-header h4 {
    margin: 0;
    color: var(--cyan);
}
.phase-item .phase-header .remove-phase {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 20px;
}
.phase-course-select {
    display: flex;
    gap: 8px;
    align-items: center;
}
.phase-course-select select {
    flex: 1;
}
.phase-course-select button {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background: var(--cyan);
    color: var(--navy);
    font-weight: 700;
    cursor: pointer;
}
.phase-courses-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.phase-course-tag {
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.phase-course-tag .remove-tag {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 14px;
    padding: 0 4px;
}
.add-phase-btn {
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}
.add-phase-btn:hover {
    background: rgba(0, 217, 255, 0.2);
}

/* ============================================================
   FAQ ITEMS (for courses/pathways)
   ============================================================ */

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: start;
}
.faq-item .faq-fields {
    flex: 1;
}
.faq-item .faq-fields input {
    margin-bottom: 6px;
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}
.faq-item .remove-faq {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 20px;
    padding: 4px 8px;
}
.add-faq-btn {
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}
.add-faq-btn:hover {
    background: rgba(0, 217, 255, 0.2);
}

/* ============================================================
   IMAGE UPLOAD
   ============================================================ */

.image-upload-group {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.image-upload-group input[type="text"] {
    flex: 1;
    min-width: 150px;
}
.image-preview {
    max-height: 60px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================
   ROOM ITEMS (for branches)
   ============================================================ */

.room-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.room-item .room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.room-item .room-header h4 {
    margin: 0;
    color: var(--cyan);
}
.room-item .remove-room {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 20px;
}
.add-room-btn {
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}
.add-room-btn:hover {
    background: rgba(0, 217, 255, 0.2);
}

/* ============================================================
   FILTER BAR (for POEs, schedules, etc.)
   ============================================================ */

.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.filter-bar a {
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
    color: #8899aa;
    border: 1px solid transparent;
}
.filter-bar a.active {
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
    border-color: rgba(0, 217, 255, 0.2);
}
.filter-bar a:hover {
    color: var(--white);
}

/* ============================================================
   REJECT FORM (for POEs)
   ============================================================ */

.reject-form {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}
.reject-form input[type="text"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    width: 120px;
}
.reject-form input[type="text"]:focus {
    border-color: var(--cyan);
    outline: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {
    .nav-list {
        display: none;
    }
    .nav-button {
        display: none;
    }
    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .mobile-menu span {
        width: 26px;
        height: 2px;
        background: white;
        display: block;
        margin: 5px 0;
    }
    .nav-list.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 88px;
        left: 0;
        width: 100%;
        background: rgba(2, 9, 20, 0.98);
        backdrop-filter: blur(18px);
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 217, 255, 0.2);
        z-index: 999;
        overflow-y: auto;
        height: calc(100vh - 88px);
    }
    .nav-list.mobile-open .has-dropdown>a::after {
        content: "+";
        float: right;
    }
    .nav-list.mobile-open .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: none;
        border: none;
        padding: 10px 0 10px 20px;
        width: 100%;
    }
    .service-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .about-grid,
    .contact-grid,
    .policy-inner,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .glass-panel {
        padding: 30px;
    }
    .hero-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .hero-bottom div {
        border: none;
        padding: 5px;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .popia-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .floating-contact {
        bottom: 20px;
    }
    .float-menu {
        right: 55px;
        min-width: 180px;
    }
    .modal-content {
        flex-direction: column;
        padding: 20px;
    }
    .modal-img img {
        max-height: 300px;
    }
    .gallery-track img {
        height: 250px;
    }
    .priority-form {
        grid-template-columns: 1fr;
    }
    .priority-section {
        padding: 30px 20px;
    }
    .compact-card {
        min-height: 150px;
        padding: 18px 16px;
    }
    .clients-section {
        padding: 40px 0;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-row-3 {
        grid-template-columns: 1fr;
    }
    .session-item .session-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-nav .nav-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .admin-nav .nav-menu {
        flex-direction: column;
    }
    .admin-nav .nav-menu .dropdown {
        position: static;
    }
    .admin-nav .nav-menu .has-dropdown:hover .dropdown {
        display: none;
    }
    .admin-nav .nav-menu .has-dropdown.open .dropdown {
        display: block;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-header {
        flex-direction: column;
        align-items: stretch;
    }
    .stats-compact {
        justify-content: flex-start;
    }
    .dashboard-card {
        padding: 12px 14px;
    }
    .reject-form input[type="text"] {
        width: 100px;
    }
}

@media (max-width: 600px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-compact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .hero h1 {
        font-size: clamp(36px, 8vw, 55px);
    }
    .hero-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 15px;
    }
    .hero-bottom strong {
        font-size: 16px;
    }
    .hero-bottom span {
        font-size: 8px;
    }
    .section {
        padding: 60px 0;
    }
    .section-heading h2 {
        font-size: clamp(28px, 6vw, 38px);
    }
    .clients-heading h2 {
        font-size: 28px;
    }
    .client-item {
        width: 140px;
        height: 80px;
        margin: 0 10px;
        padding: 10px;
    }
    .client-item img {
        max-height: 40px;
    }
    .team-card .team-avatar {
        width: 80px;
        height: 80px;
    }
    .team-card .team-avatar .avatar-fallback {
        font-size: 28px;
        line-height: 80px;
    }
    .team-card .team-name {
        font-size: 15px;
    }
    .team-card .team-position {
        font-size: 12px;
    }
    .test-quote {
        font-size: 16px;
    }
    .testimonial-carousel {
        gap: 10px;
    }
    .test-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .modal-content {
        padding: 15px;
        gap: 15px;
    }
    .modal-bio h1 {
        font-size: 24px;
    }
    .modal-img img {
        max-height: 200px;
    }
    .policy-inner {
        gap: 30px;
    }
    .policy-links {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        gap: 30px;
    }
    .contact-details a {
        padding: 12px 15px;
        font-size: 14px;
    }
    .about-stat-card {
        padding: 25px;
        min-height: 200px;
    }
    .stat-number {
        font-size: 50px;
    }
    .compact-card {
        padding: 16px 14px;
        min-height: 130px;
    }
    .compact-card h4 {
        font-size: 18px;
    }
    .compact-card .bg-number {
        font-size: 56px;
    }
    .our-why.compact h2 {
        font-size: 32px;
    }
    .priority-section {
        padding: 20px 14px;
    }
    .priority-section h3 {
        font-size: 20px;
    }
    .offer-content h3 {
        font-size: 18px;
    }
    .clients-section {
        padding: 30px 0;
    }
    .stats-compact .stat-item {
        font-size: 12px;
        padding: 4px 10px;
    }
    .stats-compact .stat-item .number {
        font-size: 15px;
    }
}