body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0b0f1a;
    color: #fff;
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    background: rgba(10,15,30,0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* BIG LOGO */
.logo {
    height: 110px;
    width: auto;
}

/* SMALL TEXT */
.brand h1 {
    font-size: 22px;
    font-weight: 500;
    color: #ccc;
}

/* NAV */
nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

nav a:hover {
    color: #00c6ff;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top, #1a2a6c, #0b0f1a);
}

.overlay h2 {
    font-size: 50px;
    font-weight: 700;
}

.overlay p {
    color: #aaa;
}

/* BUTTON */
.btn {
    margin-top: 25px;
    padding: 14px 30px;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0,198,255,0.6);
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.1);
}

/* PRODUCTS */
#products {
    padding: 70px 40px;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.4s;
}

.card h3 {
    padding: 15px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,198,255,0.4);
}

.card:hover img {
    transform: scale(1.1);
}

/* CONTACT */
#contact {
    padding: 60px;
    text-align: center;
    background: #0f172a;
}

/* MAP BUTTON */
.map-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255,126,95,0.6);
    transition: 0.3s;
}

.map-btn:hover {
    transform: scale(1.1);
}

/* MAP */
.map-box {
    margin-top: 30px;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(37,211,102,0.7);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    color: #aaa;
}