* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #FDFBF7;
    color: #3A3A3A;
    line-height: 1.6;
}

:root {
    --green: #5E8142;
    --gold: #C9A951;
    --rose: #B76E79;
    --dark: #2E2E2E;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
    padding: 12px 0;
}

.logo small {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: #777;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.2s;
    font-size: 0.9rem;
}

nav a:hover {
    color: var(--gold);
}

.btn-nav {
    background: var(--green);
    color: white !important;
    padding: 6px 18px;
    border-radius: 25px;
}

.btn-nav:hover {
    background: var(--gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--green);
    border-radius: 3px;
}

#mobile-menu-checkbox {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .header-inner {
        flex-wrap: wrap;
    }
    nav {
        order: 4;
        width: 100%;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        gap: 0;
    }
    #mobile-menu-checkbox:checked ~ nav ul {
        max-height: 400px;
        padding-bottom: 15px;
    }
    nav ul li {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }
}

.hero {
    background: linear-gradient(135deg, #F0ECE1 0%, #E6F0DA 100%);
    padding: 50px 0;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1 1 400px;
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero-text h1 span {
    color: var(--green);
}

.btn {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin: 5px;
    transition: 0.2s;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto 35px;
    border-radius: 2px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.about-text {
    flex: 1 1 500px;
}

.about-card {
    flex: 0 0 260px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.about-card i {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: 0.2s;
    border-top: 3px solid var(--gold);
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-card i {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.85rem;
    color: #666;
}

.blog-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 280px;
    text-decoration: none;
    color: var(--dark);
    transition: 0.2s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.04);
    display: block;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.blog-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.blog-card-body {
    padding: 15px;
}

.blog-card-body h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.blog-card-body p {
    font-size: 0.8rem;
    color: #666;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info p {
    margin: 12px 0;
}

.contact-info i {
    color: var(--green);
    width: 25px;
    margin-left: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    margin-bottom: 12px;
}

.contact-form button {
    background: var(--green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}

footer {
    background: #2E2E2E;
    color: #ccc;
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

.call-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.back-home {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin: 15px 0;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.5rem;
    }
    section {
        padding: 40px 0;
    }
}

html[lang="en"] {
    direction: ltr;
}