:root{--bg:#0b0f19;--panel:#121a2b;--neon:#37d5ff;--pink:#c13bff;--text:#eaf2ff}*{box-sizing:border-box}body{margin:0;background:radial-gradient(circle at top,#111a30,var(--bg));color:var(--text);font-family:Inter,sans-serif}a{color:var(--neon)}.navbar{display:flex;justify-content:space-between;padding:1rem 2rem}.sticky{position:sticky;top:0}.glass{backdrop-filter:blur(12px);background:#101726c7}.hero{min-height:80vh;display:grid;place-items:center;text-align:center;background:linear-gradient(120deg,#111,#1f1244)}.btn{background:linear-gradient(90deg,var(--neon),var(--pink));border:0;color:#08101b;padding:.7rem 1rem;border-radius:8px}.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem}.product-card,.card{background:var(--panel);padding:1rem;border:1px solid #2f4366;border-radius:12px;position:relative}.product-card:hover{box-shadow:0 0 15px var(--neon)}.badge{position:absolute;top:10px;left:10px;padding:3px 8px;border-radius:8px}.sold{background:#f04444}.promo{background:#22c55e;left:auto;right:10px}.footer{padding:2rem;text-align:center}.page,section{padding:2rem 5vw}.chips{display:flex;flex-wrap:wrap;gap:.7rem}.chip{background:#1a2339;padding:.5rem .8rem;border-radius:20px}.hamburger{display:none}@media(max-width:768px){#navMenu{display:none;position:absolute;top:60px;left:0;right:0;background:#111}.show{display:flex!important;flex-direction:column}.hamburger{display:block}}.toast{position:fixed;right:1rem;top:1rem;background:#1f2b44;padding:.8rem;border-radius:8px}.wa-float,#backTop{position:fixed;bottom:1rem;right:1rem}#backTop{right:5rem}


/* =========================
   GLOBAL
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    background:
    radial-gradient(circle at top left,#0f172a 0%,#050816 40%,#12051f 100%);
    color:white;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

/* =========================
   LINKS
========================= */

a{
    text-decoration:none;
    color:inherit;
}

/* =========================
   LOADER
========================= */

#loader{
    position:fixed;
    inset:0;
    background:#050816;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.4s;
}

#loader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-ring{
    width:70px;
    height:70px;
    border-radius:50%;
    border:4px solid rgba(255,255,255,0.1);
    border-top:4px solid #00d9ff;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

/* =========================
   NAVBAR
========================= */

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:18px 0;
    transition:0.3s ease;
    backdrop-filter:blur(18px);
    background:rgba(5,8,22,0.75);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.main-header.scrolled{
    padding:12px 0;
    background:rgba(5,8,22,0.95);
    box-shadow:0 0 30px rgba(0,217,255,0.08);
}

.nav-container{
    width:92%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* =========================
   LOGO
========================= */

.logo-area{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-icon{
    width:50px;
    height:50px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    font-size:24px;
    color:white;
    box-shadow:0 0 25px rgba(0,217,255,0.4);
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-main{
    font-family:'Orbitron',sans-serif;
    font-size:22px;
    font-weight:800;
    line-height:1;
}

.logo-sub{
    font-size:12px;
    color:#9ca3af;
}

/* =========================
   DESKTOP NAV
========================= */

.desktop-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-link{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:15px;
    color:#d1d5db;
    transition:0.3s;
    position:relative;
}

.nav-link:hover{
    color:#00d9ff;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:linear-gradient(to right,#00d9ff,#b026ff);
    transition:0.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* =========================
   ACTIONS
========================= */

.nav-actions{
    display:flex;
    align-items:center;
    gap:16px;
}

/* SEARCH */

.search-box{
    width:240px;
    height:48px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    display:flex;
    align-items:center;
    padding:0 16px;
    gap:10px;
}

.search-box i{
    color:#9ca3af;
}

.search-box input{
    width:100%;
    background:none;
    border:none;
    outline:none;
    color:white;
    font-size:14px;
}

.search-box input::placeholder{
    color:#6b7280;
}

/* CART */

.cart-btn{
    width:50px;
    height:50px;
    border-radius:14px;
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    color:white;
    font-size:22px;
    box-shadow:0 0 20px rgba(0,217,255,0.35);
}

.cart-count{
    position:absolute;
    top:-6px;
    right:-6px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#ff2e63;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:700;
}

/* MOBILE BUTTON */

.mobile-toggle{
    display:none;
    width:48px;
    height:48px;
    border:none;
    border-radius:14px;
    background:rgba(255,255,255,0.06);
    color:white;
    font-size:22px;
    cursor:pointer;
}

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

.mobile-menu{
    position:fixed;
    top:90px;
    left:0;
    width:100%;
    background:#0b1020;
    border-top:1px solid rgba(255,255,255,0.08);
    transform:translateY(-120%);
    transition:0.4s;
    z-index:999;
}

.mobile-menu.active{
    transform:translateY(0);
}

.mobile-menu-content{
    display:flex;
    flex-direction:column;
    padding:20px;
}

.mobile-menu-content a{
    padding:16px;
    border-radius:12px;
    color:#d1d5db;
    transition:0.3s;
    display:flex;
    align-items:center;
    gap:12px;
}

.mobile-menu-content a:hover{
    background:rgba(255,255,255,0.05);
    color:#00d9ff;
}

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

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding-top:120px;
}

.hero-content h1{
    font-size:72px;
    font-weight:800;
    margin-bottom:20px;
    font-family:'Orbitron',sans-serif;
}

.hero-content p{
    font-size:20px;
    color:#cbd5e1;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/* =========================
   BUTTONS
========================= */

.btn,
.hero-buttons a{
    padding:14px 28px;
    border-radius:14px;
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    color:white;
    font-weight:600;
    transition:0.3s;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    box-shadow:0 0 20px rgba(0,217,255,0.25);
}

.btn:hover,
.hero-buttons a:hover{
    transform:translateY(-4px);
    box-shadow:0 0 30px rgba(176,38,255,0.4);
}

/* =========================
   SECTIONS
========================= */

section{
    width:92%;
    max-width:1400px;
    margin:auto;
    padding:80px 0;
}

.section-title{
    font-size:42px;
    margin-bottom:40px;
    font-family:'Orbitron',sans-serif;
}

/* =========================
   PRODUCT CARDS
========================= */

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    overflow:hidden;
    transition:0.4s;
    backdrop-filter:blur(14px);
}

.product-card:hover{
    transform:translateY(-10px);
    border-color:#00d9ff;
    box-shadow:0 0 40px rgba(0,217,255,0.15);
}

.product-image{
    width:100%;
    height:280px;
    object-fit:cover;
    background:#0f172a;
}

.product-content{
    padding:24px;
}

.product-title{
    font-size:22px;
    margin-bottom:12px;
    font-weight:700;
}

.product-price{
    font-size:24px;
    font-weight:700;
    color:#00d9ff;
    margin-bottom:20px;
}

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

footer{
    margin-top:100px;
    border-top:1px solid rgba(255,255,255,0.08);
    background:#050816;
    padding:60px 0;
}

.footer-container{
    width:92%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:40px;
}

.footer-title{
    font-size:22px;
    margin-bottom:20px;
    font-weight:700;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-links a{
    color:#9ca3af;
    transition:0.3s;
}

.footer-links a:hover{
    color:#00d9ff;
}

.footer-bottom{
    margin-top:60px;
    text-align:center;
    color:#6b7280;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .desktop-nav{
        display:none;
    }

    .search-box{
        display:none;
    }

    .mobile-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

}

@media(max-width:768px){

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

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

    .section-title{
        font-size:30px;
    }

}

/* =========================================
   HOME PAGE MODERN DESIGN
========================================= */

/* HERO */

.modern-hero{
    min-height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding-top:120px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,rgba(176,38,255,0.18),transparent 30%),
    radial-gradient(circle at bottom left,rgba(0,217,255,0.15),transparent 30%);
    z-index:1;
}

.hero-container{
    width:92%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 520px;
    gap:80px;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    color:#00d9ff;
    font-size:14px;
    margin-bottom:24px;
}

.hero-left h1{
    font-size:76px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:28px;
    font-family:'Orbitron',sans-serif;
}

.hero-left h1 span{
    background:linear-gradient(to right,#00d9ff,#b026ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-left p{
    font-size:18px;
    line-height:1.8;
    color:#cbd5e1;
    max-width:620px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.btn-primary,
.btn-secondary{
    height:58px;
    padding:0 30px;
    border-radius:16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-weight:600;
    transition:0.35s;
}

.btn-primary{
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    color:white;
    box-shadow:0 0 25px rgba(0,217,255,0.25);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.1);
    background:rgba(255,255,255,0.04);
    color:white;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-5px);
}

.hero-stats{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
}

.stat-box{
    min-width:150px;
    padding:22px;
    border-radius:20px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    backdrop-filter:blur(12px);
}

.stat-box h3{
    font-size:30px;
    margin-bottom:10px;
    color:#00d9ff;
}

.stat-box span{
    color:#94a3b8;
    font-size:14px;
}

.hero-right{
    display:flex;
    justify-content:center;
}

.hero-card{
    width:100%;
    max-width:500px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    overflow:hidden;
    backdrop-filter:blur(16px);
    transition:0.4s;
}

.hero-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 40px rgba(0,217,255,0.12);
}

.hero-card img{
    width:100%;
    height:420px;
    object-fit:cover;
}

.hero-card-content{
    padding:30px;
}

.hero-card-tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(0,217,255,0.12);
    color:#00d9ff;
    margin-bottom:18px;
    font-size:13px;
}

