/* Variables */
:root {
    --primary-green: #1b5e20;
    --light-green: #2e7d32;
    --gold: #f39c12;
    --light-gold: #f8b739;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --border-color: #ddd;
    --text-color: #333;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--primary-green);
    color: white;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--light-gold);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.logo-img {
    height: 55px;
    width: auto;
    border-radius: 8px;
    box-shadow: none;
    background-color: transparent;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--light-gold);
    margin: 0;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
    display: inline-block;
}

.nav-menu a:hover {
    color: var(--light-gold);
    border-bottom-color: var(--light-gold);
}

.nav-menu a.active {
    color: var(--light-gold);
    border-bottom-color: var(--light-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-bg-image.active {
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.2) 0%, rgba(46, 125, 50, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero > .hero-content > p:first-of-type {
    font-size: 28px;
    color: var(--light-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--light-gold);
    color: var(--dark-gray);
}

.btn-primary:hover {
    background-color: #f1a500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-green);
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: var(--light-green);
    color: white;
}

.btn-light {
    background-color: white;
    color: var(--primary-green);
}

.btn-light:hover {
    background-color: var(--light-gray);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* Services Preview */
.services-preview {
    padding: 80px 20px;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--light-gold);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.read-more {
    color: var(--light-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-green);
}

/* Impact Section */
.impact {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 80px 20px;
}

.impact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.impact-card {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid var(--light-gold);
}

.impact-card h4 {
    font-size: 32px;
    color: var(--light-gold);
    margin-bottom: 10px;
}

/* About Preview */
.about-preview {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 32px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--light-gold) 0%, #f39c12 100%);
    color: var(--dark-gray);
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* About Full */
.about-full {
    padding: 60px 20px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    color: var(--primary-green);
    font-size: 28px;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--light-gold);
}

.value-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-color);
}

/* Services Detail */
.services-detail {
    padding: 60px 20px;
}

.service-detail-card {
    background: var(--light-gray);
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 30px;
}

.service-header h2 {
    margin: 0;
    font-size: 24px;
}

.service-body {
    padding: 30px;
}

.service-body h4 {
    color: var(--primary-green);
    margin: 20px 0 15px 0;
}

.feature-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--light-gold);
    font-weight: bold;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 20px;
    background-color: white;
}

.why-choose h2 {
    text-align: center;
    color: var(--primary-green);
    font-size: 32px;
    margin-bottom: 50px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-bottom: 4px solid var(--light-gold);
}

.reason-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: var(--primary-green);
    margin-bottom: 30px;
    font-size: 28px;
}

.info-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--light-gold);
}

.info-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.info-card p {
    margin: 5px 0;
}

.info-card a {
    color: var(--light-gold);
    text-decoration: none;
}

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

.social-links {
    margin-top: 40px;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    background-color: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--light-gold);
    color: var(--dark-gray);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-green);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-gold);
    box-shadow: 0 0 5px rgba(243, 156, 18, 0.3);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.team-section h2 {
    text-align: center;
    color: var(--primary-green);
    font-size: 32px;
    margin-bottom: 50px;
}

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

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-member-info {
    padding: 25px 20px;
}

.team-member-info h3 {
    color: var(--primary-green);
    margin-bottom: 5px;
    font-size: 22px;
}

.team-member-info p {
    color: var(--light-gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member-info .description {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--primary-green);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--light-gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--light-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo-img {
        height: 45px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--primary-green);
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        border-bottom: 3px solid var(--light-gold);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        font-size: 14px;
        border: none;
        padding: 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--light-gold);
        border-bottom: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero > .hero-content > p:first-of-type {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid,
    .services-grid,
    .impact-grid,
    .reasons-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .socials {
        flex-direction: column;
    }

    .social-link {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .services-preview h2,
    .impact h2,
    .cta h2 {
        font-size: 28px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
