html, body {
    min-height: 100%;
    height: auto;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0b0b0b;
    color: #fff;
    padding-top: 90px;
}

section,
footer {
    scroll-margin-top: 120px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section.section,
.products,
.models,
.join,
.benefits {
    padding: 90px 0;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0b0b0b;
    z-index: 9999;
    border-bottom: 1px solid #111;
}

.nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

nav a:hover {
    color: #fff;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ff2c55;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 110px 0 90px;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.badge {
    display: inline-block;
    border: 1px solid #ff2c55;
    color: #ff2c55;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero h1 span,
.hero span {
    color: #ff2c55;
}

.hero p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0 35px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn.primary {
    background: #ff2c55;
    color: #fff;
}

.btn.primary:hover {
    background: #e0264a;
}

.btn.secondary {
    border: 1px solid rgba(255,255,255,0.45);
    color: #fff;
    background: transparent;
}

.btn.secondary:hover {
    border-color: #ff2c55;
    color: #ff2c55;
}

.btn.big {
    padding: 14px 30px;
    font-size: 16px;
}

.divider {
    width: 180px;
    height: 1px;
    background: rgba(255,255,255,0.18);
    margin-bottom: 30px;
}

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

.stats h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 4px;
}

.stats p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

/* ===== SECTION HEADERS ===== */
.section-label {
    display: block;
    text-align: center;
    color: #ff2c55;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 14px;
}

.section-desc {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
    color: #9ca3af;
    line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products {
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    position: relative;
    border: 1px solid #222;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #ff2c55;
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    background: #eee;
}

.sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff2c55;
    color: #fff;
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 8px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 16px;
}

.product-info small {
    color: #888;
    display: block;
    margin-bottom: 6px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.rating {
    color: gold;
    font-size: 14px;
    margin-bottom: 10px;
}

.rating span {
    color: #aaa;
}

.price {
    margin-top: 8px;
}

.new {
    color: #ff2c55;
    font-weight: bold;
    font-size: 17px;
}

/* ===== DROP / MODEL CARDS ===== */
.models {
    background: #000;
    color: #fff;
}

.models h2 {
    text-align: center;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.model-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
}

.model-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.4s ease;
    display: block;
}

.model-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.overlay h3 {
    margin: 8px 0 8px;
    font-size: 22px;
}

.overlay p {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
}

.tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff2c55;
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ===== CTA BEFORE BENEFITS ===== */
.pre-benefits-cta {
    text-align: center;
    padding-top: 35px;
}

.mini-text {
    color: #9ca3af;
    margin-bottom: 20px;
}

/* ===== BENEFITS ===== */
.benefits {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.benefit-card {
    background: #0f0f0f;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid #222;
    transition: 0.3s;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.benefit-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin: 10px 0 14px;
}

.icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    margin-bottom: 16px;
}

.tags {
    margin-top: 10px;
}

.tags span {
    display: inline-block;
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 20px;
    margin: 5px 6px 0 0;
}

.red { border-color: #ff2c55; }
.red .tags span { background: rgba(255,44,85,0.2); color: #ff2c55; }
.red-bg { background: rgba(255,44,85,0.15); color: #ff2c55; }

.blue { border-color: #3b82f6; }
.blue .tags span { background: rgba(59,130,246,0.2); color: #3b82f6; }
.blue-bg { background: rgba(59,130,246,0.15); color: #3b82f6; }

.green { border-color: #10b981; }
.green .tags span { background: rgba(16,185,129,0.2); color: #10b981; }
.green-bg { background: rgba(16,185,129,0.15); color: #10b981; }

/* ===== ABOUT / JOIN ===== */
.join {
    background: #0b0b0b;
}

.join-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.02);
    border-radius: 22px;
    padding: 60px;
}

.join-left {
    max-width: 560px;
}

.join-label {
    color: #ff2c55;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.join-left h2 {
    font-size: 44px;
    margin-bottom: 18px;
}

.join-desc {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 30px;
}

.join-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline {
    border: 1px solid #444;
    color: #fff;
    padding: 14px 25px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: #ff2c55;
    color: #ff2c55;
}

.join-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid #2a2a2a;
    width: 290px;
    transition: 0.3s;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #ff2c55;
    background: rgba(255,255,255,0.06);
}

.contact-card h4 {
    color: #fff;
    margin: 0 0 4px;
    font-size: 18px;
}

.contact-card p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.5;
}

.icon.email {
    background: rgba(255,44,85,0.2);
    color: #ff2c55;
}

.icon.tiktok {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.icon.telegram {
    background: rgba(42,171,238,0.2);
    color: #2aabee;
}

/* ===== FOOTER ===== */
.footer {
    background: #0b0b0b;
    padding: 80px 20px 30px;
    color: #9ca3af;
    font-size: 14px;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-left p {
    line-height: 1.8;
    margin-top: 14px;
    max-width: 340px;
}

.footer-links h4,
.footer-contact h4 {
    color: #888;
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #ccc;
    text-decoration: none;
    transition: 0.2s;
}

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

.footer-contact p {
    margin-bottom: 12px;
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    margin-top: 45px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .models-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .join-container,
    .footer-container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .nav {
        padding: 15px;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0b0b0b;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 85vh;
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero p {
        max-width: 100%;
        font-size: 15px;
    }

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

    .hero-buttons a,
    .join-buttons a {
        width: 90%;
        text-align: center;
    }

    .divider {
        margin: 25px auto;
    }

    .stats {
        justify-content: center;
        gap: 25px;
    }

    h2,
    .join-left h2 {
        font-size: 30px;
        text-align: center;
    }

    .section-desc,
    .join-desc {
        text-align: center;
    }

    .product-grid,
    .models-grid,
    .benefits-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 240px;
    }

    .model-card img {
        height: 380px;
    }

    .join-container {
        padding: 30px 20px;
        text-align: center;
    }

    .join-right {
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 320px;
    }

    .footer-left p {
        margin: 14px auto 0;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
/* ===== IMAGE LOGO (NAVBAR) ===== */
.logo{
    display: flex;
    align-items: center;
    line-height: 1;
}

.nav-logo{
    display: block;
    height: 55px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}
.logo img{
    width: auto !important;
    height: 55px !important;   /* 🔥 MAS MALAKI NA TALAGA */
    max-width: 240px;
    display: block;
}
/* ===== APPLY PAGE HERO IMAGE (NIKE STYLE) ===== */
.hero-image{
    position:absolute;
    inset:0;
    background:url('files/coziest/hero.jpg') center/cover no-repeat;
    z-index:0;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,0.85) 30%,
        rgba(0,0,0,0.4) 60%,
        rgba(0,0,0,0.1) 100%
    );
    z-index:1;
}

/* ===== APPLY FORM DARK STYLE ===== */
.form-section{
    padding:80px 20px;
    display:flex;
    justify-content:center;
}

.form-box{
    width:100%;
    max-width:520px;
    background:#111;
    padding:28px;
    border-radius:18px;
    border:1px solid #222;
}

.form-box h2{
    margin-bottom:20px;
    text-align:center;
}

.form-box input,
.form-box select,
.form-box textarea{
    width:100%;
    padding:14px;
    margin-bottom:12px;
    border-radius:10px;
    border:none;
    background:#1a1a1a;
    color:#fff;
}

.form-box button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#ff2c55;
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

/* ===== LOADING SCREEN (YUNG GUSTO MO 🔥) ===== */
.loading{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.95);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.loading-card{
    background:#0c0c0c;
    padding:30px;
    border-radius:20px;
    width:90%;
    max-width:380px;
    text-align:center;
    box-shadow:0 0 30px rgba(0,0,0,0.8);
}

/* SPINNER */
.spinner{
    width:50px;
    height:50px;
    border:4px solid #333;
    border-top:4px solid #ff2c55;
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin:0 auto 20px;
}

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

/* TEXT */
.loading-text{
    color:#aaa;
    font-size:14px;
    margin-bottom:20px;
}

/* RED BOX */
.loading-box-info{
    border:1px dashed #ff2c55;
    border-radius:16px;
    padding:16px;
    margin-top:10px;
}

/* RED TEXT */
.highlight{
    color:#ff2c55;
    font-weight:600;
    margin-top:10px;
}
/* ===== SPLIT HERO (NIKE STYLE) ===== */
.split-hero{
    display:flex;
    min-height:100vh;
    padding:0;
}

.split-left{
    flex:1;
    position:relative;
}

.split-left img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.split-right{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0b0b0b;
    padding:60px;
}

.split-right .hero-content{
    max-width:500px;
}