.hero-card-content h3{
    font-size:28px;
    margin-bottom:14px;
}

.hero-card-content p{
    color:#94a3b8;
    line-height:1.7;
}

/* =========================================
   SECTIONS
========================================= */

.home-section{
    width:92%;
    max-width:1400px;
    margin:auto;
    padding:100px 0;
}

.section-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    margin-bottom:50px;
    gap:30px;
}

.section-mini-title{
    display:block;
    color:#00d9ff;
    font-size:14px;
    margin-bottom:12px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    font-family:'Orbitron',sans-serif;
}

.view-all-btn{
    display:flex;
    align-items:center;
    gap:10px;
    color:#00d9ff;
    font-weight:600;
    transition:0.3s;
}

.view-all-btn:hover{
    transform:translateX(5px);
}

/* =========================================
   PRODUCTS
========================================= */

.modern-products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:32px;
}

.modern-product-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    overflow:hidden;
    transition:0.4s;
    position:relative;
    backdrop-filter:blur(14px);
}

.modern-product-card:hover{
    transform:translateY(-10px);
    border-color:#00d9ff;
    box-shadow:0 0 40px rgba(0,217,255,0.12);
}

.product-image-wrapper{
    position:relative;
    overflow:hidden;
}

.product-image{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.4s;
}

.modern-product-card:hover .product-image{
    transform:scale(1.05);
}

.discount-badge,
.sold-badge{
    position:absolute;
    top:18px;
    left:18px;
    z-index:2;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

.discount-badge{
    background:#22c55e;
    color:white;
}

.sold-badge{
    background:#ef4444;
    color:white;
}

.product-info{
    padding:28px;
}

.product-brand{
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.product-title{
    font-size:24px;
    margin:14px 0;
    line-height:1.4;
}

.product-stock{
    margin-bottom:18px;
}

.in-stock{
    color:#22c55e;
    font-weight:600;
}

.out-stock{
    color:#ef4444;
    font-weight:600;
}

.product-prices{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:24px;
    flex-wrap:wrap;
}

.old-price{
    color:#6b7280;
    text-decoration:line-through;
}

.new-price{
    font-size:28px;
    color:#00d9ff;
    font-weight:700;
}

.product-actions{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.details-btn{
    flex:1;
    height:52px;
    border-radius:16px;
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-weight:600;
}

.cart-modern-btn{
    width:52px;
    height:52px;
    border:none;
    border-radius:16px;
    background:rgba(255,255,255,0.06);
    color:white;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
}

.cart-modern-btn:hover{
    background:#00d9ff;
}

/* =========================================
   CATEGORIES
========================================= */

.categories-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:24px;
}

.category-card{
    padding:34px;
    border-radius:26px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    transition:0.35s;
    text-align:center;
}

.category-card:hover{
    transform:translateY(-10px);
    border-color:#00d9ff;
    box-shadow:0 0 40px rgba(0,217,255,0.12);
}

.category-icon{
    width:72px;
    height:72px;
    margin:auto auto 24px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    font-size:32px;
}

.category-card h3{
    font-size:24px;
    margin-bottom:10px;
}

.category-card span{
    color:#94a3b8;
}

/* =========================================
   BRANDS
========================================= */

.brands-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:24px;
}

.brand-card{
    height:120px;
    border-radius:24px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    transition:0.35s;
}

.brand-card:hover{
    transform:translateY(-8px);
    color:#00d9ff;
    border-color:#00d9ff;
}

/* =========================================
   BLOG
========================================= */

.blog-grid-modern{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:32px;
}

.blog-card-modern{
    border-radius:28px;
    overflow:hidden;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    transition:0.35s;
}

.blog-card-modern:hover{
    transform:translateY(-10px);
    border-color:#00d9ff;
}

.blog-image img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-content{
    padding:28px;
}

.blog-category{
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.blog-content h3{
    font-size:28px;
    margin:18px 0;
    line-height:1.4;
}

.blog-content p{
    color:#94a3b8;
    line-height:1.8;
    margin-bottom:24px;
}

.blog-read-btn{
    color:#00d9ff;
    font-weight:600;
}

/* =========================================
   NEWSLETTER
========================================= */

.newsletter-modern{
    width:92%;
    max-width:1400px;
    margin:100px auto;
    padding:80px;
    border-radius:36px;
    background:
    linear-gradient(135deg,
    rgba(0,217,255,0.12),
    rgba(176,38,255,0.14));
    border:1px solid rgba(255,255,255,0.08);
    text-align:center;
    position:relative;
    overflow:hidden;
}

.newsletter-content{
    max-width:760px;
    margin:auto;
}

.newsletter-mini{
    color:#00d9ff;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
}

.newsletter-modern h2{
    font-size:54px;
    margin:20px 0;
    font-family:'Orbitron',sans-serif;
}

.newsletter-modern p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:40px;
}

.newsletter-form{
    display:flex;
    gap:18px;
    justify-content:center;
    flex-wrap:wrap;
}

.newsletter-form input{
    width:420px;
    max-width:100%;
    height:60px;
    border:none;
    outline:none;
    border-radius:18px;
    padding:0 22px;
    background:rgba(255,255,255,0.08);
    color:white;
    font-size:15px;
}

.newsletter-form button{
    height:60px;
    padding:0 30px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    color:white;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:10px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .hero-container{
        grid-template-columns:1fr;
    }

    .hero-right{
        order:-1;
    }

}

@media(max-width:768px){

    .hero-left h1{
        font-size:48px;
    }

    .section-title{
        font-size:34px;
    }

    .section-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .newsletter-modern{
        padding:50px 24px;
    }

    .newsletter-modern h2{
        font-size:36px;
    }

}


/* =========================================
   PRODUCTS PAGE
========================================= */

.products-hero{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding-top:120px;
}

.products-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(176,38,255,0.18),
    transparent 30%),
    radial-gradient(circle at bottom left,
    rgba(0,217,255,0.12),
    transparent 30%);
}

