/* =========================================================
   SORE SPORTS MANAGEMENT
   Premium Sports Agency Website
   ========================================================= */

/* =========================
   1. RESET & VARIABLES
   ========================= */

:root {
    --navy-950: #06101d;
    --navy-900: #081525;
    --navy-850: #0b1a2d;
    --navy-800: #102238;
    --navy-700: #18304a;

    --orange: #f47b20;
    --orange-dark: #d9630e;
    --orange-light: #ff9845;

    --white: #ffffff;
    --off-white: #f7f8fa;
    --light: #eef1f5;
    --text: #17212b;
    --muted: #687585;
    --border: rgba(8, 21, 37, 0.12);

    --shadow-sm: 0 8px 25px rgba(6, 16, 29, 0.08);
    --shadow-md: 0 18px 45px rgba(6, 16, 29, 0.14);
    --shadow-lg: 0 30px 70px rgba(6, 16, 29, 0.22);

    --container: 1240px;
    --header-height: 82px;

    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

ul {
    list-style: none;
}

.container {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}

.section-light {
    background: var(--white);
}

.section-dark {
    background: var(--navy-900);
    color: var(--white);
}


/* =========================
   2. HEADER
   ========================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;

    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    border-bottom: none;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 170px;
    height: auto;
    display: block;
    object-fit: contain;
}

.brand-mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;

    background: var(--orange);
    color: var(--white);

    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.5px;

    transform: skew(-8deg);
}

.brand-text {
    color: var(--white);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
}

.main-nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);

    transition: color var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--orange);
    transition: width var(--transition);
}

.main-nav a:hover {
    color: var(--white);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions .btn {
    padding: 11px 17px;
    font-size: 12px;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.20);
}

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    background: transparent;
    color: var(--white);

    font-size: 25px;
    cursor: pointer;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}


/* =========================
   3. BUTTONS
   ========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 13px 21px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;

    border-radius: 2px;
    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 12px 28px rgba(244, 123, 32, 0.25);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy-900);
}

.btn-large {
    padding: 15px 25px;
    font-size: 13px;
}


/* =========================
   4. HERO SLIDER
   ========================= */

.hero-slider {
    position: relative;
    height: min(820px, 100vh);
    min-height: 650px;

    background: var(--navy-950);
    color: var(--white);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-background {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.04);
    transition: transform 7s ease;
}

.hero-slide.active .hero-slide-background {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6, 16, 29, 0.96) 0%,
            rgba(6, 16, 29, 0.78) 40%,
            rgba(6, 16, 29, 0.38) 72%,
            rgba(6, 16, 29, 0.60) 100%
        );
}

.hero-slide-container {
    position: relative;
    z-index: 2;

    height: 100%;
    width: min(100% - 48px, var(--container));
    margin-inline: auto;

    display: flex;
    align-items: center;
}

.hero-slide-content {
    max-width: 780px;
    padding-top: 70px;
}

.hero-slide-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.hero-slide-label::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--orange);
}

