/* ==================== RESET CSS ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== CSS CHO MÁY TÍNH (DESKTOP) ==================== */

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(90deg, #E6FFD7 0%, #7BB562 50%, #36802D 100%);
    height: 95px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2C5F2D;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 19px;
    padding: 4px 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.logo:hover {
    transform: scale(1.05);
    background: rgba(107, 162, 75, 0.08);
}

.logo-img {
    height: 84px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0));
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(107, 162, 75, 0.3));
}

.nav {
    display: flex;
    gap: 20px;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav a {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 12px;
    white-space: nowrap;
    border-radius: 8px;
}

.nav a.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 24px);
    height: 2px;
    background: white;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a::before {
    content: '';
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: -8px;
    right: -8px;
    background: transparent;
    border-radius: 8px;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.nav a:hover {
    background: transparent;
    transform: translateY(-2px);
}

.nav a:hover::before {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
                0 0 40px rgba(255, 255, 255, 0.15),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav a.active {
    background: transparent;
}

.nav a.active::before {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.25),
                0 0 30px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.1),
                0 4px 12px rgba(0, 0, 0, 0.15);
    animation: glow-pulse 3s ease-in-out infinite;
}

.nav a.active::after {
    transform: translateX(-50%) scaleX(1);
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, white 50%, transparent 100%);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.25),
                    0 0 30px rgba(255, 255, 255, 0.1),
                    inset 0 0 15px rgba(255, 255, 255, 0.1),
                    0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
                    0 0 40px rgba(255, 255, 255, 0.15),
                    inset 0 0 20px rgba(255, 255, 255, 0.12),
                    0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #e8f5e9 0%, #f5f5f5 100%);
    padding: 80px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 972px;
    height: 972px;
    background-image: url('../images/leaf-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56px;
}

.hero .subtitle {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.hero .title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-top: 0;
    margin-bottom: 48px;
    line-height: 100%;
    text-align: center;
    text-shadow: 0 0 20px rgba(107, 162, 75, 0.4),
                 0 0 40px rgba(107, 162, 75, 0.2),
                 0 0 60px rgba(107, 162, 75, 0.1);
    animation: heroTitleGlow 3s ease-in-out infinite;
}

@keyframes heroTitleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(107, 162, 75, 0.4),
                     0 0 40px rgba(107, 162, 75, 0.2),
                     0 0 60px rgba(107, 162, 75, 0.1);
    }
    50% {
        text-shadow: 0 0 30px rgba(107, 162, 75, 0.6),
                     0 0 50px rgba(107, 162, 75, 0.3),
                     0 0 80px rgba(107, 162, 75, 0.15);
    }
}

.hero .description {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 44px;
    font-weight: 400;
    text-align: center;
}

.btn-partner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 183px;
    height: 45px;
    background: #A7D492;
    color: #0F3016;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    transition: background 0.2s ease, transform 0.05s ease;
    border: none;
    margin: 0 auto;
}

.btn-partner:hover {
    background: #97C882;
}

.btn-partner:active {
    transform: translateY(1px);
}

.btn-partner:focus {
    outline: 2px solid rgba(15,48,22,0.2);
    outline-offset: 2px;
}

/* Banner Section */
.banner-section {
    padding: 50px 0;
}

.banner-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-section .container {
    max-width: 1058px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 24px;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 16px;
}

.btn-about {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 32px;
    border: 2px solid #000000;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: #000000;
    color: #ffffff;
}

.about-image {
    flex: 1;
    background: #D0D0D0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image::before {
    content: '';
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.about-divider {
    border: none;
    border-top: 1px solid #E0E0E0;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #F5F5F5;
}

.services-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 680px;
    margin: 0 auto;
}

.service-card {
    background: #FFFFFF;
    border: 3px solid #6BA24B;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-number-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
}

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

.service-features li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 12px;
    padding-left: 36px;
    position: relative;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    font-weight: 700;
    color: #4CAF50;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.why-choose-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.why-choose-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-section .container {
    max-width: 1058px;
}

.why-choose-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 auto;
}

.why-choose-card {
    background: #F5F5F5;
    border: 3px solid #6BA24B;
    border-radius: 24px;
    padding: 32px 40px;
}

.why-choose-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.why-choose-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 16px;
}

.why-choose-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-features li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.why-choose-features li:last-child {
    margin-bottom: 0;
}

.why-choose-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.why-choose-features li strong {
    font-weight: 600;
    color: #000000;
}

/* Contact Forms Section */
.contact-forms-section {
    padding: 80px 0;
    background: #F5F5F5;
}

.contact-forms-section .container {
    max-width: 1058px;
}

.contact-forms-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 16px;
}

.contact-forms-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    text-align: center;
    margin-bottom: 50px;
}

.contact-forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-form-card {
    border-radius: 16px;
    padding: 40px;
}