.products-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    to bottom,
    rgba(5,8,22,0.65),
    rgba(5,8,22,0.95)
    );
}

.products-hero-content{
    position:relative;
    z-index:2;
    width:92%;
    max-width:900px;
}

.products-mini-title{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#00d9ff;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:24px;
}

.products-hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:24px;
    font-family:'Orbitron',sans-serif;
}

.products-hero p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
}

/* =========================================
   MAIN LAYOUT
========================================= */

.products-main-section{
    width:92%;
    max-width:1500px;
    margin:auto;
    padding:100px 0;
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
}

/* =========================================
   SIDEBAR
========================================= */

.products-sidebar{
    position:sticky;
    top:120px;
    height:fit-content;
}

.sidebar-box{
    padding:30px;
    border-radius:30px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    margin-bottom:30px;
}

.sidebar-box h3{
    font-size:28px;
    margin-bottom:30px;
    font-family:'Orbitron',sans-serif;
}

.modern-filter-form{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.filter-group{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.filter-group label{
    font-size:14px;
    color:#cbd5e1;
    font-weight:600;
}

.modern-input{
    height:56px;
    border-radius:16px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 18px;
}

.modern-input i{
    color:#00d9ff;
    font-size:18px;
}

.modern-input input{
    width:100%;
    background:none;
    border:none;
    outline:none;
    color:white;
    font-size:14px;
}

.modern-input input::placeholder{
    color:#6b7280;
}

.filter-group select{
    width:100%;
    height:56px;
    border:none;
    outline:none;
    border-radius:16px;
    padding:0 18px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:white;
    font-size:14px;
}

.filter-group select option{
    background:#0b1020;
    color:white;
}

.filter-btn{
    height:58px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    color:white;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:0.35s;
    box-shadow:0 0 30px rgba(0,217,255,0.15);
}

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

/* =========================================
   SIDEBAR PROMO
========================================= */

.sidebar-promo{
    padding:32px;
    border-radius:30px;
    background:
    linear-gradient(135deg,
    rgba(0,217,255,0.12),
    rgba(176,38,255,0.12));
    border:1px solid rgba(255,255,255,0.08);
}

.sidebar-promo span{
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.sidebar-promo h3{
    font-size:32px;
    line-height:1.3;
    margin:20px 0;
}

.sidebar-promo p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:28px;
}

.sidebar-promo a{
    height:52px;
    padding:0 26px;
    border-radius:16px;
    background:white;
    color:#0b1020;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

/* =========================================
   PRODUCTS AREA
========================================= */

.products-top-bar{
    margin-bottom:40px;
}

.products-top-bar h2{
    font-size:42px;
    margin-bottom:10px;
    font-family:'Orbitron',sans-serif;
}

.products-top-bar p{
    color:#94a3b8;
}

/* =========================================
   PRODUCTS GRID
========================================= */

.products-modern-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:32px;
}

/* =========================================
   PRODUCT CARD
========================================= */

.modern-shop-card{
    border-radius:28px;
    overflow:hidden;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s;
    backdrop-filter:blur(16px);
    position:relative;
}

.modern-shop-card:hover{
    transform:translateY(-10px);
    border-color:#00d9ff;
    box-shadow:0 0 40px rgba(0,217,255,0.12);
}

.shop-card-image{
    position:relative;
    overflow:hidden;
}

.shop-card-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.4s;
}

.modern-shop-card:hover img{
    transform:scale(1.05);
}

.card-discount,
.card-sold{
    position:absolute;
    top:18px;
    left:18px;
    z-index:3;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

.card-discount{
    background:#22c55e;
    color:white;
}

.card-sold{
    background:#ef4444;
    color:white;
}

.shop-card-overlay{
    position:absolute;
    inset:0;
    background:rgba(5,8,22,0.65);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.35s;
}

.modern-shop-card:hover .shop-card-overlay{
    opacity:1;
}

.quick-view-modern{
    padding:14px 24px;
    border-radius:14px;
    background:white;
    color:#0b1020;
    font-weight:700;
}

.shop-card-content{
    padding:28px;
}

.shop-card-category{
    display:inline-block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.shop-card-content h3{
    font-size:24px;
    line-height:1.4;
    margin-bottom:20px;
}

.shop-card-price{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:24px;
}

.shop-card-price .old{
    color:#6b7280;
    text-decoration:line-through;
}

.shop-card-price .new{
    color:#00d9ff;
    font-size:28px;
    font-weight:700;
}

.shop-card-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.available-stock{
    color:#22c55e;
    font-weight:600;
}

.unavailable-stock{
    color:#ef4444;
    font-weight:600;
}

.shop-cart-btn{
    width:54px;
    height:54px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    color:white;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
}

.shop-cart-btn:hover{
    transform:scale(1.08);
}

/* =========================================
   EMPTY STATE
========================================= */

.no-products-found{
    width:100%;
    padding:100px 40px;
    border-radius:32px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    text-align:center;
}

.no-products-icon{
    width:120px;
    height:120px;
    margin:auto auto 30px;
    border-radius:30px;
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:54px;
}

.no-products-found h2{
    font-size:42px;
    margin-bottom:18px;
}

.no-products-found p{
    color:#94a3b8;
    margin-bottom:32px;
}

.instagram-contact-btn{
    height:58px;
    padding:0 28px;
    border-radius:18px;
    background:linear-gradient(135deg,#ff006e,#8338ec);
    color:white;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

/* =========================================
   PAGINATION
========================================= */

.modern-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    margin-top:70px;
}

.modern-pagination a,
.active-page{
    width:54px;
    height:54px;
    border-radius:16px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    transition:0.3s;
}

.modern-pagination a:hover,
.active-page{
    background:linear-gradient(135deg,#00d9ff,#b026ff);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .products-main-section{
        grid-template-columns:1fr;
    }

    .products-sidebar{
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

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

    .products-top-bar h2{
        font-size:32px;
    }

    .sidebar-box{
        padding:24px;
    }

    .products-main-section{
        padding:70px 0;
    }

}


/* =========================================
   BLOG PAGE
========================================= */

/* HERO */

.blog-hero{
    position:relative;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding-top:120px;
}

.blog-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(176,38,255,0.18),
    transparent 30%),
    radial-gradient(circle at bottom left,
    rgba(0,217,255,0.12),
    transparent 30%);
}

.blog-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to bottom,
    rgba(5,8,22,0.65),
    rgba(5,8,22,0.92)
    );
}

.blog-hero-content{
    position:relative;
    z-index:2;
    width:92%;
    max-width:1000px;
}

.blog-small-title{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#00d9ff;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:24px;
}

.blog-hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:24px;
    font-family:'Orbitron',sans-serif;
}