.hero-slide h1 {
    max-width: 850px;

    font-size: clamp(45px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-slide h1 span {
    color: var(--orange);
}

.hero-slide p {
    max-width: 650px;

    margin-top: 27px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.7;
}

.hero-slide-actions {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 35px;
}

.hero-link {
    color: var(--white);
    font-size: 13px;
    font-weight: 800;

    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding-bottom: 3px;

    transition: color var(--transition);
}

.hero-link:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.hero-slide-counter {
    position: absolute;
    right: 0;
    bottom: 135px;

    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-slider-navigation {
    position: absolute;
    z-index: 5;

    left: 50%;
    bottom: 45px;

    width: min(100% - 48px, var(--container));
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-slider-prev,
.hero-slider-next {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);

    color: var(--white);
    font-size: 18px;

    cursor: pointer;
    transition: all var(--transition);
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.hero-slider-progress {
    flex: 1;
    height: 2px;

    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.hero-progress-active {
    display: block;
    width: 14.28%;
    height: 100%;

    background: var(--orange);

    transition: width 0.5s ease;
}

.hero-slider-scroll {
    position: absolute;
    right: 0;
    bottom: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    writing-mode: vertical-rl;
}

.scroll-line {
    display: block;

    width: 1px;
    height: 55px;

    margin-bottom: 10px;

    background: rgba(255, 255, 255, 0.35);
}


/* =========================
   5. GENERAL SECTION
   ========================= */

.intro-section,
.network-section,
.contact-section {
    padding: 105px 0;
}

.expertise-section,
.team-section {
    padding: 105px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 25px;
    height: 2px;
    background: currentColor;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: end;
}

.intro-section h2,
.network-section h2,
.team-section h2,
.contact-section h2 {
    margin-top: 18px;

    color: var(--navy-900);

    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-dark h2 {
    color: var(--white);
}

.intro-lead {
    color: var(--text);
    font-size: 18px;
    line-height: 1.75;
}

.intro-content p + p {
    margin-top: 15px;
}

.text-link {
    display: inline-flex;
    margin-top: 24px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;

    border-bottom: 1px solid rgba(244, 123, 32, 0.35);
    padding-bottom: 4px;
}

.numbers-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 80px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.number-item {
    padding: 27px 20px;

    border-right: 1px solid var(--border);
}

.number-item:last-child {
    border-right: 0;
}

.number-value {
    color: var(--navy-900);

    font-size: 35px;
    font-weight: 900;
    letter-spacing: -1px;
}

.number-label {
    margin-top: 4px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================
   6. EXPERTISE
   ========================= */

.expertise-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 55px;
}

.expertise-header p {
    max-width: 540px;

    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
}

.expertise-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 490px;

    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-menu {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-item {
    position: relative;

    width: 100%;
    min-height: 80px;

    display: flex;
    align-items: center;
    gap: 20px;

    padding: 18px 28px;

    background: transparent;
    color: rgba(255, 255, 255, 0.58);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    text-align: left;
    cursor: pointer;

    transition: all var(--transition);
}

.expertise-item:last-child {
    border-bottom: 0;
}

.expertise-item:hover,
.expertise-item.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.expertise-item::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background: var(--orange);

    transform: scaleY(0);
    transition: transform var(--transition);
}

.expertise-item.active::before {
    transform: scaleY(1);
}

.expertise-number {
    min-width: 32px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.expertise-name {
    font-size: 14px;
    font-weight: 800;
}

.expertise-display {
    position: relative;
    padding: 50px;
}

.expertise-panel {
    display: none;
    height: 100%;
}

.expertise-panel.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    animation: expertiseFade 0.35s ease;
}

@keyframes expertiseFade {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.expertise-panel-number {
    color: rgba(255, 255, 255, 0.12);

    font-size: 75px;
    line-height: 0.8;
    font-weight: 900;
}

.expertise-panel h3 {
    margin-top: 20px;

    color: var(--white);

    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

.expertise-panel p {
    max-width: 600px;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 15px;
    line-height: 1.75;
}

.expertise-panel ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;

    margin-top: 25px;
}

.expertise-panel li {
    position: relative;
    padding-left: 17px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 12px;
    font-weight: 600;
}

.expertise-panel li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 9px;

    width: 5px;
    height: 5px;

    background: var(--orange);
}

.expertise-panel .btn {
    align-self: flex-start;
    margin-top: 35px;
}


/* =========================
   7. NETWORK
   ========================= */

.network-header {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}

.network-header p {
    max-width: 570px;

    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.network-card {
    position: relative;

    min-height: 300px;
    padding: 35px 30px;

    background: var(--off-white);

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.network-card:last-child {
    border-right: 0;
}

.network-card::after {
    content: "";

    position: absolute;
    right: -40px;
    bottom: -40px;

    width: 120px;
    height: 120px;

    border: 1px solid rgba(244, 123, 32, 0.18);
    border-radius: 50%;
}

.network-card:hover {
    background: var(--navy-900);
    color: var(--white);
    transform: translateY(-5px);
}

.network-code {
    color: var(--orange);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.network-card h3 {
    margin-top: 80px;

    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
}

.network-card p {
    margin-top: 8px;

    color: var(--muted);
    font-size: 13px;
}

.network-card:hover p {
    color: rgba(255, 255, 255, 0.6);
}

.network-arrow {
    position: absolute;
    left: 30px;
    bottom: 28px;

    color: var(--orange);
    font-size: 20px;
}


/* =========================
   8. TEAM
   ========================= */

.team-header {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}

.team-header p {
    max-width: 560px;

    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
}

.team-grid {
    display: grid;
    gap: 18px;
}

.team-grid-five {
    grid-template-columns: repeat(5, 1fr);
}

.team-card {
    background: var(--navy-850);
    border: 1px solid rgba(255, 255, 255, 0.08);

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.team-card:hover {
    transform: translateY(-7px);
    border-color: rgba(244, 123, 32, 0.55);
}

.team-photo {
    position: relative;

    height: 315px;

    background: var(--navy-700);
    overflow: hidden;
}

.team-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(6, 16, 29, 0.55),
        transparent 50%
    );

    pointer-events: none;
}

.team-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-details {
    padding: 22px 20px 25px;
}

.team-details h3 {
    color: var(--white);

    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.team-details p {
    margin-top: 7px;

    color: var(--orange);

    font-size: 10px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}


/* =========================
   9. CTA
   ========================= */

.cta-section {
    position: relative;

    padding: 95px 0;

    background:
        linear-gradient(
            100deg,
            var(--orange) 0%,
            var(--orange-dark) 100%
        );

    color: var(--white);

    overflow: hidden;
}

.cta-section::after {
    content: "SSM";

    position: absolute;
    right: -25px;
    bottom: -85px;

    color: rgba(255, 255, 255, 0.08);

    font-size: 230px;
    line-height: 1;
    font-weight: 900;
}

.cta-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.cta-section .section-label {
    color: var(--white);
}

.cta-section h2 {
    max-width: 800px;

    margin-top: 17px;

    font-size: clamp(35px, 4.5vw, 62px);
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 900;
    text-transform: uppercase;
}

.cta-section .btn {
    flex-shrink: 0;

    background: var(--navy-900);
    color: var(--white);
}

.cta-section .btn:hover {
    background: var(--white);
    color: var(--navy-900);
}


/* =========================
   10. CONTACT
   ========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
}

.contact-copy > p {
    max-width: 510px;

    margin-top: 22px;

    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.contact-points {
    display: grid;
    gap: 22px;

    margin-top: 40px;
}

.contact-point {
    padding-left: 18px;

    border-left: 2px solid var(--orange);
}

.contact-point span {
    display: block;

    color: var(--muted);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-point strong {
    display: block;

    margin-top: 3px;

    color: var(--navy-900);

    font-size: 14px;
}

.contact-form-wrapper {
    padding: 42px;

    background: var(--off-white);
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;

    color: var(--navy-900);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    color: var(--text);
    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 0;

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.08);
}

.form-group textarea {
    min-height: 145px;
    resize: vertical;
}

.form-submit {
    margin-top: 4px;
}

.form-message {
    display: none;

    padding: 12px 15px;

    font-size: 13px;
}

.form-message.show {
    display: block;
}


/* =========================
   11. FOOTER
   ========================= */

.site-footer {
    padding: 70px 0 25px;

    background: var(--navy-950);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 55px;

    padding-bottom: 55px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    max-width: 320px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 13px;
    line-height: 1.7;
}

.footer-column h4 {
    margin-bottom: 18px;

    color: var(--white);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-column a {
    display: block;

    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 12px;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    padding-top: 22px;

    color: rgba(255, 255, 255, 0.38);

    font-size: 10px;
}


/* =========================
   12. LOGIN PAGE
   Premium SSM Login
   ========================= */

.login-page {
    min-height: 100vh;
    margin: 0;
    background: var(--navy-950);
    color: var(--white);
    overflow-x: hidden;
}

/* Écran principal */

.login-screen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(244, 123, 32, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(24, 48, 74, 0.45),
            transparent 35%
        ),
        var(--navy-950);
}

/* Fond décoratif */

.login-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.login-grid {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 90%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        black,
        transparent 90%
    );
}

.login-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.login-glow-one {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -100px;
    background: rgba(244, 123, 32, 0.08);
}

.login-glow-two {
    width: 360px;
    height: 360px;
    bottom: -180px;
    left: -120px;
    background: rgba(24, 48, 74, 0.5);
}

/* Contenu */

.login-wrapper {
    position: relative;
    z-index: 2;
    width: min(100%, 470px);
}

/* Logo SSM */

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 28px;
    color: var(--white);
}

.login-logo::before {
    content: "SSM";
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-right: 13px;
    background: var(--orange);
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -1px;
    transform: skew(-8deg);
}

.login-logo::after {
    content: "SORE SPORTS\A MANAGEMENT";
    white-space: pre;
    color: var(--white);
    font-size: 15px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Carte */

.login-box {
    position: relative;
    width: 100%;
    padding: 42px;
    background: rgba(16, 34, 56, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* Ligne orange supérieure */

.login-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 3px;
    background: var(--orange);
}

/* En-tête */

.login-heading {
    margin-bottom: 30px;
}

.login-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.login-label span {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--orange);
}

.login-heading h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(35px, 6vw, 48px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.login-description {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.65;
}

.login-description strong {
    color: rgba(255, 255, 255, 0.82);
}

/* Formulaire */

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form-group {
    display: flex;
    flex-direction: column;
}

.login-form-group label {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Champs */

.login-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-icon {
    position: absolute;
    left: 15px;
    z-index: 2;
    color: var(--orange);
    font-size: 13px;
    pointer-events: none;
}

.login-input-wrap input {
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 14px 15px 14px 43px;
    color: var(--white);
    background: var(--navy-900);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    outline: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.login-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.30);
}

.login-input-wrap input:focus {
    background: var(--navy-850);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.10);
}

/* Bouton afficher mot de passe */

.password-toggle {
    position: absolute;
    right: 10px;
    width: auto !important;
    padding: 6px 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: color var(--transition);
}

.password-toggle:hover {
    color: var(--orange);
}

/* Options */

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: -3px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    cursor: pointer;
}

.remember input {
    width: 14px;
    height: 14px;
    margin: 0;
    accent-color: var(--orange);
    cursor: pointer;
}

.login-options a {
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    transition: color var(--transition);
}

.login-options a:hover {
    color: var(--orange-light);
}

/* Bouton connexion */

.login-submit {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: var(--orange);
    color: var(--white);
    border: 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.login-submit b {
    font-size: 20px;
    font-weight: 400;
}

.login-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(244, 123, 32, 0.24);
}

/* Message */

.login-message {
    display: none;
    margin: 0;
    padding: 11px 13px;
    background: rgba(244, 123, 32, 0.08);
    border-left: 2px solid var(--orange);
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    line-height: 1.5;
}

.login-message:not(:empty) {
    display: block;
}

/* Séparateur */

.login-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 0 22px;
}

.login-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.09);
}

.login-divider span {
    position: relative;
    z-index: 1;
    padding: 0 13px;
    background: var(--navy-850);
    color: rgba(255, 255, 255, 0.35);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

/* Création de compte */

.login-account {
    text-align: center;
}

.login-account p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

.create-account {
    display: inline-flex;
    margin-top: 8px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    transition: color var(--transition);
}

.create-account:hover {
    color: var(--orange-light);
}

/* Retour au site */

.return-site {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 27px;
    color: rgba(255, 255, 255, 0.40);
    font-size: 11px;
    font-weight: 700;
    transition: color var(--transition);
}

.return-site span {
    color: var(--orange);
    font-size: 16px;
}

.return-site:hover {
    color: var(--white);
}

/* Footer connexion */

.login-footer {
    margin: 20px 0 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.30);
    font-size: 9px;
    letter-spacing: 0.5px;
}

.login-footer span {
    margin: 0 5px;
    color: var(--orange);
}

/* Responsive */

@media (max-width: 520px) {

    .login-screen {
        padding: 30px 15px;
    }

    .login-wrapper {
        width: 100%;
    }

    .login-box {
        padding: 32px 22px;
    }

    .login-heading h1 {
        font-size: 38px;
    }

    .login-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .login-logo {
        margin-bottom: 22px;
    }

    .login-logo::before {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .login-logo::after {
        font-size: 13px;
    }
}.login-logo {
    display: block;
    width: 150px;
    margin: 0 auto 28px;
}

.login-logo img {
    display: block;
    width: 150px;
    height: auto;
    max-width: 150px;
    margin: 0 auto;
}


/* =========================
   13. DASHBOARD
   Scoped dashboard styles
   ========================= */

.dashboard-page {
    min-height: 100vh;
    background: #f2f4f7;
    color: var(--text);
}

.dashboard-layout {
    min-height: 100vh;
    display: flex;
}

.dashboard-sidebar {
    width: 255px;
    flex-shrink: 0;

    background: var(--navy-950);
    color: var(--white);

    padding: 25px 18px;
}

.dashboard-sidebar .brand {
    margin-bottom: 40px;
}

.dashboard-sidebar nav a {
    display: block;

    padding: 12px 15px;
    margin-bottom: 4px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 13px;
    font-weight: 700;

    transition: all var(--transition);
}

.dashboard-sidebar nav a:hover,
.dashboard-sidebar nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border-left: 3px solid var(--orange);
}

.dashboard-main {
    flex: 1;
    min-width: 0;

    padding: 35px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 30px;
}

.dashboard-content {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border);
}


/* =========================
   14. ACCESSIBILITY
   ========================= */

:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}


/* =========================
   15. RESPONSIVE — 1100px
   ========================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 17px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .header-actions .btn {
        padding-inline: 13px;
    }

    .intro-grid,
    .network-header,
    .team-header {
        gap: 45px;
    }

    .network-card {
        min-height: 270px;
    }

    .team-grid-five {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-card:nth-child(4),
    .team-card:nth-child(5) {
        grid-column: span 1;
    }

    .team-photo {
        height: 290px;
    }

    .contact-grid {
        gap: 60px;
    }
}


/* =========================
   16. RESPONSIVE — 850px
   ========================= */

@media (max-width: 850px) {

    :root {
        --header-height: 72px;
    }

    .container {
        width: min(100% - 34px, var(--container));
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 25px;

        background: var(--navy-950);

        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 0;
        font-size: 14px;
    }

    .main-nav a::after {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero-slider {
        min-height: 620px;
        height: 82vh;
    }

    .hero-slide h1 {
        letter-spacing: -2px;
    }

    .hero-slide-counter {
        right: 20px;
        bottom: 110px;
    }

    .hero-slider-scroll {
        display: none;
    }

    .intro-grid,
    .network-header,
    .team-header,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        gap: 30px;
    }

    .numbers-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .number-item:nth-child(2) {
        border-right: 0;
    }

    .number-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .expertise-header {
        display: block;
    }

    .expertise-header p {
        margin-top: 20px;
    }

    .expertise-layout {
        grid-template-columns: 1fr;
    }

    .expertise-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .expertise-item {
        min-height: 68px;
        padding: 15px 18px;
    }

    .expertise-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .expertise-display {
        min-height: 450px;
    }

    .network-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .network-card:nth-child(2) {
        border-right: 0;
    }

    .network-card:nth-child(3),
    .network-card:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .team-grid-five {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
        display: block;
    }

    .cta-inner .btn {
        margin-top: 30px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }

    .dashboard-sidebar {
        width: 210px;
    }
}


/* =========================
   17. RESPONSIVE — 700px
   ========================= */

@media (max-width: 700px) {

    .intro-section,
    .network-section,
    .contact-section,
    .expertise-section,
    .team-section {
        padding: 75px 0;
    }

    .hero-slide-content {
        padding-top: 55px;
    }

    .hero-slide h1 {
        font-size: clamp(40px, 12vw, 65px);
    }

    .hero-slide p {
        font-size: 15px;
    }

    .hero-slide-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .hero-slider-navigation {
        bottom: 28px;
    }

    .expertise-display {
        padding: 35px 25px;
    }

    .expertise-panel ul {
        grid-template-columns: 1fr;
    }

    .team-photo {
        height: 320px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .dashboard-layout {
        display: block;
    }

    .dashboard-sidebar {
        width: 100%;
        min-height: auto;
    }

    .dashboard-sidebar nav {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .dashboard-sidebar nav a {
        margin: 0;
    }

    .dashboard-main {
        padding: 20px;
    }
}


/* =========================
   18. RESPONSIVE — 480px
   ========================= */

@media (max-width: 480px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .brand-text {
        font-size: 14px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .hero-slider {
        min-height: 590px;
    }

    .hero-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(6, 16, 29, 0.94),
                rgba(6, 16, 29, 0.68)
            );
    }

    .hero-slide h1 {
        font-size: 42px;
        line-height: 1;
    }

    .hero-slide p {
        font-size: 14px;
    }

    .hero-slider-navigation {
        width: calc(100% - 28px);
    }

    .hero-slide-counter {
        display: none;
    }

    .numbers-strip {
        grid-template-columns: 1fr;
    }

    .number-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .number-item:last-child {
        border-bottom: 0;
    }

    .expertise-menu {
        grid-template-columns: 1fr;
    }

    .expertise-item:nth-child(odd) {
        border-right: 0;
    }

    .expertise-display {
        min-height: 500px;
        padding: 30px 20px;
    }

    .expertise-panel-number {
        font-size: 55px;
    }

    .network-grid,
    .team-grid-five {
        grid-template-columns: 1fr;
    }

    .network-card,
    .network-card:nth-child(2),
    .network-card:nth-child(3),
    .network-card:nth-child(4) {
        border-right: 0;
        border-top: 0;
    }

    .network-card + .network-card {
        border-top: 1px solid var(--border);
    }

    .team-photo {
        height: 380px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .login-container {
        padding: 30px 22px;
    }
}


/* =========================
   19. REDUCED MOTION
   ========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}/* =========================================================
   SÉLECTEUR DE LANGUE
========================================================= */

.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.language-button {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #ffffff;
    padding: 10px 13px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.language-button:hover {
    border-color: #f58220;
    color: #f58220;
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 150px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    z-index: 1000;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu button {
    width: 100%;
    display: block;
    border: none;
    background: transparent;
    color: #172033;
    padding: 10px 12px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.language-menu button:hover {
    background: #f5f6f8;
    color: #f58220;
}


/* MOBILE */

@media (max-width: 850px) {

    .language-switcher {
        width: 100%;
    }

    .language-button {
        width: 100%;
        text-align: left;
    }

    .language-menu {
        position: static;
        width: 100%;
        margin-top: 6px;
        box-shadow: none;
    }

}/* Correction définitive - logo page connexion */
body.login-page .login-logo {
    display: block !important;
    width: 90px !important;
    max-width: 90px !important;
    margin: 0 auto 25px !important;
}

body.login-page .login-logo img {
    display: block !important;
    width: 90px !important;
    max-width: 90px !important;
    height: auto !important;
    max-height: 70px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}/* SUPPRESSION DU LOGO TEXTE - PAGE CONNEXION */

body.login-page .login-logo::before,
body.login-page .login-logo::after {
    content: none !important;
    display: none !important;
}

/* Vrai logo image uniquement */
body.login-page .login-logo {
    display: block !important;
    width: 90px !important;
    max-width: 90px !important;
    margin: 0 auto 25px !important;
}

body.login-page .login-logo img {
    display: block !important;
    width: 90px !important;
    max-width: 90px !important;
    height: auto !important;
    max-height: 70px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}/* =========================================================
   SORE SPORTS MANAGEMENT
   ADMIN DASHBOARD — DESIGN COMPLET
   ========================================================= */

body.dashboard-body {
    margin: 0;
    min-height: 100vh;
    background: #f3f5f8;
    color: var(--text);
    overflow-x: hidden;
}

.dashboard-layout {
    min-height: 100vh;
    display: flex;
    background: #f3f5f8;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 270px;
    display: flex;
    flex-direction: column;
    padding: 28px 18px 20px;
    background: var(--navy-950);
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,0.08);
    overflow-y: auto;
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 10px;
    margin-bottom: 28px;
}

.dashboard-brand-mark {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: var(--orange);
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    transform: skew(-8deg);
}

.dashboard-brand strong {
    display: block;
    color: var(--white);
    font-size: 17px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 900;
}

.dashboard-brand span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,0.42);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.admin-badge {
    padding: 0 10px;
    margin-bottom: 18px;
}

.admin-badge span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    background: rgba(244,123,32,0.12);
    border: 1px solid rgba(244,123,32,0.25);
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-nav-item {
    position: relative;
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 13px;
    background: transparent;
    color: rgba(255,255,255,0.58);
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.dashboard-nav-item > span:first-child {
    width: 22px;
    text-align: center;
    font-size: 15px;
}

.dashboard-nav-item:hover {
    background: rgba(255,255,255,0.055);
    color: var(--white);
}

.dashboard-nav-item.active {
    background: rgba(244,123,32,0.12);
    color: var(--white);
    border-color: rgba(244,123,32,0.18);
}

.dashboard-nav-item.active::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 9px;
    bottom: 9px;
    width: 3px;
    background: var(--orange);
}

.dashboard-nav-item.dashboard-nav-link {
    text-decoration: none;
}

.dashboard-nav-count {
    margin-left: auto;
    min-width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    border-radius: 50%;
    background: rgba(244,123,32,0.15);
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
}

.dashboard-nav-divider {
    height: 1px;
    margin: 18px 8px;
    background: rgba(255,255,255,0.08);
}

.dashboard-logout {
    margin-top: 3px;
    color: rgba(255,255,255,0.45);
}

.dashboard-logout:hover {
    background: rgba(220,50,50,0.10);
    color: #ff8a8a;
}

.dashboard-sidebar-footer {
    margin-top: auto;
    padding: 20px 10px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.dashboard-sidebar-footer p {
    color: rgba(255,255,255,0.65);
    font-size: 10px;
    font-weight: 800;
}

.dashboard-sidebar-footer span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,0.28);
    font-size: 9px;
}


/* =========================================================
   MAIN
   ========================================================= */

.dashboard-main {
    min-width: 0;
    min-height: 100vh;
    width: calc(100% - 270px);
    margin-left: 270px;
    display: flex;
    flex-direction: column;
    background: #f3f5f8;
    padding: 0;
}


/* =========================================================
   TOPBAR
   ========================================================= */

.dashboard-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 38px;
    background: rgba(255,255,255,0.94);
    border-bottom: 1px solid #e3e7ec;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dashboard-mobile-brand {
    display: none;
}

.dashboard-user-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-user-avatar {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
}

.dashboard-user-info {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.dashboard-user-info strong {
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 900;
}

.dashboard-user-info span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.dashboard-content {
    flex: 1;
    padding: 42px 38px 50px;
    background: #f3f5f8;
    border: 0;
}

.admin-section {
    display: none;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.admin-section.active {
    display: block;
    animation: dashboardFade 0.3s ease;
}

@keyframes dashboardFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   PAGE TITLE
   ========================================================= */

.dashboard-page-title {
    margin-bottom: 34px;
}

.dashboard-small-label {
    margin: 0 0 9px;
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dashboard-page-title h1 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1;
    letter-spacing: -1.8px;
    font-weight: 900;
    text-transform: uppercase;
}

.dashboard-page-title > p:last-child {
    max-width: 650px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   STATISTICS
   ========================================================= */

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.admin-stat-card {
    min-height: 125px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 24px;
    background: var(--white);
    border: 1px solid #e1e5ea;
    box-shadow: 0 8px 25px rgba(6,16,29,0.045);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.admin-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(244,123,32,0.25);
    box-shadow: 0 15px 35px rgba(6,16,29,0.08);
}

.admin-stat-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: rgba(244,123,32,0.10);
    color: var(--orange);
    border-radius: 4px;
    font-size: 19px;
}

.admin-stat-icon.pending {
    background: rgba(230,160,30,0.10);
}

.admin-stat-icon.confirmed {
    background: rgba(35,160,100,0.10);
    color: #249b64;
}

.admin-stat-card span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.admin-stat-card strong {
    display: block;
    margin-top: 4px;
    color: var(--navy-900);
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}


/* =========================================================
   DASHBOARD CARDS
   ========================================================= */

.admin-dashboard-card {
    background: var(--white);
    border: 1px solid #e1e5ea;
    box-shadow: 0 8px 25px rgba(6,16,29,0.045);
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 28px;
    border-bottom: 1px solid #e7eaee;
}

.admin-card-header h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: 20px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-secondary-button {
    padding: 10px 14px;
    background: transparent;
    color: var(--navy-900);
    border: 1px solid #dce1e6;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.admin-secondary-button:hover {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: var(--white);
}


/* =========================================================
   LOADING
   ========================================================= */

.admin-loading {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

.admin-loading > div {
    margin-bottom: 8px;
    font-size: 25px;
}

.admin-loading p {
    margin: 0;
    font-size: 11px;
}


/* =========================================================
   MEMBERS TOOLBAR
   ========================================================= */

.admin-members-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding: 18px;
    background: var(--white);
    border: 1px solid #e1e5ea;
}

.admin-search-wrapper {
    position: relative;
    flex: 1;
    max-width: 520px;
}

.admin-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
}

.admin-members-search {
    width: 100%;
    min-height: 44px;
    padding: 0 15px 0 40px;
    background: #f7f8fa;
    color: var(--text);
    border: 1px solid #dfe3e8;
    outline: none;
    border-radius: 3px;
    font-size: 12px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.admin-members-search:focus {
    background: var(--white);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(244,123,32,0.08);
}

.admin-members-total {
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
}

.admin-members-total strong {
    color: var(--navy-900);
    font-size: 24px;
    font-weight: 900;
}

.admin-members-total span {
    color: var(--muted);
    font-size: 10px;
}


/* =========================================================
   LISTES
   ========================================================= */

.admin-appointments-list,
.admin-members-list {
    background: var(--white);
    border: 1px solid #e1e5ea;
    box-shadow: 0 8px 25px rgba(6,16,29,0.045);
    overflow: hidden;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.admin-empty-state {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    background: var(--white);
    border: 1px solid #e1e5ea;
    box-shadow: 0 8px 25px rgba(6,16,29,0.045);
}

.admin-empty-state > div {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: rgba(244,123,32,0.10);
    color: var(--orange);
    border-radius: 50%;
    font-size: 25px;
}

.admin-empty-state h3 {
    margin: 0;
    color: var(--navy-900);
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-empty-state p {
    max-width: 430px;
    margin-top: 9px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   FOOTER
   ========================================================= */

.dashboard-footer {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 38px;
    background: var(--white);
    border-top: 1px solid #e1e5ea;
    color: #929aa5;
    font-size: 9px;
}

.dashboard-footer p {
    margin: 0;
}

.dashboard-footer span {
    color: var(--orange);
    font-weight: 800;
}


/* =========================================================
   RESPONSIVE — 1100px
   ========================================================= */

@media (max-width: 1100px) {

    .dashboard-sidebar {
        width: 235px;
    }

    .dashboard-main {
        width: calc(100% - 235px);
        margin-left: 235px;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-content {
        padding: 35px 28px 45px;
    }

    .dashboard-topbar {
        padding: 0 28px;
    }

    .dashboard-footer {
        padding: 0 28px;
    }
}


/* =========================================================
   RESPONSIVE — 850px
   ========================================================= */

@media (max-width: 850px) {

    .dashboard-layout {
        display: block;
    }

    .dashboard-sidebar {
        position: relative;
        width: 100%;
        min-height: auto;
        padding: 18px;
    }

    .dashboard-brand {
        margin-bottom: 18px;
    }

    .dashboard-sidebar-footer {
        display: none;
    }

    .dashboard-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .dashboard-nav-divider {
        display: none;
    }

    .dashboard-nav-item.active::before {
        display: none;
    }

    .dashboard-main {
        width: 100%;
        margin-left: 0;
    }

    .dashboard-topbar {
        position: relative;
        justify-content: space-between;
    }

    .dashboard-mobile-brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .dashboard-mobile-brand .dashboard-brand-mark {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .dashboard-mobile-brand strong {
        color: var(--navy-900);
        font-size: 14px;
        font-weight: 900;
    }

    .dashboard-content {
        padding: 30px 22px 40px;
    }
}


/* =========================================================
   RESPONSIVE — 600px
   ========================================================= */

@media (max-width: 600px) {

    .dashboard-nav {
        grid-template-columns: 1fr;
    }

    .dashboard-topbar {
        min-height: 70px;
        padding: 0 18px;
    }

    .dashboard-user-info {
        display: none;
    }

    .dashboard-content {
        padding: 25px 15px 35px;
    }

    .dashboard-page-title {
        margin-bottom: 25px;
    }

    .dashboard-page-title h1 {
        font-size: 32px;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .admin-stat-card {
        min-height: 105px;
        padding: 20px;
    }

    .admin-card-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px;
    }

    .admin-members-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-search-wrapper {
        max-width: none;
    }

    .dashboard-footer {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        min-height: 80px;
        padding: 15px;
    }
}/* =========================================================
   SSM ADMIN DASHBOARD — DESIGN
   ========================================================= */

body.dashboard-body {
    margin: 0;
    min-height: 100vh;
    background: #f2f4f7;
    color: var(--text);
    overflow-x: hidden;
}/* =========================================================
   SSM — ESPACE MEMBRE / DASHBOARD
   ========================================================= */

/* ---------- BASE ---------- */

body.dashboard-page {
    margin: 0;
    min-height: 100vh;
    background: #f3f5f8;
    color: #17212b;
    font-family: inherit;
    overflow-x: hidden;
}

body.dashboard-page * {
    box-sizing: border-box;
}

body.dashboard-page a {
    text-decoration: none;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

body.dashboard-page .dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    height: 100vh;
    z-index: 1000;

    display: flex;
    flex-direction: column;

    padding: 28px 18px 20px;

    background: linear-gradient(
        180deg,
        #06101d 0%,
        #081525 100%
    );

    color: #fff;
    border-right: 1px solid rgba(255,255,255,.06);
}


/* ---------- LOGO ---------- */

body.dashboard-page .dashboard-brand {
    padding: 0 10px 30px;
}

body.dashboard-page .dashboard-logo {
    display: inline-flex;
    flex-direction: column;

    color: #fff;

    font-size: 25px;
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1;
}

body.dashboard-page .dashboard-logo span {
    margin-top: 5px;

    color: #f47b20;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

body.dashboard-page .dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

body.dashboard-page .dashboard-nav-title {
    margin: 8px 12px 10px;

    color: rgba(255,255,255,.35);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

body.dashboard-page .dashboard-nav-bottom-title {
    margin-top: 25px;
}


body.dashboard-page .dashboard-nav-link {
    position: relative;

    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
    min-height: 47px;

    padding: 11px 13px;

    border-radius: 8px;

    color: rgba(255,255,255,.65);

    font-size: 13px;
    font-weight: 700;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


body.dashboard-page .dashboard-nav-link span:first-child {
    width: 22px;

    font-size: 17px;
    text-align: center;
}


body.dashboard-page .dashboard-nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,.07);
}


body.dashboard-page .dashboard-nav-link.active {
    color: #fff;
    background: rgba(244,123,32,.14);

    box-shadow: inset 3px 0 0 #f47b20;
}


body.dashboard-page .notification-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 20px;
    height: 20px;

    margin-left: auto;

    padding: 0 6px;

    border-radius: 20px;

    background: #f47b20;
    color: #fff;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   SIDEBAR FOOTER
   ========================================================= */

body.dashboard-page .dashboard-sidebar-footer {
    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,.08);
}


body.dashboard-page .dashboard-logout {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;

    padding: 11px 13px;

    border: 0;
    border-radius: 8px;

    background: transparent;
    color: rgba(255,255,255,.58);

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: all .25s ease;
}


body.dashboard-page .dashboard-logout:hover {
    background: rgba(255,255,255,.07);
    color: #fff;
}


body.dashboard-page .dashboard-logout span {
    font-size: 18px;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

body.dashboard-page .dashboard-content {
    min-height: 100vh;

    margin-left: 270px;

    padding: 0 38px 35px;

    background: #f3f5f8;
}


/* =========================================================
   TOP BAR
   ========================================================= */

body.dashboard-page .dashboard-topbar {
    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 0;

    border-bottom: 1px solid rgba(8,21,37,.08);
}


body.dashboard-page .dashboard-date {
    margin: 0 0 5px;

    color: #f47b20;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
}


body.dashboard-page .dashboard-topbar h1 {
    margin: 0;

    color: #081525;

    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
}


/* =========================================================
   USER
   ========================================================= */

body.dashboard-page .dashboard-user {
    display: flex;
    align-items: center;
    gap: 12px;
}


body.dashboard-page .dashboard-user-avatar {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f47b20;
    color: #fff;

    font-size: 16px;
    font-weight: 900;

    box-shadow: 0 7px 18px rgba(244,123,32,.25);
}


body.dashboard-page .dashboard-user-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


body.dashboard-page .dashboard-user-info strong {
    color: #17212b;

    font-size: 13px;
    font-weight: 800;
}


body.dashboard-page .dashboard-user-info span {
    color: #7a8694;

    font-size: 11px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

body.dashboard-page .dashboard-section {
    display: none;

    padding-top: 32px;
}


body.dashboard-page .dashboard-section.active {
    display: block;

    animation: dashboardFadeIn .3s ease;
}


@keyframes dashboardFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   TITRES
   ========================================================= */

body.dashboard-page .dashboard-page-title {
    margin-bottom: 28px;
}


body.dashboard-page .dashboard-page-title h2 {
    margin: 0 0 8px;

    color: #081525;

    font-size: 28px;
    font-weight: 800;
}


body.dashboard-page .dashboard-page-title > p:last-child {
    margin: 0;

    color: #687585;

    font-size: 14px;
    line-height: 1.6;
}


body.dashboard-page .dashboard-small-label {
    margin: 0 0 7px;

    color: #f47b20;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.7px;
}


/* =========================================================
   WELCOME CARD
   ========================================================= */

body.dashboard-page .dashboard-welcome-card {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 190px;

    margin-bottom: 24px;
    padding: 32px 38px;

    overflow: hidden;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #081525 0%,
            #102238 100%
        );

    color: #fff;

    box-shadow: 0 18px 40px rgba(6,16,29,.16);
}


body.dashboard-page .dashboard-welcome-card::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -90px;
    top: -100px;

    border-radius: 50%;

    border: 1px solid rgba(244,123,32,.18);
}


body.dashboard-page .dashboard-welcome-card .dashboard-small-label {
    color: #ff9845;
}


body.dashboard-page .dashboard-welcome-card h2 {
    margin: 0 0 10px;

    font-size: 28px;
    font-weight: 800;
}


body.dashboard-page .dashboard-welcome-card p:not(.dashboard-small-label) {
    max-width: 620px;

    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 14px;
    line-height: 1.7;
}


body.dashboard-page .welcome-football {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 95px;
    height: 95px;

    border-radius: 50%;

    background: rgba(244,123,32,.13);

    font-size: 48px;

    box-shadow:
        inset 0 0 0 1px rgba(244,123,32,.18),
        0 15px 35px rgba(0,0,0,.15);
}


/* =========================================================
   STATISTIQUES
   ========================================================= */

body.dashboard-page .dashboard-stats {
    display: grid;

    grid-template-columns: repeat(4, minmax(0,1fr));

    gap: 17px;

    margin-bottom: 38px;
}


body.dashboard-page .dashboard-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;

    min-height: 105px;

    padding: 20px;

    border: 1px solid rgba(8,21,37,.08);
    border-radius: 12px;

    background: #fff;

    box-shadow: 0 8px 25px rgba(6,16,29,.06);

    transition: transform .25s ease, box-shadow .25s ease;
}


body.dashboard-page .dashboard-stat-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 15px 32px rgba(6,16,29,.10);
}


body.dashboard-page .stat-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #fff3e9;

    font-size: 21px;
}


body.dashboard-page .dashboard-stat-card span {
    display: block;

    margin-bottom: 4px;

    color: #788492;

    font-size: 11px;
    font-weight: 700;
}


body.dashboard-page .dashboard-stat-card strong {
    display: block;

    color: #081525;

    font-size: 25px;
    line-height: 1;

    font-weight: 900;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

body.dashboard-page .dashboard-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}


body.dashboard-page .dashboard-section-heading h2 {
    margin: 0;

    color: #081525;

    font-size: 21px;
    font-weight: 800;
}


/* =========================================================
   QUICK CARDS
   ========================================================= */

body.dashboard-page .dashboard-cards-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0,1fr));

    gap: 17px;
}


body.dashboard-page .dashboard-feature-card {
    min-height: 205px;

    padding: 24px;

    border: 1px solid rgba(8,21,37,.08);
    border-radius: 12px;

    background: #fff;

    box-shadow: 0 8px 25px rgba(6,16,29,.05);

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


body.dashboard-page .dashboard-feature-card:hover {
    transform: translateY(-4px);

    border-color: rgba(244,123,32,.25);

    box-shadow: 0 17px 35px rgba(6,16,29,.10);
}


body.dashboard-page .feature-card-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 10px;

    background: #fff3e9;

    font-size: 21px;
}


body.dashboard-page .dashboard-feature-card h3 {
    margin: 0 0 8px;

    color: #081525;

    font-size: 16px;
    font-weight: 800;
}


body.dashboard-page .dashboard-feature-card p {
    min-height: 45px;

    margin: 0 0 17px;

    color: #71808e;

    font-size: 12px;
    line-height: 1.6;
}


body.dashboard-page .dashboard-feature-card > span {
    color: #f47b20;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   PROFILE
   ========================================================= */

body.dashboard-page .profile-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;

    padding: 30px;

    margin-bottom: 22px;

    border: 1px solid rgba(8,21,37,.08);
    border-radius: 14px;

    background: #fff;

    box-shadow: 0 8px 25px rgba(6,16,29,.06);
}


body.dashboard-page .profile-avatar {
    width: 85px;
    height: 85px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f47b20;
    color: #fff;

    font-size: 28px;
    font-weight: 900;
}


body.dashboard-page .profile-information {
    flex: 1;

    display: grid;

    grid-template-columns: repeat(2, minmax(0,1fr));

    gap: 20px;
}


body.dashboard-page .profile-field {
    display: flex;
    flex-direction: column;
    gap: 6px;

    padding-bottom: 14px;

    border-bottom: 1px solid #edf0f3;
}


body.dashboard-page .profile-field span {
    color: #8a96a3;

    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
}


body.dashboard-page .profile-field strong {
    color: #17212b;

    font-size: 13px;
}


body.dashboard-page .profile-status {
    color: #29965a !important;
}


/* =========================================================
   PROFILE EDIT
   ========================================================= */

body.dashboard-page .profile-edit-box {
    padding: 28px;

    border: 1px solid rgba(8,21,37,.08);
    border-radius: 14px;

    background: #fff;

    box-shadow: 0 8px 25px rgba(6,16,29,.05);
}


body.dashboard-page .profile-edit-box h3 {
    margin: 0 0 7px;

    color: #081525;

    font-size: 18px;
}


body.dashboard-page .profile-edit-box > p {
    margin: 0 0 24px;

    color: #75818e;

    font-size: 13px;
}


body.dashboard-page .profile-form-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0,1fr));

    gap: 18px;

    margin-bottom: 22px;
}


/* =========================================================
   FORMS
   ========================================================= */

body.dashboard-page .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}


