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

body {
    font-family: 'Inter', sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}

/* HEADER */
header {
    border-bottom: 1px solid #eee;
    background: #fff;
}

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

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

.logo span {
    color: #2563eb;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-mini {
    font-size: 13px;
    color: #555;
    display: flex;
    gap: 14px;
}

.contact-mini span {
    white-space: nowrap;
}

/* BUTTON */
.btn {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: .2s ease;
}

.btn:hover {
    background: #1e4fd6;
}

/* CONTAINERS */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 24px;
}

/* HERO */
.hero {
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    max-width: 720px;
    margin: 20px auto;
    font-size: 18px;
    color: #555;
}

/* DASHBOARD */
.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding-top: 0;
}

.card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: #fff;
}

.stat {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    border-top: 1px solid #eee;
    padding: 40px 24px;
    font-size: 14px;
    color: #666;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact {
    text-align: right;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .nav-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }
}

.request-form {
    max-width: 640px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
/* TOP CONTACT */
.top-contact {
    font-size: 13px;
    color: #555;
    display: flex;
    gap: 16px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 32px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0,0,0,.22);
    z-index: 999;
    transition: transform .2s ease, bottom .25s ease;
}

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

/* MOBILE FIX */
@media (max-width: 768px) {
    .top-contact {
        flex-direction: column;
        gap: 4px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 90px;
    }
}