.blog-hero p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.9;
    max-width:850px;
    margin:auto auto 40px;
}

/* SEARCH */

.blog-search-box{
    width:100%;
    max-width:760px;
    margin:auto;
    height:70px;
    border-radius:22px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    padding:0 18px;
    gap:18px;
    backdrop-filter:blur(14px);
}

.blog-search-box i{
    color:#00d9ff;
    font-size:22px;
}

.blog-search-box input{
    flex:1;
    background:none;
    border:none;
    outline:none;
    color:white;
    font-size:15px;
}

.blog-search-box input::placeholder{
    color:#6b7280;
}

.blog-search-box button{
    height:52px;
    padding:0 26px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    color:white;
    font-weight:700;
    cursor:pointer;
}

/* =========================================
   GENERAL SECTIONS
========================================= */

.blog-trending-section,
.gaming-blog-main-section{
    width:92%;
    max-width:1500px;
    margin:auto;
    padding:100px 0;
}

.blog-section-top{
    margin-bottom:50px;
}

.blog-section-label{
    display:block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:14px;
}

.blog-section-top h2{
    font-size:48px;
    font-family:'Orbitron',sans-serif;
}

/* =========================================
   TRENDING GRID
========================================= */

.trending-blog-grid{
    display:grid;
    grid-template-columns:1.4fr 0.8fr;
    gap:32px;
}

/* FEATURED ARTICLE */

.featured-trending-article{
    border-radius:34px;
    overflow:hidden;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    transition:0.4s;
}

.featured-trending-article:hover{
    transform:translateY(-10px);
    border-color:#00d9ff;
    box-shadow:0 0 40px rgba(0,217,255,0.12);
}

.featured-trending-image img{
    width:100%;
    height:420px;
    object-fit:cover;
}

.featured-trending-content{
    padding:38px;
}

.featured-blog-tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(0,217,255,0.12);
    color:#00d9ff;
    font-size:13px;
    margin-bottom:20px;
}

.featured-trending-content h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:22px;
}

.featured-trending-content p{
    color:#94a3b8;
    line-height:1.9;
    margin-bottom:28px;
}

.featured-trending-content a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#00d9ff;
    font-weight:700;
}

/* SIDE ARTICLES */

.trending-side-articles{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.small-trending-card{
    padding:30px;
    border-radius:28px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    transition:0.35s;
}

.small-trending-card:hover{
    transform:translateY(-8px);
    border-color:#00d9ff;
}

.small-trending-card span{
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.small-trending-card h3{
    font-size:28px;
    line-height:1.5;
    margin:20px 0;
}

.small-trending-card a{
    color:#00d9ff;
    font-weight:700;
}

/* =========================================
   BLOG GRID
========================================= */

.modern-blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:34px;
}

/* CARD */

.modern-blog-card{
    border-radius:30px;
    overflow:hidden;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s;
    backdrop-filter:blur(16px);
}

.modern-blog-card:hover{
    transform:translateY(-10px);
    border-color:#00d9ff;
    box-shadow:0 0 40px rgba(0,217,255,0.12);
}

.modern-blog-image{
    position:relative;
    overflow:hidden;
}

.modern-blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.4s;
}

.modern-blog-card:hover img{
    transform:scale(1.05);
}

.modern-blog-category{
    position:absolute;
    left:20px;
    bottom:20px;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(5,8,22,0.75);
    backdrop-filter:blur(12px);
    color:#00d9ff;
    font-size:13px;
}

.modern-blog-content{
    padding:32px;
}

.modern-blog-meta{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:22px;
}

.modern-blog-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#94a3b8;
    font-size:14px;
}

.modern-blog-content h3{
    font-size:32px;
    line-height:1.4;
    margin-bottom:20px;
}

.modern-blog-content p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:28px;
}

.modern-blog-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#00d9ff;
    font-weight:700;
}

/* =========================================
   NEWSLETTER
========================================= */

.blog-newsletter-section{
    width:92%;
    max-width:1400px;
    margin:100px auto;
}

.blog-newsletter-box{
    padding:90px 60px;
    border-radius:38px;
    background:
    linear-gradient(135deg,
    rgba(0,217,255,0.12),
    rgba(176,38,255,0.14));
    border:1px solid rgba(255,255,255,0.08);
    text-align:center;
    position:relative;
    overflow:hidden;
}

.blog-newsletter-box span{
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.blog-newsletter-box h2{
    font-size:58px;
    margin:24px 0;
    font-family:'Orbitron',sans-serif;
}

.blog-newsletter-box p{
    color:#cbd5e1;
    line-height:1.9;
    max-width:760px;
    margin:auto auto 40px;
}

.blog-newsletter-form{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.blog-newsletter-form input{
    width:420px;
    max-width:100%;
    height:62px;
    border:none;
    outline:none;
    border-radius:18px;
    padding:0 22px;
    background:rgba(255,255,255,0.08);
    color:white;
    font-size:15px;
}

.blog-newsletter-form button{
    height:62px;
    padding:0 28px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    color:white;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:10px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .trending-blog-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .blog-hero h1{
        font-size:44px;
    }

    .blog-section-top h2{
        font-size:34px;
    }

    .featured-trending-content h2{
        font-size:30px;
    }

    .modern-blog-content h3{
        font-size:24px;
    }

    .blog-newsletter-box{
        padding:60px 24px;
    }

    .blog-newsletter-box h2{
        font-size:38px;
    }

    .blog-search-box{
        height:auto;
        padding:18px;
        flex-direction:column;
        align-items:stretch;
    }

    .blog-search-box button{
        width:100%;
    }

}

/* =========================================
   BLOG ARTICLE PAGE
========================================= */

/* HERO */

.article-hero{
    position:relative;
    min-height:460px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding-top:120px;
}

.article-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(176,38,255,0.18),
    transparent 30%),
    radial-gradient(circle at bottom left,
    rgba(0,217,255,0.12),
    transparent 30%);
}