body.dashboard-page .form-group label {
    color: #263442;

    font-size: 11px;
    font-weight: 800;
}


body.dashboard-page .form-group input,
body.dashboard-page .form-group select,
body.dashboard-page .form-group textarea {
    width: 100%;

    padding: 12px 13px;

    border: 1px solid #dce1e7;
    border-radius: 7px;

    outline: none;

    background: #fff;
    color: #17212b;

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


body.dashboard-page .form-group textarea {
    resize: vertical;
    min-height: 120px;
}


body.dashboard-page .form-group input:focus,
body.dashboard-page .form-group select:focus,
body.dashboard-page .form-group textarea:focus {
    border-color: #f47b20;

    box-shadow: 0 0 0 3px rgba(244,123,32,.10);
}


body.dashboard-page .profile-save-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 11px 20px;

    border: 0;
    border-radius: 7px;

    background: #f47b20;
    color: #fff;

    font-family: inherit;

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition: all .25s ease;
}


body.dashboard-page .profile-save-button:hover {
    background: #d9630e;

    transform: translateY(-1px);
}


body.dashboard-page .profile-message {
    margin: 12px 0 0;

    font-size: 12px;
}


/* =========================================================
   EMPTY CARDS
   ========================================================= */

body.dashboard-page .empty-dashboard-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 280px;

    padding: 35px;

    border: 1px solid rgba(8,21,37,.08);
    border-radius: 14px;

    background: #fff;

    text-align: center;

    box-shadow: 0 8px 25px rgba(6,16,29,.05);
}