.contact-form-card.partnership {
    background: linear-gradient(180deg, #408734 0%, #74A957 100%);
}

.contact-form-card.consultation {
    background: #E8E6D5;
}

.form-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.contact-form-card.partnership .form-card-title {
    color: #FFFFFF;
}

.contact-form-card.consultation .form-card-title {
    color: #000000;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form-card.partnership input,
.contact-form-card.partnership select,
.contact-form-card.partnership textarea {
    color: #FFFFFF;
    border-bottom-color: rgba(255,255,255,0.4);
}

.contact-form-card.partnership input::placeholder,
.contact-form-card.partnership select,
.contact-form-card.partnership textarea::placeholder {
    color: rgba(255,255,255,0.8);
}

.contact-form-card.consultation input,
.contact-form-card.consultation select,
.contact-form-card.consultation textarea {
    color: #000000;
    border-bottom-color: rgba(0,0,0,0.2);
}

.contact-form-card.consultation input::placeholder,
.contact-form-card.consultation select,
.contact-form-card.consultation textarea::placeholder {
    color: rgba(0,0,0,0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #000000;
}

.contact-form-card.partnership input:focus,
.contact-form-card.partnership select:focus,
.contact-form-card.partnership textarea:focus {
    border-bottom-color: #FFFFFF;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
}

.contact-form-card.consultation select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-start;
}

.contact-form-card.partnership .btn-submit {
    background: #FFFFFF;
    color: #5F9547;
}

.contact-form-card.partnership .btn-submit:hover {
    background: #F0F0F0;
}

.contact-form-card.consultation .btn-submit {
    background: #2C5F2D;
    color: #FFFFFF;
}

.contact-form-card.consultation .btn-submit:hover {
    background: #1F4520;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.news-section .container {
    max-width: 1058px;
}

.news-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 24px;
    background: #F5F3E8;
}

.news-category {
    display: inline-block;
    padding: 6px 16px;
    background: #7CB342;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.news-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

/* Our Story Hero Section */
.our-story-hero {
    background: linear-gradient(180deg, #77AB59 0%, #36802D 100%);
    padding: 130px 0 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.our-story-hero .container {
    max-width: 1600px;
}

.our-story-hero-content {
    padding: 40px 20px 0;
    max-width: 1058px;
    margin: 0 auto;
}

.our-story-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 24px;
}

.our-story-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
    max-width: 800px;
    margin: 0 auto 24px;
}

.btn-partner-white {
    display: inline-block;
    padding: 14px 50px;
    background: #FFFFFF;
    color: #4A8032;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-partner-white:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
}

.feature-box {
    width: 100%;
    background: #D0D0D0;
    border-radius: 48px;
    border: 10px solid #2C2C2C !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    transition: none !important;
    pointer-events: none !important;
    height: 550px;
    max-height: 550px;
}

.feature-box:hover {
    transform: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
}

.feature-box img {
    width: 100%;
    height: 550px;
    max-height: 550px;
    object-fit: cover;
    object-position: center;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: none !important;
}

.feature-box *,
.feature-box *:hover {
    transition: none !important;
    transform: none !important;
}

.feature-frame:hover .feature-box,
.feature-frame:hover .feature-box img {
    transition: none !important;
    transform: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
}

.feature-frame.scroll-animation .feature-box,
.feature-frame.animate-in .feature-box {
    opacity: 1 !important;
    transform: none !important;
}

.feature-box.scroll-animation,
.feature-box.animate-in {
    opacity: 1 !important;
    transform: none !important;
}

.our-story-hero-image {
    width: 100%;
    max-width: 1400px;
    margin: -150px auto 0;
    position: relative;
    transform: translateY(50%);
    background: #D0D0D0;
    border-radius: 32px;
    border: 6px solid #2C2C2C;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    height: 500px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.our-story-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
    position: relative;
    z-index: 2;
}

/* Story Content Section */
.story-content {
    padding: 350px 0 80px;
    background: #FFFFFF;
    position: relative;
    z-index: 0;
}

.story-content .container {
    max-width: 800px;
}

.story-content-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.3;
}

.story-text {
    font-family: 'Inter', sans-serif;
    color: #333333;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.story-text p.quote {
    font-size: 16px;
    font-style: italic;
    color: #555555;
    padding-left: 30px;
    border-left: 3px solid #6BA24B;
    margin: 20px 0;
}

.story-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 30px 0 16px;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.story-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.story-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #6BA24B;
    font-size: 20px;
    font-weight: 700;
}

.story-list li strong {
    font-weight: 600;
    color: #000000;
}

.story-highlight {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 40px 0 20px;
    text-align: center;
}

.story-quote-italic {
    font-size: 18px;
    font-style: italic;
    color: #555555;
    text-align: center;
    padding: 30px 40px;
    background: #F8F8F8;
    border-radius: 12px;
    margin: 30px 0;
    line-height: 1.6;
}

