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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #f9f9f9;
}

.hero-title-img {
    max-width: 420px;
    width: 90%;
    margin-bottom: 16px;
    border-radius: 8px;
}

/* ── Header ── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 64px;
    background: #0a9e72;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.logo {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 28px;
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.2s;
}

nav a:hover { opacity: 1; text-decoration: underline; }

/* ── Hero ── */
.hero {
    margin-top: 64px;
    min-height: 60vh;
    background: linear-gradient(135deg, #0a9e72 0%, #06c98f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 5%;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 520px;
    margin: 0 auto 28px;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #0a9e72;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }

/* ── Services ── */
.services {
    padding: 64px 5%;
    text-align: center;
    background: #fff;
}

.services h2, .contact h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a9e72;
    margin-bottom: 36px;
}

.slideshow {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    background: #000;
}

.slides {
    position: relative;
    width: 100%;
    height: 560px;
}

.slides img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slides img.active { opacity: 1; }

.slideshow .prev, .slideshow .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    padding: 14px 18px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 4px;
    transition: background 0.2s;
    z-index: 10;
}

.slideshow .prev { left: 10px; }
.slideshow .next { right: 10px; }
.slideshow .prev:hover, .slideshow .next:hover { background: rgba(0,0,0,0.6); }

.dots {
    position: absolute;
    bottom: 12px;
    width: 100%;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 9px; height: 9px;
    margin: 0 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active { background: #fff; }


/* ── Contact ── */
.contact {
    padding: 64px 5%;
    text-align: center;
    background: #f0faf6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    text-align: left;
    transition: transform 0.2s;
}

.contact-card:hover { transform: translateY(-3px); }

.contact-card img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }

.contact-card .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-card a {
    color: #0a9e72;
    text-decoration: none;
    font-size: 0.9rem;
    word-break: break-word;
}

.contact-card a:hover { text-decoration: underline; }

/* ── Footer ── */
footer {
    background: #0a9e72;
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
}

/* ── Mobile ── */
@media (max-width: 480px) {
    nav a { margin-left: 16px; font-size: 0.85rem; }
    .logo { font-size: 1rem; }
}

/* ── Mobile ── */
@media (max-width: 600px) {
    header {
        padding: 0 4%;
        height: 56px;
    }

    .logo { font-size: 0.95rem; }

    nav a {
        margin-left: 12px;
        font-size: 0.8rem;
    }

    .hero { margin-top: 56px; padding: 40px 6%; min-height: 50vh; }

    .services, .contact { padding: 40px 4%; }

    .services h2, .contact h2 { font-size: 1.4rem; margin-bottom: 24px; }

    .slides { height: 260px; }

    .slideshow .prev, .slideshow .next {
        padding: 14px 18px;
        font-size: 1.2rem;
    }

    .contact-grid { grid-template-columns: 1fr; }
}