body.dashboard-page .empty-dashboard-card > div {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #fff3e9;

    font-size: 27px;
}


body.dashboard-page .empty-dashboard-card h3 {
    margin: 0 0 8px;

    color: #17212b;

    font-size: 16px;
}


body.dashboard-page .empty-dashboard-card p {
    max-width: 500px;

    margin: 0;

    color: #7b8794;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   RENDEZ-VOUS
   ========================================================= */

body.dashboard-page .appointment-form-card {
    padding: 30px;

    margin-bottom: 35px;

    border: 1px solid rgba(8,21,37,.08);
    border-radius: 14px;

    background: #fff;

    box-shadow: 0 8px 25px rgba(6,16,29,.06);
}


body.dashboard-page .appointment-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 27px;
}


body.dashboard-page .appointment-form-header h3 {
    margin: 0 0 7px;

    color: #081525;

    font-size: 19px;
}


body.dashboard-page .appointment-form-header p:not(.dashboard-small-label) {
    margin: 0;

    color: #7b8794;

    font-size: 12px;
}


body.dashboard-page .appointment-big-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #fff3e9;

    font-size: 30px;
}


body.dashboard-page .appointment-form-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0,1fr));

    gap: 18px;

    margin-bottom: 20px;
}


body.dashboard-page .appointment-message-group {
    margin-bottom: 20px;
}


