body {
    margin: 0;
    font-family: 'Segoe UI';
    background: #f1f5f9;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background: #0f172a;
    color: white;
}

.navbar ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.navbar a {
    color: white;
    text-decoration: none;
}

/* HERO */
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #0f172a, #1e293b);
    color: white;
    text-align: center;
}

.hero-box {
    max-width: 500px;
}

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

.hero span {
    color: #22c55e;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 20px;
    background: #22c55e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 10px;
}

/* SECTION */
.section {
    padding: 60px 20px;
    text-align: center;
}

/* SEARCH */
.search-box input {
    width: 300px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* CARD */
.card-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FORM */
.dark {
    background: #0f172a;
    color: white;
}

.form-card {
    max-width: 400px;
    margin: auto;
}

.form-card input,
.form-card textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    border: none;
}

.form-card button {
    background: #22c55e;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
}

/* CONTACT */
.contact p {
    margin: 10px 0;
}

.contact-buttons .btn {
    margin: 10px;
}

.call { background: #3b82f6; }
.whatsapp { background: #25d366; }
.map { background: #f59e0b; }

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}

/* FLOATING BUTTON */
.floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    padding: 15px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
}

/* MOBILE */
@media(max-width: 600px){
    .navbar {
        flex-direction: column;
    }
    .search-box input {
        width: 90%;
    }
}

body {
    margin: 0;
    font-family: Arial;
    background: #f8fafc;
}

/* NAV */
.navbar {
    background: #0f172a;
    color: white;
    padding: 15px;
    text-align: center;
}

/* HERO */
.hero {
    background: linear-gradient(#0f172a, #1e293b);
    color: white;
    text-align: center;
    padding: 40px 10px;
}

/* SECTION */
.section {
    padding: 20px;
    text-align: center;
}

/* MODELS */
.model-list {
    display: flex;
    overflow-x: auto;
    gap: 10px;
}

.model-list button {
    padding: 10px;
    border: none;
    background: #22c55e;
    color: white;
    border-radius: 20px;
}

/* SEARCH */
input {
    width: 90%;
    padding: 10px;
    margin: 10px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.card {
    background: white;
    padding: 10px;
    border-radius: 10px;
}

/* FORM */
.dark {
    background: #0f172a;
    color: white;
}

form input, textarea {
    width: 90%;
    margin: 10px;
    padding: 10px;
}

button {
    padding: 10px;
    background: #22c55e;
    color: white;
    border: none;
}

/* CONTACT */
.btns a {
    display: inline-block;
    margin: 5px;
    padding: 10px;
    background: #25d366;
    color: white;
    text-decoration: none;
}

/* FLOAT */
.float {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: green;
    padding: 15px;
    border-radius: 50%;
    color: white;
}
