/* =========================================================
   BLACK MAMBA ELITE DISCIPLINE CAMP
   MAIN STYLESHEET
   ========================================================= */

:root {
    --black: #050505;
    --black-2: #0a0a0a;
    --dark: #111111;
    --dark-2: #171717;

    --red: #e10600;
    --red-dark: #a90000;

    --white: #ffffff;
    --gray: #bdbdbd;
    --gray-dark: #777777;

    --border: rgba(255, 255, 255, 0.09);

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: rgba(0, 0, 0, 0.88);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(0,0,0,0.97);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.4);
}

.navbar {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 15px;

    font-weight: 900;

    letter-spacing: 1px;

    z-index: 10001;
}

.logo img {
    width: 52px;
    height: 52px;

    object-fit: contain;
}

.logo-text span {
    display: block;
}

.logo-text .elite {
    color: var(--red);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-links {
    display: flex;
    align-items: center;

    gap: 30px;

    list-style: none;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    position: relative;

    color: #ddd;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: var(--transition);
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--red);

    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    background: transparent;

    border: 1px solid rgba(255,255,255,0.25);

    color: white;

    cursor: pointer;

    font-size: 20px;

    z-index: 10002;
}

.menu-toggle:hover {
    background: var(--red);

    border-color: var(--red);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* Slider */

.hero-slider {
    position: absolute;

    inset: 0;

    z-index: 0;
}

.slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.slide.active {
    opacity: 1;

    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /* NO ZOOM */
    transform: none !important;

    animation: none !important;
}


/* Hero overlay */

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.95) 0%,
            rgba(0,0,0,0.78) 45%,
            rgba(0,0,0,0.40) 100%
        );
}

.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.95),
            transparent 55%
        );
}


/* Hero content */

.hero-content {
    position: relative;

    z-index: 3;

    width: 100%;

    max-width: 800px;

    padding-top: 80px;
}

.year-badge {
    display: inline-block;

    padding: 8px 16px;

    margin-bottom: 20px;

    background: var(--red);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 88px);

    line-height: 0.94;

    font-weight: 900;

    letter-spacing: -3px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.hero h1 span {
    display: block;

    color: var(--red);
}

.hero-subtitle {
    font-size: clamp(17px, 2.5vw, 28px);

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.hero-description {
    max-width: 650px;

    color: #ccc;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    min-height: 50px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 3px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: var(--transition);
}

.btn-primary {
    background: var(--red);

    color: white;
}

.btn-primary:hover {
    background: var(--red-dark);

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(225,6,0,0.3);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.5);

    color: white;
}

.btn-outline:hover {
    background: white;

    color: black;
}

.btn-whatsapp {
    background: #25d366;

    color: white;
}

.btn-whatsapp:hover {
    background: #1ebe5d;

    transform: translateY(-3px);
}


/* =========================================================
   SLIDER CONTROLS
   ========================================================= */

.slider-controls {
    position: absolute;

    right: 5%;

    bottom: 35px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 8px;
}

.slider-btn {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.35);

    background: rgba(0,0,0,0.5);

    color: white;

    cursor: pointer;

    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--red);

    border-color: var(--red);
}

.slider-dots {
    display: flex;

    align-items: center;

    gap: 6px;

    margin: 0 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,0.4);

    cursor: pointer;

    transition: var(--transition);
}

.slider-dot.active {
    width: 25px;

    border-radius: 10px;

    background: var(--red);
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

section {
    padding: 90px 0;
}

.section-header {
    max-width: 720px;

    margin: 0 auto 50px;

    text-align: center;
}

.section-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--red);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
    content: "";

    width: 25px;

    height: 2px;

    background: var(--red);
}

.section-title {
    font-size: clamp(30px, 5vw, 50px);

    line-height: 1.1;

    font-weight: 900;

    text-transform: uppercase;
}

.section-title span {
    color: var(--red);
}

.section-description {
    margin-top: 15px;

    color: var(--gray);

    font-size: 14px;
}


/* =========================================================
   PACKAGES
   ========================================================= */

.packages-section {
    background: var(--black-2);
}

.package-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.package-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            #171717,
            #0d0d0d
        );

    border: 1px solid var(--border);

    padding: 30px;

    overflow: hidden;

    transition: var(--transition);
}

.package-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--red);
}

.package-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(225,6,0,0.5);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.4);
}

.package-card.featured {
    border-color: var(--red);
}