body.dashboard-page .appointment-submit-button {
    margin-top: 3px;
}


/* =========================================================
   NOTIFICATIONS
   ========================================================= */

body.dashboard-page .notification-card {
    display: flex;
    align-items: flex-start;
    gap: 17px;

    padding: 22px;

    margin-bottom: 13px;

    border: 1px solid rgba(8,21,37,.08);
    border-radius: 12px;

    background: #fff;

    box-shadow: 0 7px 22px rgba(6,16,29,.05);
}


body.dashboard-page .notification-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #fff3e9;

    font-size: 20px;
}


body.dashboard-page .notification-card strong {
    display: block;

    margin-bottom: 6px;

    color: #17212b;

    font-size: 13px;
}


body.dashboard-page .notification-card p {
    margin: 0 0 7px;

    color: #74818e;

    font-size: 12px;
    line-height: 1.5;
}


body.dashboard-page .notification-card small {
    color: #a0a9b2;

    font-size: 10px;
}


/* =========================================================
   APPOINTMENTS LIST
   ========================================================= */

body.dashboard-page .appointments-list-container {
    margin-top: 10px;
}


body.dashboard-page #appointmentsList {
    min-height: 100px;
}


/* =========================================================
   MESSAGE
   ========================================================= */

body.dashboard-page .dashboard-message {
    margin: 20px 0;

    color: #f47b20;

    font-size: 12px;
}


