:root {
    --primary: #2d5016;
    --primary-light: #4a7c2c;
    --accent: #7fb539;
    --dark: #1a1a1a;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --earth: #8b6f47;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    color: var(--accent);
    font-size: 1.8rem;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 8px;
    padding: 8px 12px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--light-gray);
}

/* Hero */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fafafa 0%, #f0f4ef 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(127, 181, 57, 0.05));
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: translateY(-10px);
}

.btn-primary-custom {
    background: var(--primary);
    color: white;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-custom:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: var(--dark);
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--dark);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem;
}

.btn-outline-custom:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-2px);
}

/* Section */
.section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* About */
.about-section {
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-images-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    height: 600px;
}

.about-img-main {
    grid-column: 1 / 3;
    grid-row: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-bottom-left {
    grid-column: 1;
    grid-row: 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 240px;
}

.about-img-bottom-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-bottom-right {
    grid-column: 2;
    grid-row: 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 240px;
}

.about-img-bottom-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-images-grid:hover .about-img-main img,
.about-images-grid:hover .about-img-bottom-left img,
.about-images-grid:hover .about-img-bottom-right img {
    transform: scale(1.08);
}

.about-stats-card {
    position: absolute;
    bottom: 100px;
    left: -40px;
    background: #f4e976;
    padding: 2.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stats-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
}

.about-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content > p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-gray), #e8f5e0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--accent);
    transform: scale(1.05);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: white;
}

.feature-text h5 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #e5e7eb;
}

.stat-box {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h4 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

/* Vision Mission */
.vm-section {
    background: linear-gradient(135deg, #f8faf7 0%, var(--light-gray) 100%);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.vm-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height 0.4s ease;
}

.vm-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.vm-card:hover::before {
    height: 100%;
}

.vm-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-gray), #e8f5e0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: all 0.3s ease;
}

.vm-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.vm-card .icon i {
    font-size: 2rem;
    color: var(--primary);
}

.vm-card h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

.vm-card p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* Products */
.products-section {
    background: var(--white);
}

.product-switch {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.switch-container {
    background: var(--light-gray);
    padding: 6px;
    border-radius: 12px;
    display: inline-flex;
    gap: 6px;
}

.switch-btn {
    padding: 12px 32px;
    border: none;
    background: transparent;
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.switch-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.switch-btn:hover:not(.active) {
    color: var(--dark);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-12px);
}

.product-image {
    height: 300px;
    overflow: hidden;
    background: var(--light-gray);
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.12);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-content {
    padding: 2rem;
}

.product-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-content h5 {
    color: var(--primary);
}

.product-content p {
    font-size: 0.98rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Partners */
.partners-section {
    background: var(--light-gray);
    overflow: hidden;
}

.partners-marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.partners-marquee {
    overflow: hidden;
    white-space: nowrap;
}

.partners-track {
    display: inline-flex;
    gap: 3rem;
    animation: scrollLeft 40s linear infinite;
}

.partners-track-reverse {
    animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

.partner-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, var(--white) 0%, #f8faf7 100%);
}

.partner-item i {
    font-size: 1.5rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.partner-item:hover i {
    color: var(--primary);
    transform: rotate(10deg) scale(1.1);
}

.partner-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s ease;
}

.partner-item:hover span {
    color: var(--primary);
}

/* Activities */
.activities-section {
    background: var(--white);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.activity-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.activity-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-12px);
}

.activity-image {
    height: 240px;
    overflow: hidden;
    background: var(--light-gray);
    position: relative;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.12);
}

.activity-content {
    padding: 2rem;
}

.activity-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.activity-card:hover .activity-content h5 {
    color: var(--primary);
}

.activity-content p {
    font-size: 0.98rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Team */
.team-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8faf7 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-12px);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--light-gray);
    position: relative;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.team-content {
    width: 100%;
}

        .team-content .position {
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 0.3rem;
        }

        .team-content h5 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0;
        }

        .team-card:hover .team-content .position {
            color: var(--primary);
        }

.team-content p {
    font-size: 0.92rem;
    color: var(--gray);
    margin: 0;
}

/* Gallery */
.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer h5 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links i {
    color: var(--accent);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.page-header {
    background: linear-gradient(135deg, #fafafa 0%, #f0f4ef 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(127, 181, 57, 0.05));
    border-radius: 50%;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.breadcrumb-custom a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: var(--primary);
}

.breadcrumb-custom span {
    color: var(--primary);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
    color: white;
}

.info-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info-text p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

.info-text a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--primary);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--dark);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(127, 181, 57, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.map-section {
    background: var(--light-gray);
    padding: 0;
    margin-bottom: 5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-track {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images-grid {
        height: 500px;
    }

    .about-stats-card {
        left: 20px;
        bottom: 80px;
        padding: 2rem 2.5rem;
    }

    .stats-number {
        font-size: 3rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.3rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    /* PERBAIKAN HERO SECTION UNTUK MOBILE */
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    /* Ubah urutan untuk mobile - Gambar di atas */
    .hero-image {
        order: -1;
        margin-bottom: 2.5rem;
    }

    .hero-content {
        order: 1;
    }

    /* Tambahkan flex direction untuk mobile */
    .hero-section .row.align-items-center {
        display: flex;
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-image img {
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .btn-outline-custom {
        padding: 12px 28px;
        font-size: 0.95rem;
        margin-left: 0;
        margin-bottom: 30px;
    }

    /* Other responsive styles */
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 2rem;
    }

    .map-container {
        height: 350px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .product-grid,
    .activity-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partners-track {
        gap: 1.5rem;
    }

    .partner-item {
        padding: 1.2rem 2rem;
    }

    .partner-item i {
        font-size: 1.3rem;
    }

    .partner-item span {
        font-size: 0.9rem;
    }

    .about-images-grid {
        height: 450px;
    }

    .about-img-bottom-left,
    .about-img-bottom-right {
        height: 180px;
    }

    .about-stats-card {
        left: 10px;
        bottom: 60px;
        padding: 1.5rem 2rem;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .stats-label {
        font-size: 0.95rem;
    }

    .feature-item {
        gap: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .switch-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}