.article-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to bottom,
    rgba(5,8,22,0.65),
    rgba(5,8,22,0.94)
    );
}

.article-hero-content{
    position:relative;
    z-index:2;
    width:92%;
    max-width:1000px;
}

.article-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#00d9ff;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:24px;
}

.article-hero h1{
    font-size:68px;
    line-height:1.15;
    margin-bottom:28px;
    font-family:'Orbitron',sans-serif;
}

.article-meta{
    display:flex;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
}

.article-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#cbd5e1;
    font-size:15px;
}

/* =========================================
   MAIN SECTION
========================================= */

.article-main-section{
    width:92%;
    max-width:1500px;
    margin:auto;
    padding:100px 0;
}

.article-layout{
    display:grid;
    grid-template-columns:1fr 340px;
    gap:50px;
    align-items:start;
}

/* =========================================
   FEATURED IMAGE
========================================= */

.article-featured-image{
    border-radius:34px;
    overflow:hidden;
    margin-bottom:40px;
    border:1px solid rgba(255,255,255,0.08);
}

.article-featured-image img{
    width:100%;
    height:520px;
    object-fit:cover;
}

/* =========================================
   ARTICLE CONTENT
========================================= */

.modern-article-content{
    padding:50px;
    border-radius:34px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
}

.article-intro{
    font-size:22px;
    line-height:2;
    color:#e2e8f0;
    margin-bottom:40px;
}

.modern-article-content h2{
    font-size:42px;
    margin:60px 0 24px;
    line-height:1.3;
    font-family:'Orbitron',sans-serif;
}

.modern-article-content p{
    color:#cbd5e1;
    line-height:2;
    margin-bottom:26px;
    font-size:17px;
}

.modern-article-content ul{
    margin:30px 0;
    padding-left:22px;
}

.modern-article-content li{
    margin-bottom:18px;
    color:#e2e8f0;
    line-height:1.9;
}

.modern-article-content blockquote{
    margin:50px 0;
    padding:34px;
    border-radius:28px;
    background:
    linear-gradient(135deg,
    rgba(0,217,255,0.12),
    rgba(176,38,255,0.12));
    border-left:5px solid #00d9ff;
    font-size:24px;
    line-height:1.8;
    color:white;
    font-weight:600;
}

.db-article-content{
    margin-top:50px;
    padding-top:40px;
    border-top:1px solid rgba(255,255,255,0.08);
    color:#94a3b8;
    line-height:2;
}

/* =========================================
   SIDEBAR
========================================= */

.article-sidebar{
    position:sticky;
    top:120px;
    display:flex;
    flex-direction:column;
    gap:30px;
}

.article-sidebar-box{
    padding:30px;
    border-radius:30px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
}

.article-sidebar-box h3{
    font-size:28px;
    margin-bottom:28px;
    font-family:'Orbitron',sans-serif;
}

/* AUTHOR */

.author-box{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.author-avatar{
    width:72px;
    height:72px;
    border-radius:22px;
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
}

.author-box h4{
    font-size:22px;
    margin-bottom:10px;
}

.author-box p{
    color:#94a3b8;
    line-height:1.8;
}

/* SIDEBAR ARTICLES */

.sidebar-articles{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.sidebar-article-item{
    display:flex;
    gap:16px;
    align-items:center;
    transition:0.3s;
}

.sidebar-article-item:hover{
    transform:translateX(6px);
}

.sidebar-article-item img{
    width:90px;
    height:90px;
    border-radius:18px;
    object-fit:cover;
    flex-shrink:0;
}

.sidebar-article-item h4{
    font-size:16px;
    line-height:1.5;
    margin-bottom:10px;
}

.sidebar-article-item span{
    color:#00d9ff;
    font-size:14px;
}

/* =========================================
   PROMO BOX
========================================= */

.article-promo-box{
    padding:38px;
    border-radius:32px;
    background:
    linear-gradient(135deg,
    rgba(0,217,255,0.12),
    rgba(176,38,255,0.14));
    border:1px solid rgba(255,255,255,0.08);
}

.article-promo-box span{
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.article-promo-box h3{
    font-size:36px;
    line-height:1.3;
    margin:24px 0;
}

.article-promo-box p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:30px;
}

.article-promo-box a{
    height:54px;
    padding:0 28px;
    border-radius:18px;
    background:white;
    color:#0b1020;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

/* =========================================
   RELATED ARTICLES
========================================= */

.related-articles-section{
    width:92%;
    max-width:1500px;
    margin:auto;
    padding:100px 0;
}

.related-top{
    margin-bottom:50px;
}

.related-top span{
    display:block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:14px;
}

.related-top h2{
    font-size:48px;
    font-family:'Orbitron',sans-serif;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:34px;
}

/* CARD */

.related-card{
    border-radius:30px;
    overflow:hidden;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s;
}

.related-card:hover{
    transform:translateY(-10px);
    border-color:#00d9ff;
    box-shadow:0 0 40px rgba(0,217,255,0.12);
}

.related-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.related-card-content{
    padding:30px;
}

.related-card-content span{
    display:inline-block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.related-card-content h3{
    font-size:28px;
    line-height:1.4;
    margin-bottom:22px;
}

.related-card-content a{
    color:#00d9ff;
    font-weight:700;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .article-layout{
        grid-template-columns:1fr;
    }

    .article-sidebar{
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

    .article-hero h1{
        font-size:42px;
    }

    .modern-article-content{
        padding:30px 24px;
    }

    .modern-article-content h2{
        font-size:30px;
    }

    .related-top h2{
        font-size:34px;
    }

    .article-featured-image img{
        height:320px;
    }

    .article-meta{
        flex-direction:column;
        gap:12px;
    }

    .modern-article-content blockquote{
        font-size:18px;
        padding:24px;
    }

}


/* =========================================
   CATEGORIES PAGE
========================================= */

/* HERO */

.categories-hero{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding-top:120px;
}

.categories-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(176,38,255,0.18),
    transparent 30%),
    radial-gradient(circle at bottom left,
    rgba(0,217,255,0.12),
    transparent 30%);
}

.categories-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to bottom,
    rgba(5,8,22,0.65),
    rgba(5,8,22,0.95)
    );
}

.categories-hero-content{
    position:relative;
    z-index:2;
    width:92%;
    max-width:900px;
}

.categories-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#00d9ff;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:24px;
}

.categories-hero h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:24px;
    font-family:'Orbitron',sans-serif;
}

.categories-hero p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.9;
}

/* =========================================
   MAIN SECTION
========================================= */

.categories-main-section{
    width:92%;
    max-width:1500px;
    margin:auto;
    padding:100px 0;
}

.categories-top{
    margin-bottom:60px;
}

.categories-mini-title{
    display:block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:14px;
}

.categories-top h2{
    font-size:52px;
    font-family:'Orbitron',sans-serif;
}

/* =========================================
   GRID
========================================= */

.categories-modern-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:34px;
}

/* =========================================
   CATEGORY CARD
========================================= */

.modern-category-card{
    position:relative;
    overflow:hidden;
    border-radius:34px;
    padding:38px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
    transition:0.45s;
}