/* =========================================================
   FOOTER
   ========================================================= */

body.dashboard-page .dashboard-footer {
    position: fixed;

    right: 38px;
    bottom: 16px;

    color: #9aa4ae;

    font-size: 10px;
}


/* =========================================================
   MOBILE HEADER
   ========================================================= */

body.dashboard-page .dashboard-mobile-header {
    display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    body.dashboard-page .dashboard-stats {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    body.dashboard-page .dashboard-cards-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    body.dashboard-page .profile-form-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    body.dashboard-page .appointment-form-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    body.dashboard-page .dashboard-sidebar {
        transform: translateX(-100%);
        transition: transform .3s ease;
    }

    body.dashboard-page .dashboard-sidebar.open {
        transform: translateX(0);
    }

    body.dashboard-page .dashboard-mobile-header {
        position: sticky;
        top: 0;
        z-index: 900;

        height: 68px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 0 20px;

        background: #081525;

        box-shadow: 0 5px 20px rgba(0,0,0,.12);
    }

    body.dashboard-page .dashboard-mobile-header .dashboard-logo {
        font-size: 21px;
    }

    body.dashboard-page .dashboard-menu-button {
        width: 42px;
        height: 42px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid rgba(255,255,255,.12);
        border-radius: 8px;

        background: transparent;
        color: #fff;

        font-size: 22px;

        cursor: pointer;
    }

    body.dashboard-page .dashboard-content {
        margin-left: 0;

        padding: 0 20px 70px;
    }

    body.dashboard-page .dashboard-topbar {
        min-height: 90px;
    }

    body.dashboard-page .dashboard-topbar h1 {
        font-size: 23px;
    }

    body.dashboard-page .dashboard-footer {
        position: static;

        margin-top: 25px;

        text-align: center;
    }

}


/* =========================================================
   PETIT MOBILE
   ========================================================= */

@media (max-width: 600px) {

    body.dashboard-page .dashboard-topbar {
        align-items: flex-start;
        gap: 15px;
    }

    body.dashboard-page .dashboard-user-info {
        display: none;
    }

    body.dashboard-page .dashboard-user-avatar {
        width: 40px;
        height: 40px;
    }

    body.dashboard-page .dashboard-section {
        padding-top: 23px;
    }

    body.dashboard-page .dashboard-welcome-card {
        align-items: flex-start;

        min-height: 230px;

        padding: 25px;
    }

    body.dashboard-page .welcome-football {
        position: absolute;

        right: 20px;
        bottom: 18px;

        width: 65px;
        height: 65px;

        font-size: 30px;
    }

    body.dashboard-page .dashboard-welcome-card h2 {
        font-size: 23px;
    }

    body.dashboard-page .dashboard-stats {
        grid-template-columns: 1fr;
    }

    body.dashboard-page .dashboard-cards-grid {
        grid-template-columns: 1fr;
    }

    body.dashboard-page .profile-card {
        flex-direction: column;
    }

    body.dashboard-page .profile-information {
        width: 100%;

        grid-template-columns: 1fr;
    }

    body.dashboard-page .profile-form-grid {
        grid-template-columns: 1fr;
    }

    body.dashboard-page .appointment-form-grid {
        grid-template-columns: 1fr;
    }

    body.dashboard-page .appointment-form-header {
        align-items: flex-start;
    }

    body.dashboard-page .appointment-big-icon {
        width: 50px;
        height: 50px;

        font-size: 23px;
    }

    body.dashboard-page .appointment-form-card {
        padding: 22px;
    }

    body.dashboard-page .dashboard-page-title h2 {
        font-size: 23px;
    }

}
/* =========================================================
   ADMIN — STYLE DES MEMBRES
   ========================================================= */

body.dashboard-body .admin-members-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.dashboard-body .admin-member-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: #ffffff;
    border: 1px solid rgba(8, 21, 37, 0.08);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(6, 16, 29, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.dashboard-body .admin-member-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(6, 16, 29, 0.10);
}

body.dashboard-body .admin-member-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #f47b20;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

body.dashboard-body .admin-member-info {
    flex: 1;
    min-width: 0;
}

body.dashboard-body .admin-member-info h3 {
    margin: 0 0 7px;
    color: #081525;
    font-size: 17px;
    font-weight: 700;
}

body.dashboard-body .admin-member-info p {
    margin: 3px 0;
    color: #687585;
    font-size: 13px;
    line-height: 1.5;
}

body.dashboard-body .admin-member-info p strong {
    color: #17212b;
    font-weight: 600;
}

body.dashboard-body .admin-member-role {
    padding: 7px 13px;
    border-radius: 20px;
    background: rgba(244, 123, 32, 0.10);
    color: #d9630e;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 700px) {

    body.dashboard-body .admin-member-card {
        align-items: flex-start;
        padding: 16px;
        gap: 13px;
    }

    body.dashboard-body .admin-member-avatar {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 17px;
    }

    body.dashboard-body .admin-member-info h3 {
        font-size: 15px;
    }

    body.dashboard-body .admin-member-info p {
        font-size: 12px;
    }

    body.dashboard-body .admin-member-role {
        display: none;
    }
}
/* =========================================================
   ADMIN — STYLE DES RENDEZ-VOUS
   ========================================================= */

body.dashboard-body .admin-appointments-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.dashboard-body .admin-appointment-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 22px;
    background: #ffffff;
    border: 1px solid rgba(8, 21, 37, 0.08);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(6, 16, 29, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.dashboard-body .admin-appointment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(6, 16, 29, 0.10);
}

/* Date et heure */

body.dashboard-body .admin-appointment-date {
    width: 125px;
    min-width: 125px;
    padding: 12px 14px;
    background: #f7f8fa;
    border-radius: 10px;
    text-align: center;
}

body.dashboard-body .admin-appointment-date strong {
    display: block;
    color: #081525;
    font-size: 14px;
    font-weight: 700;
}

body.dashboard-body .admin-appointment-date span {
    display: block;
    margin-top: 5px;
    color: #f47b20;
    font-size: 14px;
    font-weight: 700;
}

/* Informations */

body.dashboard-body .admin-appointment-info {
    flex: 1;
    min-width: 0;
}

body.dashboard-body .admin-appointment-info h3 {
    margin: 0 0 7px;
    color: #081525;
    font-size: 17px;
    font-weight: 700;
}

body.dashboard-body .admin-appointment-info p {
    margin: 0;
    color: #687585;
    font-size: 13px;
    line-height: 1.5;
}

/* Statut */

body.dashboard-body .admin-appointment-status {
    padding: 7px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

body.dashboard-body .admin-appointment-status.pending {
    background: rgba(244, 123, 32, 0.10);
    color: #d9630e;
}

body.dashboard-body .admin-appointment-status.confirmed {
    background: rgba(35, 160, 90, 0.10);
    color: #23804d;
}

body.dashboard-body .admin-appointment-status.cancelled {
    background: rgba(220, 60, 60, 0.10);
    color: #c43d3d;
}

body.dashboard-body .admin-appointment-status.completed {
    background: rgba(8, 21, 37, 0.08);
    color: #43505e;
}

/* =========================================================
   ADMIN — DEMANDES RÉCENTES
   ========================================================= */

body.dashboard-body .admin-recent-appointment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(8, 21, 37, 0.08);
}

body.dashboard-body .admin-recent-appointment:last-child {
    border-bottom: none;
}

body.dashboard-body .admin-recent-appointment strong {
    display: block;
    margin-bottom: 4px;
    color: #081525;
    font-size: 14px;
}

body.dashboard-body .admin-recent-appointment span:not(.admin-appointment-status) {
    color: #687585;
    font-size: 12px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 700px) {

    body.dashboard-body .admin-appointment-card {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 13px;
        padding: 16px;
    }

    body.dashboard-body .admin-appointment-date {
        width: 105px;
        min-width: 105px;
    }

    body.dashboard-body .admin-appointment-info {
        width: calc(100% - 120px);
    }

    body.dashboard-body .admin-appointment-info h3 {
        font-size: 15px;
    }

    body.dashboard-body .admin-appointment-status {
        margin-left: auto;
    }
}
/* Logo Sore Sports Management */
.brand-logo {
    width: 100px;
    height: auto;
    display: block;
    object-fit: contain;
}
/* =====================================================
   PAGE CRÉER UN COMPTE
===================================================== */

body.signup-page {
    min-height: 100vh;
    margin: 0;
    background:
        linear-gradient(
            rgba(6, 16, 29, 0.88),
            rgba(6, 16, 29, 0.94)
        ),
        linear-gradient(
            135deg,
            #081525 0%,
            #102238 50%,
            #06101d 100%
        );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.signup-container {
    width: 100%;
    max-width: 470px;
    text-align: center;
}

.signup-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.signup-logo img {
    width: 190px;
    height: auto;
    display: block;
    object-fit: contain;
}

.signup-box {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 18px;
    padding: 38px 40px;
    text-align: left;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.signup-label {
    margin: 0 0 10px;
    color: #f47b20;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.signup-box h1 {
    margin: 0 0 10px;
    color: #081525;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.signup-description {
    margin: 0 0 28px;
    color: #687585;
    font-size: 14px;
    line-height: 1.6;
}

.signup-form-group {
    margin-bottom: 18px;
}

.signup-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #17212b;
    font-size: 13px;
    font-weight: 700;
}

.signup-form-group input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    box-sizing: border-box;

    border: 1px solid rgba(8, 21, 37, 0.15);
    border-radius: 9px;

    background: #f7f8fa;
    color: #17212b;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.signup-form-group input::placeholder {
    color: #9aa4af;
}

.signup-form-group input:focus {
    border-color: #f47b20;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.12);
}

.signup-button {
    width: 100%;
    min-height: 50px;
    margin-top: 7px;

    border: none;
    border-radius: 9px;

    background: #f47b20;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.signup-button:hover {
    background: #d9630e;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(244, 123, 32, 0.22);
}

.signup-button:active {
    transform: translateY(0);
}

.signup-message {
    min-height: 20px;
    margin: 14px 0 0;
    color: #687585;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.signup-back {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(8, 21, 37, 0.08);
    text-align: center;
}

.signup-back a {
    color: #687585;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.signup-back a:hover {
    color: #f47b20;
}

.signup-footer {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

@media (max-width: 520px) {

    body.signup-page {
        padding: 25px 15px;
    }

    .signup-logo {
        margin-bottom: 20px;
    }

    .signup-logo img {
        width: 160px;
    }

    .signup-box {
        padding: 30px 22px;
        border-radius: 15px;
    }

    .signup-box h1 {
        font-size: 25px;
    }

    .signup-description {
        font-size: 13px;
        margin-bottom: 23px;
    }

}
/* =========================
   LOGO FOOTER
   ========================= */

.footer-logo {
    width: 100px;
    height: auto;
    display: block;
    object-fit: contain;
}
/* =========================
   BOUTON RETOUR EN HAUT
   ========================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: var(--orange);
    color: var(--white);

    font-size: 26px;
    font-weight: 700;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    opacity: 1;
    visibility: visible;

    transform: translateY(15px);

    box-shadow: 0 8px 25px rgba(6, 16, 29, 0.25);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;

    z-index: 99999;
}

.back-to-top:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
}

@media (max-width: 600px) {

    .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

}