.story-divider {
    border: none;
    border-top: 1px solid #DDDDDD;
    margin: 60px 0 0;
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
    background: #FAFAFA;
}

.commitment-section .container {
    max-width: 800px;
}

.commitment-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.3;
}

.commitment-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-values {
    margin-bottom: 60px;
}

.commitment-value {
    margin-bottom: 30px;
}

.value-number {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.value-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

.commitment-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.commitment-image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #6BA24B;
    background: #D0D0D0;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-image-item::before {
    content: '';
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    z-index: 1;
}

.commitment-image-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.image-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CCCCCC;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #000000;
}

/* Journey CTA Section */
.journey-cta {
    padding: 50px 0 40px;
    background: #FFFFFF;
}

.journey-cta .container {
    max-width: 800px;
}

.journey-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.journey-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333333;
    text-align: center;
    margin-bottom: 12px;
}

.journey-quote {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: italic;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
}

.journey-divider {
    border: none;
    border-top: 1px solid #DDDDDD;
    margin: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 40px 0 80px;
    background: #FFFFFF;
}

.mission-vision-section .container {
    max-width: 800px;
}

.mission-box,
.vision-box {
    text-align: center;
    padding: 20px 0;
}

.mission-vision-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.mission-vision-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 0;
}

.mission-vision-divider {
    border: none;
    border-top: 1px solid #DDDDDD;
    margin: 40px 0;
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(180deg, #F0F5E9 0%, #E8F5E9 100%);
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('../images/leaf-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 16px;
}

.blog-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.btn-partner-green {
    display: inline-block;
    padding: 14px 50px;
    background: #A7D492;
    color: #0F3016;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-partner-green:hover {
    background: #96C480;
    transform: translateY(-2px);
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 80px 0;
    background: #F5F5F5;
}

.blog-grid-section .container {
    max-width: 1200px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.blog-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    padding: 6px 14px;
    background: #E8E8E8;
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-meta {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666666;
    margin: 0;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(180deg, #F0F5E9 0%, #E8F5E9 100%);
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('../images/leaf-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 16px;
}

.contact-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #EFEFEF;
}

.contact-form-section .container {
    max-width: 1000px;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-form-title-box {
    padding-top: 20px;
}

.contact-form-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.contact-form-box {
    background: transparent;
}

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

.form-group-single {
    position: relative;
}

.form-group-single input,
.form-group-single select,
.form-group-single textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #000000;
    outline: none;
    transition: border-color 0.3s;
}

.form-group-single input::placeholder,
.form-group-single textarea::placeholder {
    color: rgba(0,0,0,0.6);
}

.form-group-single input:focus,
.form-group-single select:focus,
.form-group-single textarea:focus {
    border-bottom-color: #000000;
}

.form-group-single select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
}

.form-group-single textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit-contact {
    padding: 14px 50px;
    background: #2C2C2C;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.btn-submit-contact:hover {
    background: #1A1A1A;
    transform: translateY(-2px);
}

/* Where To Find Us Section */
.where-to-find-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.where-to-find-section .container {
    max-width: 1200px;
}

.where-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.where-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.where-box {
    border: 2px solid #6BA24B;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.where-box-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

.where-box-heading {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.where-box-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #6BA24B;
}

.map-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* Footer CTA Section */
.footer-cta {
    background: linear-gradient(180deg, #408633 0%, #71A755 100%);
    padding: 60px 0;
    text-align: center;
    margin-top: 80px;
}

.footer-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-logo img {
    width: 60%;
    height: auto;
}

.footer-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.footer-cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.btn-footer-cta {
    display: inline-block;
    padding: 14px 50px;
    background: #FFFFFF;
    color: #4A8032;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-footer-cta:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #F8F8F8;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 16px;
}

.footer-info {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 12px;
}

.footer-info strong {
    color: #000000;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4A8032;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter input {
    padding: 12px 16px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.footer-newsletter input:focus {
    border-color: #4A8032;
}

.btn-subscribe {
    padding: 12px 24px;
    background: #2C2C2C;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-subscribe:hover {
    background: #1A1A1A;
}

.footer-bottom {
    border-top: 1px solid #DDDDDD;
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin: 0;
}

/* Partners Section */
.feature-frame {
    padding: 0 0 24px;
    background: transparent;
}

/* Feature box styles moved to main section above */

.partners {
    padding: 40px 0;
    background: transparent;
}

.partners-wrapper {
    width: 1058px;
    height: 86px;
    margin: 0 auto;
    background: linear-gradient(90deg, #87E64B 0%, #4B802A 100%);
    border-radius: 8px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
}

.partner-logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo img {
    max-height: 48px;
    width: auto;
}

/* ==================== CSS CHO ĐIỆN THOẠI (MOBILE) ==================== */

@media screen and (max-width: 768px) {
    .feature-frame {
        padding: 0 0 16px;
    }

    .feature-box {
        width: 100%;
        height: 250px;
        max-height: 250px;
        border-radius: 16px;
        border: 5px solid #2C2C2C !important;
        pointer-events: none !important;
    }
    
    .feature-box img {
        height: 250px;
        max-height: 250px;
    }

    /* Header Mobile */
    .header {
        height: auto;
        min-height: 75px;
        position: relative;
        z-index: 1000;
    }

    .header .container {
        padding-top: 12px;
        padding-bottom: 12px;
        position: relative;
    }

    .nav {
        display: none;
        position: fixed;
        top: 87px;
        left: 0;
        right: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border: 3px solid rgba(107, 162, 75, 0.5);
        border-top: none;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 0 20px rgba(107, 162, 75, 0.6),
                    0 0 40px rgba(107, 162, 75, 0.4),
                    0 0 60px rgba(107, 162, 75, 0.2),
                    0 4px 20px rgba(0,0,0,0.15),
                    inset 0 0 30px rgba(107, 162, 75, 0.1);
        z-index: 999;
        margin: 0;
        animation: slideDown 0.3s ease forwards, glowPulse 2s ease-in-out infinite;
    }
    
    @keyframes glowPulse {
        0%, 100% {
            box-shadow: 0 0 20px rgba(107, 162, 75, 0.6),
                        0 0 40px rgba(107, 162, 75, 0.4),
                        0 0 60px rgba(107, 162, 75, 0.2),
                        0 4px 20px rgba(0,0,0,0.15),
                        inset 0 0 30px rgba(107, 162, 75, 0.1);
        }
        50% {
            box-shadow: 0 0 30px rgba(107, 162, 75, 0.8),
                        0 0 50px rgba(107, 162, 75, 0.5),
                        0 0 80px rgba(107, 162, 75, 0.3),
                        0 4px 20px rgba(0,0,0,0.15),
                        inset 0 0 40px rgba(107, 162, 75, 0.15);
        }
    }

    .nav.active {
        display: flex;
    }

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

    .nav a {
        padding: 16px 20px;
        border-radius: 0;
        font-size: 16px;
        font-weight: 500;
        color: #2C2C2C;
        text-align: left;
        transition: all 0.3s ease;
        position: relative;
        margin: 0;
        border: none;
        display: block;
    }

    .nav a:hover {
        background: #F5F5F5;
        color: #6BA24B;
        transform: translateX(4px);
    }

    .nav a.active {
        background: linear-gradient(135deg, #6BA24B 0%, #4A8032 100%);
        color: #FFFFFF;
        font-weight: 600;
        box-shadow: 0 0 15px rgba(107, 162, 75, 0.6),
                    0 0 30px rgba(107, 162, 75, 0.4),
                    0 4px 12px rgba(107, 162, 75, 0.3),
                    inset 0 0 20px rgba(255, 255, 255, 0.2) !important;
        animation: activeGlow 2s ease-in-out infinite;
    }
    
    .nav a.disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
        color: #999999;
    }
    
    .nav a.disabled:hover {
        background: transparent;
        transform: none;
    }
    
    @keyframes activeGlow {
        0%, 100% {
            box-shadow: 0 0 15px rgba(107, 162, 75, 0.6),
                        0 0 30px rgba(107, 162, 75, 0.4),
                        0 4px 12px rgba(107, 162, 75, 0.3),
                        inset 0 0 20px rgba(255, 255, 255, 0.2);
        }
        50% {
            box-shadow: 0 0 20px rgba(107, 162, 75, 0.8),
                        0 0 40px rgba(107, 162, 75, 0.5),
                        0 6px 16px rgba(107, 162, 75, 0.4),
                        inset 0 0 30px rgba(255, 255, 255, 0.3);
        }
    }

    .nav a::before,
    .nav a::after {
        content: none !important;
        display: none !important;
    }

    .nav a:hover::before,
    .nav a:hover::after,
    .nav a.active::before,
    .nav a.active::after {
        content: none !important;
        display: none !important;
        box-shadow: none !important;
    }

    .mobile-menu-btn {
        display: flex;
        padding: 8px;
        z-index: 1001;
    }

    .logo {
        font-size: 16px;
        padding: 4px;
        color: #2C5F2D;
    }

    .logo-img {
        height: 63px;
    }

    /* Commitment Section Mobile */
    .commitment-section {
        padding: 60px 0;
    }

    .commitment-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .commitment-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .commitment-values {
        margin-bottom: 50px;
    }

    .commitment-value {
        margin-bottom: 24px;
    }

    .value-number {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .value-text {
        font-size: 14px;
    }

    .commitment-images {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .commitment-image-item {
        border-width: 3px;
        min-height: 220px;
    }

    .commitment-image-item::before {
        font-size: 14px;
    }

    .commitment-image-item img {
        height: 220px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* Where To Find Us Mobile */
    .where-to-find-section {
        padding: 60px 0;
    }

    .where-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .where-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .where-box {
        padding: 30px 24px;
        min-height: 120px;
    }

    .where-box-title {
        font-size: 15px;
    }

    .where-box-heading {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .where-box-text {
        font-size: 13px;
    }

    .social-icons {
        gap: 16px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .map-container iframe {
        height: 350px;
    }

    /* Contact Hero Mobile */
    .contact-hero {
        padding: 70px 0 90px;
    }

    .contact-hero-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .contact-hero-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    /* Contact Form Mobile */
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-title-box {
        padding-top: 0;
        text-align: center;
    }

    .contact-form-main-title {
        font-size: 28px;
    }

    .contact-form-single {
        gap: 20px;
    }

    .form-group-single input,
    .form-group-single select,
    .form-group-single textarea {
        font-size: 14px;
        padding: 12px 0;
    }

    .btn-submit-contact {
        width: 100%;
        padding: 12px 40px;
        font-size: 15px;
    }

    /* Blog Hero Mobile */
    .blog-hero {
        padding: 70px 0 90px;
    }

    .blog-hero-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .blog-hero-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .btn-partner-green {
        padding: 12px 40px;
        font-size: 15px;
    }

    /* Blog Grid Mobile */
    .blog-grid-section {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card-image {
        height: 220px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .blog-meta {
        font-size: 12px;
    }

    /* Mission & Vision Mobile */
    .mission-vision-section {
        padding: 40px 0 60px;
    }

    .mission-box,
    .vision-box {
        padding: 16px 0;
    }

    .mission-vision-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .mission-vision-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .mission-vision-divider {
        margin: 35px 0;
    }

    /* Journey CTA Mobile */
    .journey-cta {
        padding: 40px 0 30px;
    }

    .journey-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .journey-intro {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .journey-quote {
        font-size: 16px;
        margin-bottom: 35px;
    }

    /* Story Content Mobile */
    .story-content {
        padding: 280px 0 60px;
    }

    .story-content-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .story-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .story-text p.quote {
        font-size: 15px;
        padding-left: 20px;
    }

    .story-subtitle {
        font-size: 17px;
        margin: 25px 0 14px;
    }

    .story-list li {
        font-size: 15px;
        padding-left: 25px;
    }

    .story-highlight {
        font-size: 18px;
        margin: 30px 0 16px;
    }

    .story-quote-italic {
        font-size: 16px;
        padding: 24px 20px;
        margin: 24px 0;
    }

    .story-divider {
        margin: 50px 0 0;
    }

    /* Our Story Hero Mobile */
    .our-story-hero {
        padding: 100px 0 0;
    }

    .our-story-hero-content {
        padding: 30px 20px 0;
    }

    .our-story-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .our-story-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .btn-partner-white {
        padding: 12px 40px;
        font-size: 15px;
    }

    .our-story-hero-image {
        max-width: 100%;
        margin-top: -120px;
        transform: translateY(50%);
        height: 400px;
        min-height: 400px;
        border-width: 4px;
        border-radius: 24px;
    }

    .our-story-hero-image::before {
        font-size: 16px;
    }

    .our-story-hero-image img {
        border-radius: 20px;
    }

    /* Footer CTA Mobile */
    .footer-cta {
        padding: 50px 0;
        margin-top: 60px;
    }

    .footer-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .footer-cta-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .footer-cta-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
        padding: 0 20px;
    }

    .btn-footer-cta {
        padding: 12px 40px;
        font-size: 15px;
    }

    /* Footer Mobile */
    .footer {
        padding: 50px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-heading {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .footer-tagline,
    .footer-info,
    .footer-links a {
        font-size: 13px;
    }

    /* News Section Mobile */
    .news-section {
        padding: 50px 0;
    }

    .news-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 20px;
    }

    .news-card-title {
        font-size: 15px;
    }

    /* Contact Forms Section Mobile */
    .contact-forms-section {
        padding: 50px 0;
    }

    .contact-forms-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .contact-forms-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .contact-forms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-card {
        padding: 30px 24px;
    }

    .form-card-title {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
        padding: 10px 0;
    }

    .btn-submit {
        padding: 12px 32px;
        font-size: 15px;
        width: 100%;
    }

    /* Why Choose Section Mobile */
    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-title {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .why-choose-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .why-choose-grid {
        max-width: 100%;
        gap: 20px;
    }

    .why-choose-card {
        padding: 24px 20px;
    }

    .why-choose-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .why-choose-description {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .why-choose-features li {
        font-size: 13px;
        padding-left: 18px;
        margin-bottom: 8px;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 50px 0;
    }

    .services-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .services-grid {
        max-width: 100%;
        gap: 20px;
    }

    .service-card {
        padding: 30px 24px;
    }

    .service-number-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .service-features li {
        font-size: 13px;
        padding-left: 32px;
        margin-bottom: 10px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 50px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .about-text {
        max-width: 100%;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 15px;
    }

    .about-image {
        max-width: 100%;
        width: 100%;
        min-height: 280px;
    }

    .about-image::before {
        font-size: 14px;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 40px 0 0;
    }
    
    .hero::before {
        width: 800px;
        height: 800px;
    }

    .hero .container {
        padding-bottom: 40px;
    }

    .hero .title {
        font-size: 28px;
        margin-bottom: 32px;
        text-shadow: 0 0 15px rgba(107, 162, 75, 0.4),
                     0 0 30px rgba(107, 162, 75, 0.2),
                     0 0 45px rgba(107, 162, 75, 0.1);
    }

    .hero .subtitle {
        font-size: 12px;
        margin-bottom: 28px;
    }

    .hero .description {
        font-size: 14px;
        margin-bottom: 36px;
        padding: 0 10px;
    }

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

    /* Banner Section Mobile */
    .banner-section {
        padding: 30px 0;
    }

    .banner-card {
        border-radius: 15px;
    }

    /* Partners Section Mobile */
    .partners {
        padding: 30px 0;
    }

    .partners-wrapper {
        width: 100%;
        height: auto;
        padding: 12px 16px;
        flex-wrap: nowrap;
        gap: 24px;
        justify-content: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .partners-wrapper::-webkit-scrollbar {
        display: none;
    }

    .partner-logo {
        flex: 0 0 auto;
    }
    
    .partner-logo:nth-child(3),
    .partner-logo:nth-child(4) {
        display: none;
    }

    .partner-logo img {
        max-height: 40px;
        width: auto;
    }
}

@media screen and (max-width: 480px) {
    .hero .title {
        font-size: 24px;
    }

    .partner-logo img {
        max-height: 35px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animation {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animation.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ENHANCED HOVER EFFECTS ===== */

/* Service Cards Hover */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 162, 75, 0.03) 0%, rgba(107, 162, 75, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 162, 75, 0.2),
                0 0 0 1px rgba(107, 162, 75, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

/* Why Choose Cards Hover */
.why-choose-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 162, 75, 0.05) 0%, rgba(107, 162, 75, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.why-choose-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(107, 162, 75, 0.25),
                0 0 0 2px rgba(107, 162, 75, 0.2);
}

.why-choose-card:hover::before {
    opacity: 1;
}

.why-choose-card > * {
    position: relative;
    z-index: 1;
}

/* News Cards Hover */
.news-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.news-image {
    overflow: hidden;
    position: relative;
}

.news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(107, 162, 75, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover .news-image::after {
    opacity: 1;
}

.news-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

/* Contact Form Cards Hover */
.contact-form-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 4px #6BA24B,
                0 0 20px rgba(107, 162, 75, 0.6),
                0 0 40px rgba(107, 162, 75, 0.4),
                0 0 60px rgba(107, 162, 75, 0.2),
                0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Button Hover Enhancements */
.btn-partner,
.btn-about,
.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-partner::before,
.btn-about::before,
.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-partner:hover::before,
.btn-about:hover::before,
.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

/* Partner Logos Hover */
.partner-logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover {
    transform: scale(1.1) translateY(-5px);
}

.partner-logo img {
    transition: all 0.4s ease;
    filter: grayscale(0%);
}

.partner-logo:hover img {
    filter: grayscale(0%) drop-shadow(0 8px 20px rgba(107, 162, 75, 0.3));
}

/* About Image Hover */
.about-image {
    overflow: hidden;
}

.about-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section:hover .about-image img {
    transform: scale(1.05);
}

/* Form Input Focus Enhancements */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 162, 75, 0.15),
                0 0 0 3px rgba(107, 162, 75, 0.1);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Page Load Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.our-story-hero {
    animation: fadeInUp 0.8s ease-out;
}

/* Stagger Animation Delays */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }

.why-choose-card:nth-child(1) { transition-delay: 0s; }
.why-choose-card:nth-child(2) { transition-delay: 0.1s; }
.why-choose-card:nth-child(3) { transition-delay: 0.2s; }
.why-choose-card:nth-child(4) { transition-delay: 0.3s; }

.news-card:nth-child(1) { transition-delay: 0s; }
.news-card:nth-child(2) { transition-delay: 0.1s; }
.news-card:nth-child(3) { transition-delay: 0.2s; }

.commitment-value:nth-child(1) { transition-delay: 0s; }
.commitment-value:nth-child(2) { transition-delay: 0.1s; }
.commitment-value:nth-child(3) { transition-delay: 0.2s; }

.commitment-image-item:nth-child(1) { transition-delay: 0s; }
.commitment-image-item:nth-child(2) { transition-delay: 0.1s; }
.commitment-image-item:nth-child(3) { transition-delay: 0.2s; }

/* ===== OUR STORY PAGE HOVER EFFECTS ===== */

/* Our Story Hero Image Hover - disabled */
.our-story-hero-image {
    transition: none !important;
}

.our-story-hero-image:hover {
    transform: translateY(50%) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2) !important;
}

/* Button Partner White Hover */
.btn-partner-white {
    position: relative;
    overflow: hidden;
}

.btn-partner-white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(107, 162, 75, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-partner-white:hover::before {
    width: 300px;
    height: 300px;
}

/* Commitment Values Hover */
.commitment-value {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.commitment-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 162, 75, 0.05) 0%, rgba(107, 162, 75, 0.1) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.commitment-value:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(107, 162, 75, 0.2);
}

.commitment-value:hover::before {
    opacity: 1;
}

.commitment-value > * {
    position: relative;
    z-index: 1;
}

/* Commitment Images Hover */
.commitment-image-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.commitment-image-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 0 5px rgba(107, 162, 75, 0.3),
                0 12px 35px rgba(107, 162, 75, 0.3);
}

.commitment-image-item img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.commitment-image-item:hover img {
    transform: scale(1.05);
}

/* Story Text Quotes Hover */
.story-text .quote,
.journey-quote,
.story-quote-italic {
    transition: all 0.3s ease;
    padding-left: 20px;
    border-left: 3px solid transparent;
}

.story-text .quote:hover,
.journey-quote:hover,
.story-quote-italic:hover {
    border-left-color: #6BA24B;
    padding-left: 25px;
    color: #4A8032;
    background: rgba(107, 162, 75, 0.05);
}

/* Mission Vision Boxes Hover */
.mission-box,
.vision-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px;
    border-radius: 12px;
}

.mission-box:hover,
.vision-box:hover {
    background: rgba(107, 162, 75, 0.05);
    transform: translateX(10px);
    box-shadow: -5px 0 20px rgba(107, 162, 75, 0.15);
}

/* Story List Items Animation */
.story-list li {
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.story-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6BA24B;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.story-list li:hover {
    padding-left: 30px;
    color: #4A8032;
}

.story-list li:hover::before {
    transform: scale(1.3);
}

/* Image Dots Hover */
.dot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot:hover {
    transform: scale(1.3);
    background: #6BA24B;
}

.dot.active {
    background: #6BA24B;
}

/* ===== BLOG PAGE HOVER EFFECTS ===== */

/* Blog Hero Animation */
.blog-hero {
    animation: fadeInUp 0.8s ease-out;
}

/* Blog Cards Hover */
.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 162, 75, 0.03) 0%, rgba(107, 162, 75, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(107, 162, 75, 0.25),
                0 0 0 1px rgba(107, 162, 75, 0.1);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card > * {
    position: relative;
    z-index: 1;
}

/* Blog Card Image Hover */
.blog-card-image {
    overflow: hidden;
    position: relative;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(107, 162, 75, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

.blog-card-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.15);
}

/* Blog Category Hover */
.blog-category {
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-card:hover .blog-category {
    background: #6BA24B;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(107, 162, 75, 0.3);
}

/* Blog Title Hover */
.blog-card-title {
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #4A8032;
}

/* Blog Meta Hover */
.blog-meta {
    transition: all 0.3s ease;
}

.blog-card:hover .blog-meta {
    color: #6BA24B;
    transform: translateX(5px);
}

/* Blog Card Stagger Delays */
.blog-card:nth-child(1) { transition-delay: 0s; }
.blog-card:nth-child(2) { transition-delay: 0.1s; }
.blog-card:nth-child(3) { transition-delay: 0.2s; }
.blog-card:nth-child(4) { transition-delay: 0.3s; }

/* Button Partner Green Hover */
.btn-partner-green {
    position: relative;
    overflow: hidden;
}

.btn-partner-green::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-partner-green:hover::before {
    width: 300px;
    height: 300px;
}

/* Mobile Animation Optimizations */
@media screen and (max-width: 768px) {
    .scroll-animation {
        transform: translateY(20px);
        transition-duration: 0.6s;
    }
    
    .service-card:hover,
    .why-choose-card:hover,
    .news-card:hover {
        transform: translateY(-4px);
    }
    
    /* Reduce scale effects on mobile */
    .why-choose-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .contact-form-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 0 3px #6BA24B,
                    0 0 15px rgba(107, 162, 75, 0.5),
                    0 0 30px rgba(107, 162, 75, 0.3);
    }
    
    /* Simplify hover effects for performance */
    .news-card:hover .news-image img {
        transform: scale(1.05);
    }
    
    .about-section:hover .about-image img {
        transform: scale(1.03);
    }
    
    /* Our Story Mobile Optimizations */
    .commitment-value:hover {
        transform: translateY(-3px);
    }
    
    .commitment-image-item:hover {
        transform: scale(1.03) translateY(-3px);
    }
    
    .mission-box:hover,
    .vision-box:hover {
        transform: translateX(5px);
    }
    
    .our-story-hero-image:hover {
        transform: translateY(calc(50% - 3px));
    }
    
    /* Blog Mobile Optimizations */
    .blog-card:hover {
        transform: translateY(-6px);
    }
    
    .blog-card:hover .blog-card-image img {
        transform: scale(1.08);
    }
}

/* ===== CONTACT PAGE HOVER EFFECTS ===== */

/* Contact Hero Animation */
.contact-hero {
    animation: fadeInUp 0.8s ease-out;
}

/* Form Inputs Enhanced Hover & Focus */
.form-group-single input,
.form-group-single select,
.form-group-single textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group-single input:hover,
.form-group-single select:hover,
.form-group-single textarea:hover {
    border-color: #6BA24B;
    background: rgba(107, 162, 75, 0.03);
}

.form-group-single input:focus,
.form-group-single select:focus,
.form-group-single textarea:focus {
    border-color: #6BA24B;
    background: rgba(107, 162, 75, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 162, 75, 0.15),
                0 0 0 3px rgba(107, 162, 75, 0.1);
    animation: ripple 0.6s ease-out;
}

/* Submit Button Hover */
.btn-submit-contact {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 162, 75, 0.3);
}

.btn-submit-contact:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit-contact:active {
    transform: translateY(-1px) scale(0.98);
}

/* Where Boxes Hover */
.where-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.where-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 162, 75, 0.03) 0%, rgba(107, 162, 75, 0.08) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.where-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(107, 162, 75, 0.2);
}

.where-box:hover::before {
    opacity: 1;
}

.where-box > * {
    position: relative;
    z-index: 1;
}

/* Social Icons Hover */
.social-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: rgba(107, 162, 75, 0.15);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.15);
    color: #6BA24B;
}

.social-icon:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Map Container Hover */
.map-container {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #6BA24B, #4A8032);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.map-container:hover {
    box-shadow: 0 15px 50px rgba(107, 162, 75, 0.25);
}

.map-container:hover::before {
    opacity: 0.2;
}

/* Contact Form Title Animation */
.contact-form-main-title {
    transition: all 0.3s ease;
}

.contact-form-title-box:hover .contact-form-main-title {
    color: #4A8032;
    transform: translateX(5px);
}

/* Where Title Hover */
.where-title {
    transition: all 0.3s ease;
}

.where-to-find-section:hover .where-title {
    color: #4A8032;
    transform: scale(1.02);
}

/* Where Box Stagger Delays */
.where-box:nth-child(1) { transition-delay: 0s; }
.where-box:nth-child(2) { transition-delay: 0.1s; }
.where-box:nth-child(3) { transition-delay: 0.2s; }

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .scroll-animation {
        opacity: 1;
        transform: none;
    }
}

/* ===== MICRO-INTERACTIONS ===== */

/* Button Active State */
.btn-partner:active,
.btn-about:active,
.btn-submit:active {
    transform: translateY(-2px) scale(0.98);
}

/* Card Active State */
.service-card:active,
.why-choose-card:active,
.news-card:active {
    transform: scale(0.98);
}

/* Link Hover with Underline Animation */
.service-card ul li,
.why-choose-card ul li {
    position: relative;
    padding-left: 32px;
}

.service-card ul li::before,
.why-choose-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6BA24B;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-card:hover ul li::before,
.why-choose-card:hover ul li::before {
    transform: translateX(3px);
}

/* News Category Tag Hover */
.news-category {
    transition: all 0.3s ease;
}

.news-card:hover .news-category {
    background: #6BA24B;
    color: white;
    transform: translateX(5px);
}

/* Form Input Ripple Effect */
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 162, 75, 0.4);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(107, 162, 75, 0);
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    animation: ripple 0.6s ease-out;
}

/* Loading State for Images */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.about-image::before,
.news-image::before,
.our-story-hero-image::before,
.commitment-image-item::before {
    animation: shimmer 2s infinite linear;
}

/* Parallax Effect for Hero */
@media screen and (min-width: 769px) {
    .hero .container {
        transform: translateZ(0);
        will-change: transform;
    }
}

/* Enhanced Background on Hover */
.contact-form-card.partnership:hover {
    background: linear-gradient(180deg, #3a7a2e 0%, #6ba24b 100%);
}

.contact-form-card.consultation:hover {
    background: #ddd9c0;
}
