/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    color: #222;
}

/* HEADER */
.header {
    background: #2d1f1f;
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

/* BUTTON */
.btn {
    background: white;
    color: #2d1f1f;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #ddd;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #2d1f1f, #6b4c4c);
    color: white;
    text-align: center;
    padding: 80px 20px;
    animation: fadeIn 1s ease;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
}

/* SECTION */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.section p {
    color: #666;
}

/* GRID */
.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.card {
    width: 220px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    animation: fadeUp 0.8s ease;
}

.card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* TEXT */
.card h3 {
    padding: 15px;
    font-size: 18px;
}

/* BADGE */
.badge {
    background: #2d1f1f;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    margin: 5px;
    display: inline-block;
}

/* DARK SECTION */
.dark {
    background: #2d1f1f;
    color: white;
}

/* RATING */
.rating {
    color: gold;
    margin-bottom: 10px;
}

/* FOOTER */
.footer {
    background: #2d1f1f;
    color: white;
    padding: 30px;
    text-align: center;
}

/* ANIMATION */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .card {
        width: 160px;
    }

    .hero h1 {
        font-size: 30px;
    }
}

