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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4caf50;
    --accent-green: #8bc34a;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 75px;
}


.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav.scrolled {
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #2d4a2d;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    margin-left: 0;
}

/* Match Home button color and font style */
.brand-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-green);
    letter-spacing: 0.1px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.1;
    margin-top: 2px;
}

.brand:hover {
    transform: scale(1.02);
}

.brand:visited {
    color: var(--primary-green);
}

.brand i {
    color: var(--secondary-green);
    animation: leaf-spin 4s ease-in-out infinite;
}

.brand-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

@keyframes leaf-spin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-5deg) scale(1.1); }
    75% { transform: rotate(5deg) scale(1.1); }
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.menu-items a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    padding: 5px 0;
}

.menu-items a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-green));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.menu-items a:hover::after,
.menu-items a.active::after {
    width: 100%;
}

.menu-items a:hover,
.menu-items a.active {
    color: var(--secondary-green);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-green);
    transition: transform 0.3s;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.hero-banner {
    background: linear-gradient(135deg, #1a3a0f 0%, var(--primary-green) 50%, var(--secondary-green) 100%);
    color: white;
    padding: 100px 20px 120px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 550px;
    animation: hero-fade-in 1.2s ease;
    text-align: left;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.8rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-images {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: hero-fade-in 1.5s ease;
}

.hero-graphics {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    top: -50px;
    right: -50px;
    animation: float-slow 8s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    bottom: -30px;
    left: -30px;
    animation: float-slow 6s ease-in-out infinite reverse;
}

.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.4;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    height: 520px;
}

.hero-img {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    object-fit: cover;
    background: #f5f5f5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img:hover {
    transform: scale(1.03) translateY(-5px);
    z-index: 10;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.img-1 {
    width: 340px;
    height: 340px;
    top: 0;
    right: 0;
    z-index: 2;
    transform: rotate(3deg);
}

.img-1:hover {
    transform: rotate(0deg) scale(1.03);
}

.img-2 {
    width: 320px;
    height: 320px;
    bottom: 20px;
    left: 0;
    z-index: 1;
    transform: rotate(-5deg);
}

.img-2:hover {
    transform: rotate(0deg) scale(1.03);
}

.eco-badge {
    position: absolute;
    bottom: 80px;
    right: -10px;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    color: var(--primary-green);
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 15;
    animation: badge-bounce 3s ease-in-out infinite;
}

.eco-badge i {
    color: var(--secondary-green);
    font-size: 1.1rem;
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 992px) {
    .hero-banner {
        padding: 100px 20px;
        text-align: center;
        min-height: auto;
        display: block;
    }

    .hero-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .image-wrapper {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }

    .img-1, .img-2 {
        width: 200px;
        height: 200px;
    }

    .img-1 {
        transform: rotate(2deg);
    }

    .img-2 {
        transform: rotate(-3deg);
    }

    .eco-badge {
        right: 0;
        bottom: 60px;
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .image-wrapper {
        height: 260px;
    }

    .img-1, .img-2 {
        width: 160px;
        height: 160px;
    }

    .eco-badge {
        font-size: 0.75rem;
        padding: 8px 12px;
        bottom: 40px;
    }

    .hero-graphics {
        display: none;
    }
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
}



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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-large {
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: white;
    color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-green);
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255,255,255,0.4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: -80px auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

@media (max-width: 992px) {
    .features-grid {
        margin: -50px auto 60px;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        margin: -30px auto 40px;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        margin: 20px auto 40px;
        gap: 1.5rem;
    }
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.15), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.feature-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover i {
    transform: scale(1.15) rotate(10deg);
}

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

.icon-green { color: #4caf50; }
.icon-blue { color: #2196f3; }
.icon-gold { color: #ff9800; }
.icon-purple { color: #9c27b0; }

.product-categories {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.product-categories h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.product-categories h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-green));
    border-radius: 2px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.category-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--accent-green), transparent);
    animation: border-rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
}

.category-box:hover::before {
    opacity: 0.5;
}

@keyframes border-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.category-box:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    border-color: var(--accent-green);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
    position: relative;
    z-index: 1;
}

.category-box:hover .category-icon {
    transform: rotate(360deg) scale(1.2);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.6);
}

.category-icon i {
    font-size: 1.8rem;
    color: white;
}

.category-box h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-green);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.category-box p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.category-box a {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.category-box a::after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.category-box:hover a::after {
    margin-left: 12px;
}

.stats-section {
    background: linear-gradient(135deg, #1a3a0f 0%, var(--primary-green) 50%, #2d5016 100%);
    color: white;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    pointer-events: none;
}

.stat-item {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
    padding: 30px 20px;
    border-radius: 15px;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--accent-green);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15), transparent);
    animation: pulse-effect 3s ease-in-out infinite;
}

@keyframes pulse-effect {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.btn-large {
    margin-top: 2rem;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    position: relative;
    z-index: 1;
}

.btn-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-green));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-large:hover::after {
    opacity: 1;
}

.btn-large:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.5);
}

/* Contact Page Styles */
.contact-page {
    min-height: 100vh;
}

