@charset "UTF-8";

:root {
    --primary: #047513;
    --secondary: #f6f2ed;
    --dark: #1f1f1f;
    --text: #5b5b5b;
    --white: #b8926a;
    --shadow: 0 15px 40px rgba(0,0,0,0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

a {
    text-decoration: none;
}

.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    color: var(--dark);
}

.logo-icon {
    width: 56px;
    height: 56px;
}

.logo-text {
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    margin-left: 20px;
    transition: .3s;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-main {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-main:hover {
    background: #28b33b;
    transform: translateY(-2px);
    color: #fff;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(to right, rgba(255,255,255,0.96), rgba(255,255,255,0.72)),
        url('../img/banner-hero.avif') center/cover;
    padding-top: 100px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 580px;
    margin-bottom: 36px;
}

.hero-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.section-title p {
    max-width: 700px;
    margin: auto;
}

.about-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card {
    background: white;
    border-radius: 28px;
    padding: 40px 30px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.05);
    transition: .4s;
    height: 100%;
    border: 1px solid #f2f2f2;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-card h4 {
    margin-bottom: 16px;
}

.stats {
    background: var(--secondary);
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--primary);
}

.gallery img {
    width: 100%;
    border-radius: 24px;
    height: 320px;
    object-fit: cover;
    transition: .4s;
}

.gallery img:hover {
    transform: scale(1.02);
}

.testimonial {
    background: white;
    padding: 35px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial .stars {
    color: #ffc107;
    margin-bottom: 16px;
}

.contact-box {
    background: linear-gradient(135deg, #6ab86e, #8ed68e);
    padding: 60px;
    border-radius: 35px;
    color: white;
}

.contact-box h2,
.contact-box p {
    color: white;
}

footer {
    background: #151515;
    color: rgba(255,255,255,0.7);
    padding: 40px 0;
}

footer a {
    color: white;
}

@media(max-width: 991px) {
    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .contact-box {
        padding: 40px 30px;
    }
}