/* =========================
   stevelleTV v2
   Premium Dark Theme
========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


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


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', Arial, sans-serif;
    background: #080808;
    color: #ffffff;
    line-height: 1.6;
}


/* =========================
   HEADER
========================= */


header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(8,8,8,0.85);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}


.navbar {

    max-width: 1050px;
    margin: auto;

    padding: 18px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

}


.logo img {

    width: 155px;
    height: auto;

}


nav {

    display: flex;
    gap: 25px;

}


nav a {

    color: #ffffff;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: .25s;

}


nav a:hover {

    color: #ff7a00;

}


/* =========================
   HERO
========================= */

.hero {

    min-height: 60vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 155px 20px 50px;

    background:

    radial-gradient(
        circle at center,
        rgba(255,122,0,.22),
        transparent 40%
    ),

    linear-gradient(
        180deg,
        #111,
        #080808
    );

}


.hero-content {

    max-width: 850px;

}


.hero .badge {

    display: inline-block;

    padding: 8px 20px;

    border-radius: 30px;

    border: 1px solid #ff7a00;

    color: #ff7a00;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 28px;

}


.hero h1 {

    font-size: clamp(44px, 7vw, 82px);

    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 28px;

}


.hero h1 span {

    color: #ff7a00;

}


.hero p {

    max-width: 700px;

    margin: auto;

    color: #bdbdbd;

    font-size: 20px;

    line-height: 1.6;

}


.hero .buttons {

    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

}


.btn {

    padding:15px 35px;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

.btn:hover {
    transform: translateY(-2px);
}



.primary {

    background:#ff7a00;

    color:white;

    box-shadow:0 10px 30px rgba(255,122,0,.25);

}


.primary:hover {

    transform: translateY(-4px) scale(1.03);

    background: #ff8f2b;

    box-shadow: 0 18px 40px rgba(255,122,0,.35);

}


.secondary {

    border:1px solid #555;

    color:white;

}


.secondary:hover {

    border-color:#ff7a00;

    color:#ff7a00;

}

/* =========================
   FEATURES
========================= */


    padding:90px 20px;
}
.features {

    padding:40px 20px;

    background:#0d0d0d;

}


.section-title {

    text-align:center;

    max-width:700px;

    margin:0 auto 50px;

}


.section-title h2 {

    font-size:42px;

    margin-bottom:15px;

}


.section-title p {

    color:#999;

}