.contact-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content {
    text-align: left;
}

.info-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--text-light);
}

.info-item p a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item p a:hover {
    color: var(--secondary-green);
}

.contact-social h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-social .social-links {
    margin-top: 0;
}

.contact-social .social-links a {
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    color: white;
}

.contact-social .social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-5px) scale(1.1);
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

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

/* Phone Input with Country Code */
.phone-input-wrapper {
    display: flex;
    gap: 10px;
}

.country-code-select {
    width: 180px !important;
    flex-shrink: 0;
    padding: 14px 12px !important;
    font-size: 0.9rem !important;
    cursor: pointer;
}

.phone-input-wrapper input[type="tel"] {
    flex: 1;
}

.optional-label {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.85rem;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--secondary-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-form .btn-primary::before {
    display: none;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.contact-form .btn-primary .btn-text,
.contact-form .btn-primary .btn-loading {
    position: relative;
    z-index: 1;
}

.contact-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Message Styles */
.form-message {
    display: none;
    padding: 16px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.95rem;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #28a745;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #dc3545;
}

.form-message i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.form-message a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

.form-message a:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .info-items {
        align-items: center;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-content {
        text-align: center;
    }
    
    .contact-social {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-social .social-links {
        justify-content: center;
    }
}

.site-footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d2d 100%);
    color: #ccc;
    padding: 60px 20px 30px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-green), var(--secondary-green));
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-green));
    border-radius: 2px;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-col a:hover {
    color: var(--secondary-green);
}

.footer-col p a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-col p a:hover {
    transform: none;
}

.footer-col p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.footer-col p:hover {
    color: white;
}

.footer-col i {
    color: var(--secondary-green);
}

/* Contact info link styling */
.info-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.info-link:hover {
    transform: translateX(5px);
}

.info-link:hover h4,
.info-link:hover p {
    color: var(--secondary-green);
}

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

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.social-links a:hover i {
    color: white;
}

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

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.scroll-top.show {
    display: flex;
}

html {
    scroll-behavior: smooth;
}

/* About Page Styles */
.page-hero {
    background: linear-gradient(135deg, #1a3a0f 0%, var(--primary-green) 50%, var(--secondary-green) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

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

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-intro {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-green));
    border-radius: 2px;
}

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

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

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

.about-image-placeholder i {
    font-size: 8rem;
    color: white;
    opacity: 0.9;
}

.company-info {
    background: var(--light-bg);
    padding: 80px 20px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

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

.info-card i {
    font-size: 3rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

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

.info-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.mission-vision {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.mission-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-left: 5px solid var(--secondary-green);
}

.mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-box h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.mission-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.why-choose {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f5e9 100%);
    padding: 80px 20px;
}

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

.why-container h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.why-container h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-green));
    border-radius: 2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

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

.why-card i {
    font-size: 3rem;
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.why-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.why-card h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.global-reach {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.reach-container h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.reach-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.country-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.country-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    color: white;
}

.country-item i {
    font-size: 2.5rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.country-item:hover i {
    color: white;
}

.country-item span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.reach-note {
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.core-values {
    background: linear-gradient(135deg, #1a3a0f 0%, var(--primary-green) 50%, #2d5016 100%);
    color: white;
    padding: 80px 20px;
}

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

.values-container h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

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

.value-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--accent-green);
}

.value-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-item p {
    line-height: 1.7;
    opacity: 0.9;
}
/* ============================================
   Products Page Styles
   ============================================ */

.products-page {
    min-height: 100vh;
    background: var(--light-bg);
}

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

.products-header {
    position: relative;
    padding: 100px 20px 80px;
    overflow: hidden;
}

.header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.header-badge i {
    color: var(--accent-green);
}

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

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Products USP Banner */
.products-usp {
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}

.usp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 20px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-3px);
}

.usp-item i {
    font-size: 1.5rem;
    color: var(--secondary-green);
}

.usp-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Products CTA Section */
.products-cta {
    background: linear-gradient(135deg, #1a3a0f 0%, var(--primary-green) 50%, var(--secondary-green) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.products-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.products-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

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

/* Categories Section */
.categories-section {
    padding: 40px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 20px;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay span {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-overlay .view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-green);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.category-overlay .view-btn:hover {
    background: var(--accent-green);
    color: white;
    transform: scale(1.05);
}

.category-info {
    padding: 25px;
}

.category-info h3 {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 700;
}

.category-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.product-count {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.explore-link i {
    transition: transform 0.3s ease;
}

.category-card:hover .explore-link {
    color: var(--secondary-green);
}

.category-card:hover .explore-link i {
    transform: translateX(5px);
}

/* Products Section */
.products-section {
    padding: 40px 0;
}

.back-button {
    background: white;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: var(--primary-green);
    color: white;
    transform: translateX(-5px);
}

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

.back-button:hover i {
    transform: translateX(-3px);
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

/* Footer Styles */
.main-footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--accent-green);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-green);
}

.footer-section i {
    margin-right: 10px;
    color: var(--secondary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
    transform: scale(1.05);
}

.whatsapp-float i {
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

