/* =====================
   GLOBAL STYLES
   ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --accent-green: #7bc043;
    --light-green: #e8f4e0;
    --dark-text: #1a1a1a;
    --light-text: #ffffff;
    --gray-text: #666666;
    --border-color: #ddd;
    --shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

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

/* =====================
   NAVIGATION BAR
   ===================== */
.navbar {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    width: 100%;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 1rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-img {
    height: 65px;
    width: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.nav-links-left,
.nav-links-right {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    align-items: center;
}

.nav-links-left {
    justify-content: flex-start;
}

.nav-links-right {
    justify-content: flex-end;
}

.nav-links-left a,
.nav-links-right a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links-left a:hover,
.nav-links-right a:hover {
    color: var(--accent-green);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.3rem;
    z-index: 1001;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

/* Hamburger menu open state */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* =====================
   HERO SECTION
   ===================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3d0a 0%, #2d5016 50%, #4a7c2c 100%);
    color: white;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 61, 10, 0.6) 0%, rgba(45, 80, 22, 0.7) 50%, rgba(74, 124, 44, 0.6) 100%);
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(123, 192, 67, 0.4);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 192, 67, 0.6);
}

/* =====================
   GALLERY CAROUSEL
   ===================== */
.gallery-section {
    padding: 5rem 0;
    background-color: white;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.gallery-carousel {
    overflow: hidden;
    padding: 1rem 0;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 30s linear infinite;
    padding: 1rem 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex-shrink: 0;
    width: 300px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================
   ABOUT SECTION
   ===================== */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

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

.about-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 10px 30px rgba(45, 80, 22, 0.15));
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.about-text h3 {
    font-size: 1.3rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--light-green) 0%, white 100%);
    border-radius: 10px;
    border-left: 4px solid var(--accent-green);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-green);
    flex-shrink: 0;
}

.feature-item span {
    color: var(--primary-green);
    font-weight: 600;
}

/* =====================
   SERVICES SECTION
   ===================== */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-green) 0%, white 100%);
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* =====================
   REVIEWS CAROUSEL
   ===================== */
.reviews-section {
    padding: 5rem 0;
    background-color: white;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.reviews-carousel {
    overflow: hidden;
    padding: 2rem 0;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    animation: scrollReverse 40s linear infinite;
}

@keyframes scrollReverse {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    flex-shrink: 0;
    width: 350px;
    background: linear-gradient(135deg, var(--light-green) 0%, white 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-green);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.review-name {
    font-weight: 600;
    color: var(--primary-green);
}

.review-role {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.review-text {
    color: var(--dark-text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-rating {
    color: #ffc107;
}

/* =====================
   MISSION & VISION
   ===================== */
.mission-vision {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mission-card p {
    line-height: 1.8;
    opacity: 0.9;
}

/* =====================
   CORE VALUES CAROUSEL
   ===================== */
.values-section {
    padding: 5rem 0;
    background-color: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.values-carousel {
    overflow: hidden;
    padding: 2rem 0;
}

.values-track {
    display: flex;
    gap: 2rem;
    animation: scrollReverse 35s linear infinite;
}

.values-track:hover {
    animation-play-state: paused;
}

.value-card {
    flex-shrink: 0;
    width: 300px;
    background: linear-gradient(135deg, var(--light-green) 0%, white 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =====================
   FAQ SECTION
   ===================== */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-green) 0%, white 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--accent-green) 100%);
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem;
    color: var(--gray-text);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   QUALITY SECTION
   ===================== */
.quality-section {
    padding: 5rem 0;
    background-color: white;
}

.quality-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

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

.quality-card {
    background: linear-gradient(135deg, var(--light-green) 0%, white 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.quality-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.quality-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.quality-card p {
    color: var(--gray-text);
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-green);
    margin-top: 0.2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
}

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

.contact-item a:hover {
    color: var(--accent-green);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--accent-green);
    transform: translateY(-5px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    background: var(--accent-green);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 192, 67, 0.4);
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--primary-green);
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid var(--accent-green);
}

.footer p {
    margin: 0.5rem 0;
}

/* =====================
   WHATSAPP BUTTON
   ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 998;
    width: 100%;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: slideDownMenu 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-links li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.mobile-menu.active .mobile-nav-links li {
    animation: slideInNavItem 0.5s ease forwards;
}

.mobile-nav-links li:nth-child(1) {
    animation-delay: 0.05s;
}
.mobile-nav-links li:nth-child(2) {
    animation-delay: 0.1s;
}
.mobile-nav-links li:nth-child(3) {
    animation-delay: 0.15s;
}
.mobile-nav-links li:nth-child(4) {
    animation-delay: 0.2s;
}
.mobile-nav-links li:nth-child(5) {
    animation-delay: 0.25s;
}
.mobile-nav-links li:nth-child(6) {
    animation-delay: 0.3s;
}

@keyframes slideInNavItem {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-green);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.mobile-nav-links a:hover::before {
    transform: scaleY(1);
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

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

    .navbar {
        overflow: visible;
    }

    .navbar-container {
        position: relative;
    }

    .navbar-logo {
        order: 2;
    }

    .nav-links-left,
    .nav-links-right {
        display: none;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        width: 250px;
        height: 200px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        width: 280px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

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

    .faq-container {
        max-width: 100%;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .gallery-item {
        width: 200px;
        height: 150px;
    }

    .review-card {
        width: 240px;
    }

    .value-card {
        width: 240px;
    }

    .faq-question {
        padding: 1rem;
    }

    .service-card h3,
    .quality-card h3 {
        font-size: 1.1rem;
    }
}