.modern-category-card:hover{
    transform:translateY(-12px);
    border-color:#00d9ff;
    box-shadow:0 0 40px rgba(0,217,255,0.14);
}

.category-glow{
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(0,217,255,0.12);
    top:-120px;
    right:-120px;
    filter:blur(40px);
    transition:0.4s;
}

.modern-category-card:hover .category-glow{
    transform:scale(1.2);
}

.modern-category-icon{
    width:92px;
    height:92px;
    border-radius:28px;
    background:
    linear-gradient(135deg,
    #00d9ff,
    #b026ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:30px;
    position:relative;
    z-index:2;
    box-shadow:0 0 30px rgba(0,217,255,0.25);
}

.modern-category-content{
    position:relative;
    z-index:2;
}

.category-small-text{
    display:inline-block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.modern-category-content h3{
    font-size:36px;
    line-height:1.3;
    margin-bottom:20px;
    font-family:'Orbitron',sans-serif;
}

.modern-category-content p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:30px;
}

.category-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#00d9ff;
    font-weight:700;
    transition:0.3s;
}

.modern-category-card:hover .category-link{
    gap:16px;
}

/* =========================================
   FEATURE SECTION
========================================= */

.categories-feature-section{
    width:92%;
    max-width:1500px;
    margin:0 auto 100px;
}

.categories-feature-box{
    display:grid;
    grid-template-columns:1fr 500px;
    gap:60px;
    align-items:center;
    padding:70px;
    border-radius:40px;
    background:
    linear-gradient(135deg,
    rgba(0,217,255,0.08),
    rgba(176,38,255,0.10));
    border:1px solid rgba(255,255,255,0.08);
    overflow:hidden;
    position:relative;
}

.categories-feature-box::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(176,38,255,0.08);
    right:-180px;
    top:-180px;
    filter:blur(50px);
}

.categories-feature-left{
    position:relative;
    z-index:2;
}

.categories-feature-left span{
    display:block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.categories-feature-left h2{
    font-size:58px;
    line-height:1.2;
    margin-bottom:28px;
    font-family:'Orbitron',sans-serif;
}

.categories-feature-left p{
    color:#cbd5e1;
    line-height:2;
    margin-bottom:40px;
    max-width:720px;
}

.categories-feature-stats{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
}

.feature-stat{
    min-width:160px;
    padding:30px;
    border-radius:28px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
}

.feature-stat h3{
    font-size:42px;
    color:#00d9ff;
    margin-bottom:12px;
}

.feature-stat span{
    color:#cbd5e1;
    font-size:14px;
}

/* =========================================
   FEATURE CARD
========================================= */

.feature-card-modern{
    position:relative;
    z-index:2;
    border-radius:34px;
    overflow:hidden;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
}

.feature-card-modern img{
    width:100%;
    height:340px;
    object-fit:cover;
}

.feature-card-content{
    padding:34px;
}

.feature-card-content span{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(0,217,255,0.12);
    color:#00d9ff;
    font-size:13px;
    margin-bottom:20px;
}

.feature-card-content h3{
    font-size:34px;
    line-height:1.3;
    margin-bottom:20px;
}

.feature-card-content p{
    color:#cbd5e1;
    line-height:1.8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .categories-feature-box{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .categories-hero h1{
        font-size:42px;
    }

    .categories-top h2{
        font-size:34px;
    }

    .modern-category-content h3{
        font-size:28px;
    }

    .categories-feature-left h2{
        font-size:38px;
    }

    .categories-feature-box{
        padding:40px 24px;
    }

    .feature-stat{
        width:100%;
    }

}


/* =========================================
   BRANDS PAGE
========================================= */

/* HERO */

.brands-hero{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding-top:120px;
}

.brands-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(176,38,255,0.18),
    transparent 30%),
    radial-gradient(circle at bottom left,
    rgba(0,217,255,0.12),
    transparent 30%);
}

.brands-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to bottom,
    rgba(5,8,22,0.65),
    rgba(5,8,22,0.95)
    );
}

.brands-hero-content{
    position:relative;
    z-index:2;
    width:92%;
    max-width:920px;
}

.brands-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#00d9ff;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:24px;
}

.brands-hero h1{
    font-size:70px;
    line-height:1.1;
    margin-bottom:24px;
    font-family:'Orbitron',sans-serif;
}

.brands-hero p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.9;
}

/* =========================================
   MAIN SECTION
========================================= */

.brands-main-section{
    width:92%;
    max-width:1500px;
    margin:auto;
    padding:100px 0;
}

.brands-top{
    margin-bottom:60px;
}

.brands-mini-title{
    display:block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:14px;
}

.brands-top h2{
    font-size:52px;
    font-family:'Orbitron',sans-serif;
}

/* =========================================
   GRID
========================================= */

.brands-modern-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:34px;
}

/* =========================================
   BRAND CARD
========================================= */

.modern-brand-card{
    position:relative;
    overflow:hidden;
    border-radius:34px;
    padding:40px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
    transition:0.45s;
}

.modern-brand-card:hover{
    transform:translateY(-12px);
    border-color:#00d9ff;
    box-shadow:0 0 40px rgba(0,217,255,0.14);
}

.brand-glow{
    position:absolute;
    width:240px;
    height:240px;
    border-radius:50%;
    background:rgba(0,217,255,0.12);
    top:-120px;
    right:-120px;
    filter:blur(40px);
    transition:0.4s;
}

.modern-brand-card:hover .brand-glow{
    transform:scale(1.2);
}

.brand-logo-area{
    width:100px;
    height:100px;
    border-radius:30px;
    background:
    linear-gradient(135deg,
    #00d9ff,
    #b026ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    margin-bottom:34px;
    position:relative;
    z-index:2;
    box-shadow:0 0 35px rgba(0,217,255,0.22);
}

.brand-card-content{
    position:relative;
    z-index:2;
}

.brand-small-title{
    display:inline-block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.brand-card-content h3{
    font-size:38px;
    line-height:1.3;
    margin-bottom:20px;
    font-family:'Orbitron',sans-serif;
}

.brand-card-content p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:30px;
}

.brand-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#00d9ff;
    font-weight:700;
    transition:0.3s;
}

.modern-brand-card:hover .brand-link{
    gap:16px;
}

/* =========================================
   FEATURE SECTION
========================================= */

.brands-feature-section{
    width:92%;
    max-width:1500px;
    margin:0 auto 100px;
}

.brands-feature-box{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:60px;
    align-items:center;
    padding:70px;
    border-radius:40px;
    background:
    linear-gradient(135deg,
    rgba(0,217,255,0.08),
    rgba(176,38,255,0.10));
    border:1px solid rgba(255,255,255,0.08);
    overflow:hidden;
    position:relative;
}

.brands-feature-box::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(176,38,255,0.08);
    right:-180px;
    top:-180px;
    filter:blur(50px);
}

.brands-feature-left{
    position:relative;
    z-index:2;
}