.featured-label {
    position: absolute;

    top: 15px;
    right: -32px;

    padding: 5px 35px;

    background: var(--red);

    font-size: 9px;

    font-weight: 900;

    transform: rotate(45deg);
}

.package-number {
    color: var(--red);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.package-card h3 {
    font-size: 19px;

    line-height: 1.25;

    text-transform: uppercase;

    margin: 10px 0 4px;
}

.package-days {
    color: var(--gray);

    font-size: 12px;
}

.package-price {
    font-size: 35px;

    font-weight: 900;

    margin: 18px 0;
}

.package-price small {
    color: var(--gray);

    font-size: 12px;

    font-weight: 500;
}

.package-card p {
    color: var(--gray);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;

    border-top:
        1px solid var(--border);

    padding-top: 18px;
}

.package-card li {
    color: #ddd;

    font-size: 12px;

    margin-bottom: 9px;
}

.package-card li i {
    color: var(--red);

    margin-right: 7px;
}


/* =========================================================
   INCLUDED
   ========================================================= */

.included-section {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #050505,
            #0d0d0d,
            #050505
        );

    overflow: hidden;
}

.included-section::before {
    content: "";

    position: absolute;

    top: -150px;
    right: -150px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(225,6,0,0.05);

    filter: blur(80px);

    pointer-events: none;
}

.included-section .container {
    position: relative;

    z-index: 2;
}

.included-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.feature-card {
    position: relative;

    min-height: 190px;

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 28px;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0d0d0d
        );

    border:
        1px solid rgba(255,255,255,0.08);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background: var(--red);

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(225,6,0,0.45);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.45);
}

.feature-icon {
    flex: 0 0 65px;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(225,6,0,0.08);

    border:
        1px solid rgba(225,6,0,0.3);

    color: var(--red);

    font-size: 24px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--red);

    color: white;

    transform: rotate(-5deg);
}

.feature-content {
    min-width: 0;
}

.feature-number {
    display: block;

    color: var(--red);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 4px;
}

.feature-content h3 {
    color: white;

    font-size: 16px;

    line-height: 1.2;

    font-weight: 900;

    text-transform: uppercase;

    margin-bottom: 6px;
}

.feature-content p {
    color: #999;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   DISCIPLINE SECTION
   ========================================================= */

.discipline-section {
    position: relative;

    background:
        linear-gradient(
            rgba(0,0,0,0.87),
            rgba(0,0,0,0.95)
        ),
        url("slider_images/image1.jpg")
        center / cover no-repeat;
}

.discipline-content {
    max-width: 850px;

    margin: auto;

    text-align: center;
}

.discipline-content h2 {
    font-size:
        clamp(35px, 6vw, 70px);

    line-height: 1;

    font-weight: 900;

    text-transform: uppercase;
}

.discipline-content h2 span {
    color: var(--red);
}

.discipline-content p {
    max-width: 650px;

    margin: 25px auto;

    color: #ccc;

    font-size: 14px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    background: var(--black-2);
}

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.contact-card {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 24px;

    background: var(--dark);

    border:
        1px solid var(--border);

    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(225,6,0,0.5);
}

.contact-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--red);

    font-size: 20px;
}

.whatsapp-icon {
    background: #25d366;
}

.contact-card small {
    display: block;

    color: #777;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 3px;
}

.contact-card strong {
    font-size: 13px;

    word-break: break-word;
}


/* =========================================================
   WARNING
   ========================================================= */

.warning-section {
    padding: 45px 0;

    background: var(--red);

    text-align: center;
}

.warning-section h2 {
    font-size:
        clamp(25px, 4vw, 40px);

    line-height: 1;

    font-weight: 900;

    text-transform: uppercase;
}

.warning-section p {
    margin-top: 10px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background: #020202;

    padding:
        45px 0 25px;

    border-top:
        1px solid var(--border);
}

.footer-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 900;

    font-size: 13px;

    text-transform: uppercase;
}

.footer-logo img {
    width: 48px;
    height: 48px;

    object-fit: contain;
}

.footer-logo span {
    color: var(--red);
}

.footer-links {
    display: flex;

    gap: 20px;
}

.footer-links a {
    color: var(--gray);

    font-size: 11px;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--red);
}

.copyright {
    text-align: center;

    color: #666;

    font-size: 10px;

    border-top:
        1px solid var(--border);

    margin-top: 30px;

    padding-top: 20px;
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--red);

    color: white;

    border: 0;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    z-index: 9000;

    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;

    visibility: visible;
}

