:root {
    --primary-color: #006400;
    --secondary-color: #90EE90;
    --text-color: #333;
    --white: #fff;
    --light-bg: #f9f9f9;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.logo span {
    color: var(--text-color);
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 100, 0, 0.7), rgba(0, 77, 0, 0.8)), url('../assets/images/hero.jpg');
    perspective: 1000px;
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M5 20h30" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><path d="M20 5v30" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') repeat,
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
    opacity: 0.8;
    animation: subtle-move 30s linear infinite;
}

@keyframes subtle-move {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.hero .container {
    position: relative;
    z-index: 2;
    animation: fade-in 1.5s ease-out;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateZ(0); }
    50% { transform: translateZ(30px); }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.typed-text {
    position: relative;
    color: var(--secondary-color);
}

.typed-text::after {
    content: '|';
    position: absolute;
    right: -4px;
    top: 0;
    color: var(--white);
    font-size: 3.5rem;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: #005000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.shine {
    position: relative;
    overflow: hidden;
}

.shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(120deg, #f8f9fa 0%, #e0ffe7 100%);
}

.services h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.services-grid, .services-page .container > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.service-card, .service-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,100,0,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    animation: fadeInUp 1s both;
}

.service-card:hover, .service-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,100,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
}

.service-card i, .service-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 60%, var(--secondary-color) 100%);
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(0,100,0,0.10);
    transition: background 0.3s, color 0.3s;
}

.service-card:hover i, .service-item:hover i {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--primary-color);
}

.service-card h3, .service-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    margin-top: 0.2rem;
}

.service-card p, .service-item p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.service-features {
    margin-top: 1.2rem;
    list-style: none;
    padding: 0;
}

.service-features li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
    font-size: 1rem;
    text-align: left;
}

.service-features li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Team Section */
.team-section {
    background: linear-gradient(120deg, #e0ffe7 0%, #f8f9fa 100%);
    padding: 6rem 0 5rem 0;
    position: relative;
    overflow: hidden;
}

.team-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.team-section .section-header p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.team-grid:only-child, .team-grid:has(.team-member:only-child) {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}

.team-member {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,100,0,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
    overflow: visible;
    transition: transform 0.35s cubic-bezier(.21,1.02,.73,1.01), box-shadow 0.3s;
    position: relative;
    padding-bottom: 2.5rem;
    animation: fadeInUp 1s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.team-member:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,100,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
}

.team-member .member-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 1.5rem;
    width: 100%;
    min-height: 220px;
    background: #fff;
    position: relative;
}

.team-member .member-image img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 7px solid #e0ffe7;
    box-shadow: 0 12px 32px rgba(0,100,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
    object-fit: cover;
    object-position: center;
    background: #fff;
    display: block;
    transition: box-shadow 0.4s, transform 0.4s;
    z-index: 2;
}

.team-member .member-image::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%) scaleY(1);
    width: 120px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0,100,0,0.10) 0%, rgba(0,0,0,0.01) 80%);
    opacity: 0.7;
    z-index: 1;
}

.team-member:hover .member-image img {
    box-shadow: 0 24px 64px rgba(0,100,0,0.28), 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-8px) scale(1.06) rotateX(8deg);
}

.team-member .accent-bar {
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    margin: 0 auto 1.2rem auto;
}

.team-member .member-info {
    text-align: center;
    padding: 0 2rem;
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.team-member .title {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.3rem 1.1rem;
    margin-bottom: 0.7rem;
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
}

.team-member .quote {
    font-style: italic;
    color: #666;
    font-size: 1.05rem;
    margin: 1.1rem 0 1.5rem 0;
    position: relative;
}

.team-member .quote:before {
    content: '“';
    color: var(--secondary-color);
    font-size: 2rem;
    position: absolute;
    left: -1.1rem;
    top: -0.7rem;
}

.team-member .quote:after {
    content: '”';
    color: var(--secondary-color);
    font-size: 2rem;
    position: absolute;
    right: -1.1rem;
    bottom: -0.7rem;
}

.team-member .contact-info {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 0.7rem;
}

.team-member .btn-contact {
    background: var(--primary-color);
    color: #fff;
    border-radius: 20px;
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,100,0,0.10);
    border: none;
    outline: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.2rem 0;
}