.brands-feature-left span{
    display:block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.brands-feature-left h2{
    font-size:58px;
    line-height:1.2;
    margin-bottom:28px;
    font-family:'Orbitron',sans-serif;
}

.brands-feature-left p{
    color:#cbd5e1;
    line-height:2;
    margin-bottom:40px;
    max-width:720px;
}

/* STATS */

.brands-stats-grid{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
}

.brands-stat-box{
    min-width:160px;
    padding:30px;
    border-radius:28px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
}

.brands-stat-box h3{
    font-size:42px;
    color:#00d9ff;
    margin-bottom:12px;
}

.brands-stat-box span{
    color:#cbd5e1;
    font-size:14px;
}

/* =========================================
   SHOWCASE CARD
========================================= */

.brands-showcase-card{
    position:relative;
    z-index:2;
    border-radius:34px;
    overflow:hidden;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
}

.brands-showcase-card img{
    width:100%;
    height:340px;
    object-fit:cover;
}

.brands-showcase-content{
    padding:36px;
}

.brands-showcase-content span{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(0,217,255,0.12);
    color:#00d9ff;
    font-size:13px;
    margin-bottom:20px;
}

.brands-showcase-content h3{
    font-size:36px;
    line-height:1.3;
    margin-bottom:20px;
}

.brands-showcase-content p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:30px;
}

.brands-showcase-content a{
    height:54px;
    padding:0 28px;
    border-radius:18px;
    background:white;
    color:#0b1020;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .brands-feature-box{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .brands-hero h1{
        font-size:42px;
    }

    .brands-top h2{
        font-size:34px;
    }

    .brand-card-content h3{
        font-size:28px;
    }

    .brands-feature-left h2{
        font-size:38px;
    }

    .brands-feature-box{
        padding:40px 24px;
    }

    .brands-stat-box{
        width:100%;
    }

}


/* =========================================
   APPOINTMENT PAGE
========================================= */

/* HERO */

.appointment-hero{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding-top:120px;
}

.appointment-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(176,38,255,0.18),
    transparent 30%),
    radial-gradient(circle at bottom left,
    rgba(0,217,255,0.12),
    transparent 30%);
}

.appointment-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to bottom,
    rgba(5,8,22,0.65),
    rgba(5,8,22,0.95)
    );
}

.appointment-hero-content{
    position:relative;
    z-index:2;
    width:92%;
    max-width:900px;
}

.appointment-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#00d9ff;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:24px;
}

.appointment-hero h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:24px;
    font-family:'Orbitron',sans-serif;
}

.appointment-hero p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.9;
}

/* =========================================
   MAIN SECTION
========================================= */

.appointment-main-section{
    width:92%;
    max-width:1500px;
    margin:auto;
    padding:100px 0;
}

.appointment-layout{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:60px;
    align-items:start;
}

/* =========================================
   LEFT SIDE
========================================= */

.appointment-info-side{
    position:relative;
}

.appointment-small-title{
    display:block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.appointment-info-side h2{
    font-size:58px;
    line-height:1.2;
    margin-bottom:28px;
    font-family:'Orbitron',sans-serif;
}

.appointment-info-side p{
    color:#cbd5e1;
    line-height:2;
    margin-bottom:40px;
    max-width:700px;
}

/* SERVICES */

.appointment-services-list{
    display:flex;
    flex-direction:column;
    gap:24px;
    margin-bottom:50px;
}

.appointment-service-box{
    display:flex;
    gap:22px;
    align-items:flex-start;
    padding:28px;
    border-radius:28px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    transition:0.35s;
}

.appointment-service-box:hover{
    transform:translateY(-6px);
    border-color:#00d9ff;
}

.appointment-service-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    background:
    linear-gradient(135deg,
    #00d9ff,
    #b026ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
    box-shadow:0 0 30px rgba(0,217,255,0.22);
}

.appointment-service-box h3{
    font-size:24px;
    margin-bottom:10px;
}

.appointment-service-box p{
    color:#94a3b8;
    line-height:1.8;
    margin:0;
}

/* STATS */

.appointment-stats{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
}

.appointment-stat-box{
    min-width:180px;
    padding:30px;
    border-radius:28px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
}

.appointment-stat-box h3{
    font-size:42px;
    color:#00d9ff;
    margin-bottom:12px;
}

.appointment-stat-box span{
    color:#cbd5e1;
}

/* =========================================
   FORM
========================================= */

.appointment-form-wrapper{
    position:sticky;
    top:120px;
}

.appointment-form-box{
    padding:42px;
    border-radius:36px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
}

.appointment-form-top{
    margin-bottom:34px;
}

.appointment-form-top span{
    display:block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.appointment-form-top h2{
    font-size:42px;
    font-family:'Orbitron',sans-serif;
}

/* FORM */

.modern-appointment-form{
    display:flex;
    flex-direction:column;
    gap:26px;
}

.appointment-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.appointment-input-group{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.appointment-input-group label{
    font-size:14px;
    color:#cbd5e1;
    font-weight:600;
}

/* INPUT */

.appointment-input,
.appointment-select{
    height:60px;
    border-radius:18px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    gap:14px;
    padding:0 20px;
}

.appointment-input i,
.appointment-select i,
.appointment-textarea i{
    color:#00d9ff;
    font-size:18px;
}

.appointment-input input,
.appointment-select select{
    width:100%;
    background:none;
    border:none;
    outline:none;
    color:white;
    font-size:14px;
}

.appointment-input input::placeholder,
.appointment-textarea textarea::placeholder{
    color:#6b7280;
}

.appointment-select select option{
    background:#0b1020;
    color:white;
}

/* TEXTAREA */

.appointment-textarea{
    min-height:160px;
    border-radius:22px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    gap:14px;
    padding:18px 20px;
}

.appointment-textarea textarea{
    width:100%;
    min-height:120px;
    background:none;
    border:none;
    outline:none;
    resize:none;
    color:white;
    font-size:14px;
    line-height:1.8;
}

/* BUTTON */

.appointment-submit-btn{
    height:64px;
    border:none;
    border-radius:20px;
    background:
    linear-gradient(135deg,
    #00d9ff,
    #b026ff);
    color:white;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    transition:0.35s;
    box-shadow:0 0 35px rgba(0,217,255,0.18);
}

.appointment-submit-btn:hover{
    transform:translateY(-5px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .appointment-layout{
        grid-template-columns:1fr;
    }

    .appointment-form-wrapper{
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

    .appointment-hero h1{
        font-size:42px;
    }

    .appointment-info-side h2{
        font-size:38px;
    }

    .appointment-form-top h2{
        font-size:32px;
    }

    .appointment-form-box{
        padding:32px 24px;
    }

    .appointment-grid{
        grid-template-columns:1fr;
    }

    .appointment-service-box{
        flex-direction:column;
    }

    .appointment-stat-box{
        width:100%;
    }

}


/* =========================================
   CONTACT PAGE
========================================= */

/* HERO */

.contact-hero{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding-top:120px;
}

.contact-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(176,38,255,0.18),
    transparent 30%),
    radial-gradient(circle at bottom left,
    rgba(0,217,255,0.12),
    transparent 30%);
}

.contact-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to bottom,
    rgba(5,8,22,0.65),
    rgba(5,8,22,0.95)
    );
}

.contact-hero-content{
    position:relative;
    z-index:2;
    width:92%;
    max-width:900px;
}

.contact-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#00d9ff;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:24px;
}

.contact-hero h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:24px;
    font-family:'Orbitron',sans-serif;
}