.back-to-top:hover {
    background: var(--red-dark);

    transform: translateY(-4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .menu-toggle {
        display: flex;
    }


    /* Mobile navigation */

    .nav-links {
        position: fixed;

        top: 78px;
        left: 0;

        width: 100%;

        max-height:
            calc(100vh - 78px);

        overflow-y: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 0 20px;

        background:
            rgba(5,5,5,0.98);

        backdrop-filter: blur(15px);

        border-bottom:
            2px solid var(--red);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-15px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;

        z-index: 10000;
    }

    .nav-links.active {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;

        width: 100%;

        padding:
            16px 6%;

        border-bottom:
            1px solid rgba(255,255,255,0.06);

        font-size: 13px;
    }

    .nav-links a::after {
        display: none;
    }


    /* Grids */

    .package-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .included-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: 88%;
    }


    /* Header */

    .navbar {
        min-height: 68px;
    }

    .logo {
        font-size: 12px;

        gap: 8px;
    }

    .logo img {
        width: 43px;
        height: 43px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;

        font-size: 19px;
    }

    .nav-links {
        top: 68px;

        max-height:
            calc(100vh - 68px);
    }


    /* Hero */

    .hero {
        min-height: 720px;

        align-items: center;
    }

    .hero-content {
        width: 100%;

        max-width: none;

        padding-top: 70px;

        text-align: center;
    }

    .hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.75),
                rgba(0,0,0,0.88)
            );
    }

    .hero::after {
        background:
            linear-gradient(
                to top,
                rgba(0,0,0,0.95),
                transparent 60%
            );
    }

    .year-badge {
        font-size: 9px;

        padding:
            7px 12px;

        margin-bottom: 18px;
    }

    .hero h1 {
        font-size:
            clamp(42px, 13vw, 60px);

        letter-spacing: -2px;

        line-height: 0.94;

        margin-bottom: 17px;
    }

    .hero-subtitle {
        font-size: 14px;

        letter-spacing: 1px;

        line-height: 1.4;
    }

    .hero-description {
        width: 100%;

        max-width: 500px;

        margin:
            12px auto 25px;

        font-size: 12px;

        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;

        max-width: 340px;

        margin: 0 auto;

        flex-direction: column;

        gap: 10px;
    }

    .btn {
        width: 100%;

        min-height: 48px;

        font-size: 11px;
    }


    /* Slider controls */

    .slider-controls {
        left: 50%;

        right: auto;

        bottom: 18px;

        transform:
            translateX(-50%);
    }


    /* Sections */

    section {
        padding: 65px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-label {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .section-title {
        font-size: 29px;

        line-height: 1.15;
    }

    .section-description {
        font-size: 12px;

        line-height: 1.7;
    }


    /* Packages */

    .package-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .package-card {
        padding: 25px 22px;
    }

    .package-card h3 {
        font-size: 18px;
    }

    .package-price {
        font-size: 32px;
    }


    /* Included */

    .included-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .feature-card {
        min-height: 145px;

        padding:
            22px 18px;

        gap: 17px;
    }

    .feature-icon {
        flex: 0 0 55px;

        width: 55px;
        height: 55px;

        font-size: 20px;
    }

    .feature-content h3 {
        font-size: 14px;
    }

    .feature-content p {
        font-size: 11px;
    }


    /* Discipline */

    .discipline-section {
        background-attachment: scroll;
    }

    .discipline-content h2 {
        font-size: 38px;

        line-height: 1.02;
    }

    .discipline-content p {
        font-size: 12px;

        line-height: 1.8;
    }


    /* Contact */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .contact-card {
        padding: 18px;
    }

    .contact-icon {
        flex: 0 0 45px;

        width: 45px;
        height: 45px;

        font-size: 17px;
    }

    .contact-card strong {
        font-size: 12px;
    }


    /* Warning */

    .warning-section {
        padding:
            35px 15px;
    }

    .warning-section h2 {
        font-size: 23px;
    }

    .warning-section p {
        font-size: 9px;

        letter-spacing: 1px;
    }


    /* Footer */

    .footer-content {
        flex-direction: column;

        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .container {
        width: 90%;
    }

    .logo-text {
        display: none;
    }

    .hero {
        min-height: 680px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-description {
        font-size: 11px;
    }

    .section-title {
        font-size: 27px;
    }

    .package-card {
        padding: 22px 18px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        font-size: 18px;
    }

    .feature-content h3 {
        font-size: 13px;
    }

    .discipline-content h2 {
        font-size: 33px;
    }

}