/* GLOBAL */

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #ffffff;
    margin-top: 70px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #00c6ff;
}

.brand-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.section-padding {
    padding: 100px 0;
}

/* NAVBAR */

.premium-nav {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.premium-nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
}

/* GRADIENT TEXT */

.gradient-text {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTON */

.btn-gradient {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
}

/* HERO */

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(rgba(15,23,42,0.85), rgba(0,0,0,0.9)),
        url('/website/assets/images/hero/hero-desktop.webp') center/cover no-repeat;
}

@media (max-width: 768px) {
    .hero-section {
        background:
            linear-gradient(rgba(15,23,42,0.85), rgba(0,0,0,0.9)),
            url('/website/assets/images/hero/hero-mobile.webp') center/cover no-repeat;
    }
}

.hero-section h1 {
    font-weight: 700;
}

.hero-section p {
    color: #cbd5e1;
}

/* GLASS CARD */

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.glass-card img {
    transition: 0.4s ease;
}

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

/* SECTION TITLE */

.section-title {
    font-weight: 700;
    margin-bottom: 60px;
}

/* FOOTER */

.footer-dark {
    background: #000;
    padding: 30px 0;
    margin-top: 80px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 60px;
    height: 60px;

    background-color: #25D366;
    border-radius: 50%;

    display: block;
    text-align: center;

    line-height: 60px;

    font-size: 28px;
    color: #ffffff;
    text-decoration: none;

    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    padding: 0;
}

.whatsapp-float i {
    line-height: inherit;
}

/* INNER HERO */

.inner-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #111827, #000);
    text-align: center;
}
