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

:root {
    --primary: #2c5530;
    --secondary: #8ab446;
    --accent: #ffa726;
    --dark: #1a1a1a;
    --light: #f5f5f0;
    --text: #333;
}

body {
    font-family: 'Libre Baskerville', serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--light);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 10px;
    text-align: center;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img { height: 50px; display: block; }

.nav { display: flex; gap: 25px; }
.nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}
.nav a:hover { color: var(--accent); }

.btn {
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: #ff9800; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: white; }

/* Fixed Sidebar */
.fixed-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 15px 10px;
    border-radius: 15px 0 0 15px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 75px;
}

.sidebar-item a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 8px;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.sidebar-phone-btn { background: var(--accent); color: white !important; }
.sidebar-phone-btn:hover { background: #ff9800; transform: scale(1.05); }
.sidebar-line-btn { background: #06c755; color: white !important; }
.sidebar-line-btn:hover { background: #05b34b; transform: scale(1.05); }
.sidebar-email-btn { background: #4285f4; color: white !important; }
.sidebar-email-btn:hover { background: #3367d6; transform: scale(1.05); }
.sidebar-map-btn { background: #ea4335; color: white !important; }
.sidebar-map-btn:hover { background: #d33426; transform: scale(1.05); }
.sidebar-form-btn { background: var(--primary); color: white !important; }
.sidebar-form-btn:hover { background: var(--secondary); transform: scale(1.05); }

.sidebar-icon { font-size: 28px; line-height: 1; }
.sidebar-text-small { font-size: 10px; font-weight: 700; white-space: nowrap; text-align: center; }

/* Hero */
.hero {
    margin-top: 110px;
    padding: 80px 5% 60px;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.95), rgba(138, 180, 70, 0.95));
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero p { font-size: 18px; margin-bottom: 30px; opacity: 0.95; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; }
.hero .btn { padding: 14px 35px; font-size: 15px; }

section { padding: 70px 5%; }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.section-title p { font-size: 15px; color: var(--text); opacity: 0.8; }

.features { background: white; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 35px;
    background: var(--light);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.feature-icon { font-size: 56px; margin-bottom: 20px; }
.feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}
.feature-card p { font-size: 14px; line-height: 1.7; }

.services { background: var(--light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.service-card:hover { transform: scale(1.03); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.service-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}
.service-content { padding: 25px; }
.service-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}
.service-content p { font-size: 14px; line-height: 1.7; }

.news { background: white; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
.news-card {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: var(--accent);
}
.news-date { background: var(--accent); color: white; padding: 10px 18px; font-weight: 600; font-size: 13px; }
.news-content { padding: 25px; }
.news-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 600;
}
.news-content p { font-size: 13px; line-height: 1.6; }

.reasons {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}
.reasons .section-title h2, .reasons .section-title p { color: white; }
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.reason-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}
.reason-card:hover { background: rgba(255,255,255,0.25); transform: translateY(-8px); }
.reason-number {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
}
.reason-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}
.reason-card p { font-size: 14px; line-height: 1.7; opacity: 0.95; }

.cta {
    padding: 60px 5%;
    background: var(--accent);
    text-align: center;
}
.cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
}
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.cta .btn { background: white; color: var(--accent); font-size: 15px; padding: 14px 35px; }
.cta .btn:hover { background: var(--primary); color: white; }

.footer { background: var(--dark); color: white; padding: 50px 5% 25px; }
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.footer-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent);
    font-weight: 600;
}
.footer-section p, .footer-section a {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}
.footer-section a:hover { color: var(--accent); }
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.6); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

@media (max-width: 968px) {
    .nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 36px; }
    .section-title h2 { font-size: 32px; }
    .features-grid, .services-grid, .news-grid, .reasons-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .fixed-sidebar { display: none; }
}