.feature-grid {

    max-width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.card {

    background:#151515;

    border:1px solid #252525;

    border-radius:16px;

    padding:35px 25px;

    text-align:center;

    transition:.25s;

}



.card:hover {

    transform: translateY(-10px);

    border-color: #ff7a00;

    box-shadow: 0 20px 45px rgba(255,122,0,.15);

}


.icon {

    font-size:40px;

    color:#ff7a00;

    margin-bottom:20px;

}


.card h3 {

    margin-bottom:10px;

}


.card p {

    color:#999;

    font-size:15px;

}

/* =========================
   HOW IT WORKS
========================= */


.how {

    padding:90px 20px;

    background:#080808;

}



.steps {

    max-width:1000px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}



.step {

    background:#151515;

    border:1px solid #252525;

    border-radius:16px;

    padding:35px 25px;

    text-align:center;

    transition:.25s;

}



.step:hover {

    transform: translateY(-10px);

    border-color: #ff7a00;

    box-shadow: 0 20px 45px rgba(255,122,0,.15);

}



.step-number {

    width:55px;

    height:55px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#ff7a00;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:800;

}



.step h3 {

    margin-bottom:10px;

}



.step p {

    color:#999;

}

/* =========================
   PLANS
========================= */


.plans {

    padding:90px 20px;

    background:#0d0d0d;

}



.plan-box {

    max-width:600px;

    margin:auto;

    background:#151515;

    border:1px solid #252525;

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    transition:.25s;

}



.plan-box:hover {

transform: translateY(-10px);

    border-color: #ff7a00;

    box-shadow: 0 20px 45px rgba(255,122,0,.15);

}



.plan-icon {

    font-size:45px;

    color:#ff7a00;

    margin-bottom:20px;

}



.plan-box h3 {

    font-size:28px;

    margin-bottom:15px;

}



.plan-box p {

    color:#999;

    margin-bottom:30px;

}

/* =========================
   DEVICES
========================= */


.devices {

    padding:90px 20px;

    background:#080808;

}



.device-grid {

    max-width:1000px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.device-card {

    background:#151515;

    border:1px solid #252525;

    border-radius:16px;

    padding:35px 20px;

    text-align:center;

    transition:.25s;

}



.device-card:hover {

    transform: translateY(-10px);

    border-color: #ff7a00;

    box-shadow: 0 20px 45px rgba(255,122,0,.15);

}



.device-card i {

    font-size:40px;

    color:#ff7a00;

    margin-bottom:20px;

}



.device-card h3 {

    margin-bottom:10px;

}



.device-card p {

    color:#999;

    font-size:14px;

}

/* =========================
   FAQ
========================= */

.faq {
    padding: 90px 20px;
    background: #0d0d0d;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #151515;
    border: 1px solid #252525;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.faq-question span {
    color: #ff7a00;
    font-size: 25px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer p {
    padding: 0 25px 22px;
    color: #999;
}

/* OPEN */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}


/* =========================
   FOOTER
========================= */


footer {

    padding:35px 20px;

    text-align:center;

    background:#050505;

    color:#777;

    font-size:14px;

}



.footer-tag {

    margin-top:8px;

    color:#555;

}

/* =========================
   MOBILE MENU
========================= */


.menu-toggle {

    display:none;

    font-size:28px;

    color:#ffffff;

    cursor:pointer;

}


/* TABLET + MOBILE */

@media (max-width: 800px) {


    .menu-toggle {

        display:block;

    }


    nav {

        position:absolute;

        top:75px;

        left:0;

        width:100%;

        background:#0d0d0d;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:20px;

        padding:30px 0;


        transform:translateY(-150%);

        transition:.3s ease;

    }


    nav.active {

        transform:translateY(0);

    }


    .navbar {

        padding:15px 20px;

    }


    .logo img {

        width:150px;

        transition: transform .3s ease;

        .logo img:hover {

    transform: scale(1.05);

}

    }

}

/* =========================
   SCROLL ANIMATIONS
========================= */


.fade-up {

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.fade-up.show {

    opacity:1;

    transform:translateY(0);

}

/* =========================
   GALLERY
========================= */

.gallery{

    padding:100px 20px;

    background:#080808;

}

.gallery-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.gallery-card{

    background:#151515;

    border:1px solid #252525;

    border-radius:18px;

    overflow:hidden;

    transition:.3s;

}

.gallery-card:hover{

    transform:translateY(-10px);

    border-color:#ff7a00;

    box-shadow:0 20px 45px rgba(255,122,0,.18);

}

.gallery-card img{

    width:100%;

    display:block;

    transition:.35s;

}

.gallery-card:hover img{

    transform:scale(1.04);

}

.gallery-card h3{

    padding:20px 20px 10px;

}

.gallery-card p{

    color:#999;

    padding:0 20px 25px;

}

/* =========================
   LIGHTBOX
========================= */

.lightbox{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    justify-content:center;

    align-items:center;

    z-index:5000;

}

.lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:12px;

}

.close-lightbox{

    position:absolute;

    top:25px;

    right:35px;

    color:white;

    font-size:40px;

    cursor:pointer;

}



/* =========================
   BACK TO TOP
========================= */

#topBtn{

    position:fixed;

    bottom:25px;

    right:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#ff7a00;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    display:none;

    z-index:999;

    box-shadow:0 12px 30px rgba(255,122,0,.3);

    transition:.25s;

}

#topBtn:hover{

    transform:translateY(-3px);

    background:#ff8f2b;

}

/* Center Get Started section */

.contact-box {
    text-align: center;
}

.contact-box .btn {
    display: inline-block;
}
@media (max-width: 600px) {

    .hero {
        padding: 110px 20px 70px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero .buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero .buttons .btn {
        width: 100%;
        max-width: 280px;
    }

}
/* Clickable contact email */
.contact-box .email {
    display: block;
    margin-top: 14px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.contact-box .email:hover {
    text-decoration: underline;
}

/* ================================
   StevelleTV Contact Form
   ================================ */

.contact-form {
    width: 100%;
    max-width: 650px;
    margin: 30px auto 0;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: inherit;
    font-family: inherit;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    opacity: 0.6;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: wait;
}

.form-message {
    margin-top: 18px;
    padding: 12px 16px;
    border-radius: 8px;
    display: none;
}

.form-message.success,
.form-message.error {
    display: block;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.15);
}

.form-message.error {
    background: rgba(231, 76, 60, 0.15);
}

@media (max-width: 700px) {

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

}