.team-member .btn-contact:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.04);
}

.team-member .location {
    color: #888;
    font-size: 0.98rem;
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
}

.social-link:hover {
    color: var(--white);
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: linear-gradient(120deg, #002a13 0%, #005000 100%);
    color: #eafbe6;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.08);
    margin-top: 4rem;
}

.footer-cta {
    background: linear-gradient(90deg, var(--primary-color) 60%, var(--secondary-color) 100%);
    color: #fff;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px rgba(0,100,0,0.10);
    margin-bottom: -2.5rem;
    position: relative;
    z-index: 2;
}

.footer-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: -1px;
}

.footer-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #eafbe6;
}

.footer-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 30px;
    padding: 1rem 2.2rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,100,0,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-cta .cta-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 3.5rem 2rem 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    margin-bottom: 0.5rem;
}

.footer-contact {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 1.05rem;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.footer-social {
    flex: 1 1 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}

.footer-social h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
    background: var(--primary-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.08);
}

.footer-newsletter {
    flex: 2 1 320px;
    background: rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 4px 24px rgba(0,100,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    backdrop-filter: blur(6px);
    min-width: 260px;
    max-width: 420px;
    margin: 0 auto;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.18);
    padding: 1.2rem 0 0.5rem 0;
    text-align: center;
    font-size: 0.98rem;
    border-top: 1.5px solid rgba(255,255,255,0.13);
    margin-top: 0.5rem;
    position: relative;
}

.footer-bottom .divider {
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    margin: 0 auto 1rem auto;
    opacity: 0.5;
}

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 1rem 1rem 1rem;
    }
    .footer-newsletter {
        max-width: 100%;
        min-width: 0;
        padding: 1.5rem 1rem 1rem 1rem;
    }
}
@media (max-width: 600px) {
    .footer-cta {
        border-radius: 0 0 18px 18px;
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    }
    .footer-main {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.5rem 0.5rem 0.5rem 0.5rem;
    }
    .footer-logo, .footer-contact, .footer-social, .footer-newsletter {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .footer-newsletter {
        padding: 1rem 0.5rem;
        border-radius: 12px;
    }
}

/* Responsive Design */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.menu-open {
    overflow: hidden;
}

/* Tablet styles */
@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .team-section {
        padding: 3rem 0 2rem 0;
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .team-member {
        padding-bottom: 2rem;
    }
    .team-member .member-image {
        margin-top: -40px;
    }
    .team-member .member-info {
        padding: 0 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        position: relative;
        z-index: 1000;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        padding: 6rem 2rem 2rem;
        text-align: left;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        right: 0;
    }

    .nav-links li a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.2rem;
        color: var(--text-color);
        border-bottom: 1px solid rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--primary-color);
        padding-left: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero {
        height: 70vh;
    }
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo img {
        margin-bottom: 1rem;
    }

    .footer-contact {
        padding: 1rem 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-contact p {
        margin: 0.8rem 0;
    }

    .footer-newsletter {
        padding: 1rem 0;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }

    .newsletter-form input {
        width: 100%;
        padding: 1rem;
    }

    .newsletter-form button {
        width: 100%;
        padding: 1rem;
    }

    .whatsapp-link {
        display: inline-block;
        margin-top: 0.5rem;
        padding: 0.8rem 1.5rem;
        background: rgba(255,255,255,0.1);
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .whatsapp-link:hover {
        background: #25D366;
        transform: translateY(-2px);
    }

    .footer-bottom {
        padding: 1rem 0;
        font-size: 0.9rem;
    }

    .services {
        padding: 2.5rem 0;
    }
    .services h2 {
        font-size: 1.5rem;
    }
    .services-grid, .services-page .container > div {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    .service-card, .service-item {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .service-card i, .service-item i {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    background: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.floating-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
@media (max-width: 600px) {
    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}
