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

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f1b;
    color: #fff;
    scroll-behavior: smooth;
}

/* HEADER */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.logo {
    font-weight: 700;
    font-size: 22px;
}

nav a {
    margin-right: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 400;
}

nav button {
    background: #7b2cff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('exceloxs.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15,15,27,0.9), rgba(50,0,80,0.8));
}

.hero-content {
    position: relative;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}

/* CONTENT */
.content-section {
    padding: 100px 20px;
}

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

.content-section p {
    margin-bottom: 20px;
    font-weight: 300;
}

/* CONTACT */
.contact-section {
    background: #15152a;
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-grid div {
    margin-bottom: 20px;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #0a0a14;
    font-size: 14px;
}

footer a {
    color: #7b2cff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media(max-width:768px){
    .hero h1 { font-size: 28px; }
    .header { padding: 10px 20px; }
}
/* HEADER SOCIAL */
.social-header {
    display: flex;
    gap: 15px;
}

.social-header a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.social-header a:hover {
    color: #7b2cff;
    transform: translateY(-3px);
}

/* FOOTER SOCIAL */
.footer-social {
    margin-bottom: 10px;
}

.footer-social a {
    margin: 0 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #7b2cff;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    z-index: 999;
    transition: 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* MOBILE BOTTOM BAR */
.mobile-bottom {
    display: none;
}

@media(max-width:768px){

    .mobile-bottom {
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #15152a;
        display: flex;
        justify-content: space-around;
        padding: 12px 0;
        z-index: 999;
    }

    .mobile-bottom a {
        color: white;
        font-size: 22px;
    }

    .floating-whatsapp {
        bottom: 80px;
    }
}