* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f8fafc;
    color: #1f2933;
    line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
    background: #ffffff;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar nav a {
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    color: #374151;
}

.navbar nav a:hover {
    color: #16a34a;
}

/* ================= HERO ================= */
.hero {
    padding: 90px 10%;
    text-align: center;
    background: linear-gradient(135deg, #e0f2fe, #ecfeff);
}

.hero h2 {
    font-size: 2.5rem;
}

.hero-buttons {
    margin-top: 25px;
}

/* ================= BUTTONS ================= */
.btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin: 5px;
    display: inline-block;
}

.call {
    background: #16a34a;
    color: #fff;
}

.whatsapp {
    background: #22c55e;
    color: #fff;
}

/* ================= SECTIONS ================= */
.section {
    padding: 70px 10%;
    text-align: center;
}

.section.light {
    background: #f1f5f9;
}

h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #14532d;
}

/* ================= PRODUCTS ================= */
.products-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #fefce8, #ecfeff);
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.product-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 18px;
    font-size: 1.05rem;
    font-weight: 500;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    animation: float 4s ease-in-out infinite;
    transition: transform 0.4s;
}

.product-card:hover {
    transform: rotate(2deg) scale(1.05);
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* ================= RATINGS ================= */
.rating-buttons {
    margin-top: 25px;
}

.rating-buttons .btn {
    margin: 8px;
}

/* ================= MAP ================= */
.map {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    border: none;
}

/* ================= FOOTER ================= */
footer {
    background: #022c22;
    color: #e5e7eb;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
}