.contact-hero p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.9;
}

/* =========================================
   MAIN SECTION
========================================= */

.contact-main-section{
    width:92%;
    max-width:1500px;
    margin:auto;
    padding:100px 0;
}

.contact-layout{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:60px;
    align-items:start;
}

/* =========================================
   LEFT SIDE
========================================= */

.contact-info-side{
    position:relative;
}

.contact-small-title{
    display:block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.contact-info-side h2{
    font-size:58px;
    line-height:1.2;
    margin-bottom:28px;
    font-family:'Orbitron',sans-serif;
}

.contact-info-side p{
    color:#cbd5e1;
    line-height:2;
    margin-bottom:40px;
    max-width:700px;
}

/* INFO LIST */

.contact-info-list{
    display:flex;
    flex-direction:column;
    gap:24px;
    margin-bottom:40px;
}

.contact-info-box{
    display:flex;
    gap:22px;
    align-items:flex-start;
    padding:28px;
    border-radius:28px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    transition:0.35s;
}

.contact-info-box:hover{
    transform:translateY(-6px);
    border-color:#00d9ff;
}

.contact-info-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    background:
    linear-gradient(135deg,
    #00d9ff,
    #b026ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
    box-shadow:0 0 30px rgba(0,217,255,0.22);
}

.contact-info-box h3{
    font-size:24px;
    margin-bottom:10px;
}

.contact-info-box p{
    color:#94a3b8;
    line-height:1.8;
    margin:0;
}

/* SOCIALS */

.contact-socials{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.contact-socials a{
    width:58px;
    height:58px;
    border-radius:18px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:22px;
    transition:0.35s;
}

.contact-socials a:hover{
    transform:translateY(-5px);
    background:
    linear-gradient(135deg,
    #00d9ff,
    #b026ff);
    box-shadow:0 0 30px rgba(0,217,255,0.2);
}

/* =========================================
   FORM SIDE
========================================= */

.contact-form-wrapper{
    position:sticky;
    top:120px;
}

.contact-form-box{
    padding:42px;
    border-radius:36px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
}

.contact-form-top{
    margin-bottom:34px;
}

.contact-form-top span{
    display:block;
    color:#00d9ff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.contact-form-top h2{
    font-size:42px;
    font-family:'Orbitron',sans-serif;
}

/* FORM */

.modern-contact-form{
    display:flex;
    flex-direction:column;
    gap:26px;
}

.contact-input-group{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.contact-input-group label{
    font-size:14px;
    color:#cbd5e1;
    font-weight:600;
}

/* INPUT */

.contact-input{
    height:60px;
    border-radius:18px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    gap:14px;
    padding:0 20px;
}

.contact-input i,
.contact-textarea i{
    color:#00d9ff;
    font-size:18px;
}

.contact-input input{
    width:100%;
    background:none;
    border:none;
    outline:none;
    color:white;
    font-size:14px;
}

.contact-input input::placeholder,
.contact-textarea textarea::placeholder{
    color:#6b7280;
}

/* TEXTAREA */

.contact-textarea{
    min-height:180px;
    border-radius:22px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    gap:14px;
    padding:18px 20px;
}

.contact-textarea textarea{
    width:100%;
    min-height:140px;
    background:none;
    border:none;
    outline:none;
    resize:none;
    color:white;
    font-size:14px;
    line-height:1.8;
}

/* BUTTON */

.contact-submit-btn{
    height:64px;
    border:none;
    border-radius:20px;
    background:
    linear-gradient(135deg,
    #00d9ff,
    #b026ff);
    color:white;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    transition:0.35s;
    box-shadow:0 0 35px rgba(0,217,255,0.18);
}

.contact-submit-btn:hover{
    transform:translateY(-5px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .contact-layout{
        grid-template-columns:1fr;
    }

    .contact-form-wrapper{
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

    .contact-hero h1{
        font-size:42px;
    }

    .contact-info-side h2{
        font-size:38px;
    }

    .contact-form-top h2{
        font-size:32px;
    }

    .contact-form-box{
        padding:32px 24px;
    }

    .contact-info-box{
        flex-direction:column;
    }

}





/* LOGO IMAGE */

.footer-logo-image{
    width:140px;
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.footer-logo-image img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
}

/* SOCIAL ICONS */

.footer-socials{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:22px;
}

.footer-socials a{
    width:52px;
    height:52px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:white;
    font-size:22px;
    transition:0.3s ease;
}

.footer-socials a:hover{
    transform:translateY(-4px);
    background:linear-gradient(135deg,#00d9ff,#b026ff);
    box-shadow:0 0 20px rgba(0,217,255,0.3);
}


.footer-brand{
    display:flex;
    flex-direction:column;
    gap:24px;
}





/* CUSTOM SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#081120;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        180deg,
        #00d4ff,
        #8b5cf6
    );
    border-radius:20px;
}

/* WHATSAPP BUTTON */

.whatsapp-float{
    position:fixed;
    right:24px;
    bottom:24px;
    width:68px;
    height:68px;
    border-radius:50%;
    background:#25d366;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:34px;
    z-index:99999;
    box-shadow:0 10px 30px rgba(37,211,102,0.45);
    transition:0.3s;
    animation:whatsappFloat 2.5s infinite ease-in-out;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}

@keyframes whatsappFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }
}

/* FAQ BOT */

.faq-widget{
    position:fixed;
    right:105px;
    bottom:24px;
    width:320px;
    background:#0f172a;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    overflow:hidden;
    z-index:99998;
    box-shadow:0 20px 60px rgba(0,0,0,0.45);
}

.faq-header{
    background:linear-gradient(
        90deg,
        #00d4ff,
        #8b5cf6
    );
    padding:18px 20px;
    color:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-weight:700;
    cursor:pointer;
}

.faq-header-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.faq-body{
    padding:18px;
    display:none;
    flex-direction:column;
    gap:12px;
}

.faq-widget.active .faq-body{
    display:flex;
}

.faq-item{
    background:#111827;
    border-radius:16px;
    padding:14px;
    transition:0.3s;
}

.faq-item:hover{
    background:#1e293b;
}

.faq-question{
    color:white;
    font-weight:700;
    margin-bottom:8px;
    font-size:14px;
}

.faq-answer{
    color:#94a3b8;
    line-height:1.7;
    font-size:13px;
}

.faq-toggle-icon{
    transition:0.3s;
}

.faq-widget.active .faq-toggle-icon{
    transform:rotate(180deg);
}

/* MOBILE */

@media(max-width:700px){

    .faq-widget{
        width:calc(100% - 100px);
        right:85px;
        bottom:18px;
    }

    .whatsapp-float{
        width:58px;
        height:58px;
        font-size:28px;
        right:16px;
        bottom:16px;
    }
}