/* ===== AGRICO GLOBAL - PREMIUM DESIGN ===== */
/* Modern Farmers-Oriented Website with 3D Effects */

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

:root {
    --primary-green: #2D6A4F;
    --secondary-green: #1B4332;
    --accent-green: #52B788;
    --accent-light: #95D5B2;
    --purple-main: #6b2d8f;
    --dark-navy: #1a1a2e;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --text-dark: #2b2b2b;
    --text-light: #666666;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    letter-spacing: 0.5px;
}

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

/* ===== PREMIUM NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(249, 255, 249, 0.98) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(44, 95, 45, 0.05),
        inset 0 -1px 0 rgba(151, 204, 4, 0.1);
    border-bottom: 1px solid rgba(151, 204, 4, 0.15);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scroll-active {
    padding: 0.7rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(252, 255, 252, 1) 50%,
        rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(44, 95, 45, 0.08),
        inset 0 -1px 0 rgba(151, 204, 4, 0.2);
    border-bottom: 2px solid rgba(151, 204, 4, 0.25);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-logo::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-green), var(--purple-main));
    border-radius: 2px;
    transition: height 0.3s ease;
}

.nav-logo:hover::before {
    height: 70%;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(44, 95, 45, 0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoFloat 3s ease-in-out infinite;
}

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

.logo-img:hover {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 6px 12px rgba(44, 95, 45, 0.25));
}

.logo-text h2 {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--purple-main) 0%, #8B4DAF 50%, var(--purple-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 3px;
    text-shadow: 0 2px 4px rgba(107, 45, 143, 0.1);
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-text h2 {
    letter-spacing: 2.5px;
}

.logo-text p {
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    left: -15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-green);
    text-shadow: 0 2px 8px rgba(151, 204, 4, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(151, 204, 4, 0.4);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.contact-link {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green) 100%);
    color: var(--white) !important;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 800 !important;
    font-size: 1rem !important;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 
        0 4px 15px rgba(151, 204, 4, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transition: transform 0.6s ease;
}

.contact-link:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.contact-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-link:hover::after {
    opacity: 1;
}

.contact-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(151, 204, 4, 0.45),
        0 6px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-link:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(151, 204, 4, 0.35),
        0 3px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(151, 204, 4, 0.1), rgba(44, 95, 45, 0.1));
    border: 2px solid rgba(151, 204, 4, 0.3);
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(151, 204, 4, 0.2), rgba(44, 95, 45, 0.15));
    border-color: var(--accent-green);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(151, 204, 4, 0.3);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--primary-green));
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===== PREMIUM HERO SECTION ===== */
.premium-hero {
    position: relative;
    overflow: hidden;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5fff5 0%, #f0faf0 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-3d-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(44, 95, 45, 0.2);
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(151, 204, 4, 0.15);
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(107, 45, 143, 0.1);
    top: 50%;
    left: 50%;
    animation: float 7s ease-in-out infinite;
}

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

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

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

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

.hero-logo-3d {
    margin-bottom: 30px;
    animation: bounce 3s ease-in-out infinite;
}

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

.hero-logo-img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-main), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero-tagline {
    font-size: 2rem;
    color: var(--accent-green);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    letter-spacing: 0.8px;
}

.hero-buttons-premium {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.premium-btn {
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn.btn-primary.premium-btn {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
}

.btn.btn-primary.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(151, 204, 4, 0.4);
}

.btn.btn-secondary.premium-btn {
    background: var(--white);
    color: var(--purple-main);
    border: 2px solid var(--accent-green);
}

.btn.btn-secondary.premium-btn:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== PREMIUM CAROUSEL SECTION ===== */
.carousel-section {
    position: relative;
    overflow: hidden;
    background: var(--dark-navy);
    margin-top: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.25);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%) scale(0.95) rotateY(15deg);
    transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1),
                transform 1.2s cubic-bezier(0.33, 1, 0.68, 1);
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    z-index: 2;
}

.carousel-slide.prev {
    opacity: 0;
    transform: translateX(-100%) scale(0.95) rotateY(-15deg);
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide.active img {
    transform: scale(1.05);
    animation: slowZoom 8s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.1); }
}

.carousel-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    height: 100%;
}

.carousel-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 95, 45, 0.75) 0%,
        rgba(107, 45, 143, 0.65) 100%
    );
    z-index: 1;
}

.carousel-overlay-dark {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(44, 95, 45, 0.7) 50%,
        rgba(107, 45, 143, 0.6) 100%
    );
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px;
    z-index: 2;
    text-align: center;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.5) 60%,
        transparent 100%
    );
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.4s;
}

.carousel-slide.active .carousel-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.carousel-title {
    font-family: 'Poppins', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
    transform: translateZ(50px);
    animation: titleFloat 3s ease-in-out infinite;
}

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

.carousel-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    letter-spacing: 0.5px;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-btn-prev {
    left: 30px;
}

.carousel-btn-next {
    right: 30px;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-indicator {
    width: 50px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.carousel-indicator.active {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-indicator.active::before {
    width: 100%;
    animation: indicatorProgress 5s linear;
}

@keyframes indicatorProgress {
    from { width: 0; }
    to { width: 100%; }
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scaleY(1.5);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-container {
        height: 380px;
    }

    .carousel-title {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
    }

    .carousel-text {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .carousel-content {
        padding: 40px 20px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .carousel-btn-prev {
        left: 15px;
    }

    .carousel-btn-next {
        right: 15px;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .carousel-indicator {
        width: 30px;
        height: 5px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 320px;
    }

    .carousel-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .carousel-text {
        font-size: 0.8rem;
        max-width: 95%;
    }

    .carousel-product-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
}

/* ===== WHY AGRICO SECTION ===== */
.why-agrico {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

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

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: cardSlide 0.6s ease-out both;
    animation-delay: var(--delay, 0s);
    position: relative;
    overflow: hidden;
}

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

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--primary-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(151, 204, 4, 0.2), rgba(44, 95, 45, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-green);
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-main) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--purple-main));
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(151, 204, 4, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.about-card {
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 1px solid rgba(151, 204, 4, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--primary-green), var(--purple-main));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

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

.about-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(151, 204, 4, 0.2), 
        rgba(107, 45, 143, 0.1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.5s ease;
}

.about-card:hover::after {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(151, 204, 4, 0.3);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(151, 204, 4, 0.2),
        0 5px 15px rgba(107, 45, 143, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.about-image {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
}

.about-image i {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.9;
}

.about-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-info p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 8px 20px rgba(151, 204, 4, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(151, 204, 4, 0.3);
}

/* ===== PRODUCT SECTION ===== */
.products {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 35px;
    padding: 0 10px;
}

.product-card {
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 1px solid rgba(151, 204, 4, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideUp 0.6s ease-out;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--primary-green), var(--purple-main));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(151, 204, 4, 0.2), 
        rgba(107, 45, 143, 0.1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.5s ease;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-20px) translateZ(30px) rotateX(8deg) scale(1.02);
    border-color: rgba(151, 204, 4, 0.3);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(151, 204, 4, 0.2),
        0 5px 15px rgba(107, 45, 143, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.product-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0faf0, #f5fff5);
    border-bottom: 2px solid rgba(151, 204, 4, 0.1);
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(151, 204, 4, 0.1) 0%, 
        transparent 50%,
        rgba(107, 45, 143, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(1);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(3deg);
    filter: brightness(1.05) saturate(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 28px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5));
    position: relative;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-category {
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
    min-height: 45px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

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

.product-btn:hover {
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

.product-btn:active {
    transform: translateY(0px);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.12);
}

.product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.product-tags span {
    background: rgba(151, 204, 4, 0.15);
    color: var(--primary-green);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-enquire {
    width: 100%;
    background: 
        linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(0,0,0,0.1) 100%),
        linear-gradient(135deg, #9B6FCF 0%, #7B3D9F 50%, #6B2D8F 100%);
    color: var(--white);
    border: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: visible;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transform-style: preserve-3d;
    transform: perspective(1200px) translateZ(0) rotateX(0deg);
    border: 2px solid rgba(255,255,255,0.1);
    /* Material Design Elevation Level 6 */
    box-shadow: 
        0 0 0 1px rgba(107, 45, 143, 0.1),
        0 3px 3px -2px rgba(107, 45, 143, 0.2),
        0 3px 4px 0 rgba(107, 45, 143, 0.14),
        0 1px 8px 0 rgba(107, 45, 143, 0.12),
        0 8px 16px -4px rgba(107, 45, 143, 0.4),
        inset 0 2px 6px rgba(255, 255, 255, 0.25),
        inset 0 -4px 10px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Material surface highlight */
.btn-enquire::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 16px 16px 0 0;
    opacity: 0.6;
    pointer-events: none;
}

/* Material depth layer */
.btn-enquire::after {
    content: '';
    position: absolute;
    inset: -6px;
    background: linear-gradient(135deg, #8B5FBF, #6B2D8F);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(-8px);
}

.btn-enquire:hover {
    transform: perspective(1200px) translateY(-12px) translateZ(30px) rotateX(8deg) scale(1.02);
    border-color: rgba(255,255,255,0.2);
    /* Material Design Elevation Level 12 */
    box-shadow: 
        0 0 0 1px rgba(107, 45, 143, 0.15),
        0 7px 8px -4px rgba(107, 45, 143, 0.3),
        0 12px 17px 2px rgba(107, 45, 143, 0.2),
        0 5px 22px 4px rgba(107, 45, 143, 0.18),
        0 20px 40px -8px rgba(107, 45, 143, 0.5),
        inset 0 3px 8px rgba(255, 255, 255, 0.3),
        inset 0 -5px 15px rgba(0, 0, 0, 0.35);
    background: 
        linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(0,0,0,0.15) 100%),
        linear-gradient(135deg, #AB7FDF 0%, #8B4DAF 50%, #7B3D9F 100%);
}

.btn-enquire:hover::before {
    opacity: 0.8;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
}

.btn-enquire:hover::after {
    opacity: 0.8;
    filter: blur(12px);
    transform: translateZ(-12px) scale(1.1);
}

.btn-enquire:active {
    transform: perspective(1200px) translateY(-4px) translateZ(15px) rotateX(4deg) scale(0.98);
    transition: all 0.1s ease;
    /* Material Design Elevation Level 2 */
    box-shadow: 
        0 0 0 1px rgba(107, 45, 143, 0.08),
        0 1px 2px -1px rgba(107, 45, 143, 0.15),
        0 1px 3px 0 rgba(107, 45, 143, 0.1),
        0 1px 4px 0 rgba(107, 45, 143, 0.08),
        0 4px 8px -2px rgba(107, 45, 143, 0.3),
        inset 0 1px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 6px rgba(0, 0, 0, 0.25);
}

.btn-enquire:active::after {
    opacity: 0.4;
    filter: blur(6px);
    transform: translateZ(-6px) scale(0.95);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(151, 204, 4, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--accent-green);
}

.btn-secondary:hover {
    background: var(--accent-green);
    color: var(--white);
}

/* ===== RESPONSIVE PRODUCT GRID ===== */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-card {
        grid-template-columns: 150px 1fr;
    }

    .about-image {
        min-height: 150px;
    }

    .about-image i {
        font-size: 3rem;
    }

    .about-info {
        padding: 25px;
    }

    .about-info h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .about-info p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
        gap: 25px;
        padding: 0 5px;
    }

    .product-card {
        transform-style: flat;
    }

    .product-card:hover {
        transform: translateY(-12px) scale(1.01);
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .about-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .about-image {
        min-height: 150px;
        grid-column: 1;
        grid-row: 1;
    }

    .about-info {
        grid-column: 1;
        grid-row: 2;
        padding: 20px;
    }

    .about-info h3 {
        font-size: 1.3rem;
    }

    .about-info p {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .product-image {
        height: 220px;
    }

    .product-card:hover {
        transform: translateY(-8px);
    }

    .product-info h3 {
        font-size: 1.1rem;
    }
}

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

.contact .section-header h2 {
    color: var(--white);
    font-size: 2.8rem;
}

.contact .section-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* Quick Contact Buttons */
.quick-contact-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.quick-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.3s ease;
}

.quick-btn:hover::before {
    left: 100%;
}

.quick-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.quick-btn:hover i {
    transform: scale(1.2);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.phone-btn {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
}

.phone-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(151, 204, 4, 0.4);
}

.email-btn {
    background: linear-gradient(135deg, #FF6B6B, #EE5A52);
    color: var(--white);
}

.email-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    color: var(--white);
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.contact-card {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(5px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.7;
}

.contact-item a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.social-card {
    text-align: center;
}

.social-icons-premium {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-icons-premium a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255,255,255,0.1);
}

.social-icons-premium a:hover {
    background: var(--accent-green);
    color: var(--primary-green);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(151, 204, 4, 0.3);
}

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

.contact-form-wrapper h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-green);
    background: #f9fff9;
    box-shadow: 0 0 0 4px rgba(151, 204, 4, 0.15);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.btn-3d {
    width: 100%;
    padding: 16px 30px !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.btn-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-3d:hover {
    transform: translateY(-6px) perspective(1000px) rotateX(10deg) rotateY(-8deg);
    box-shadow: 0 20px 50px rgba(151, 204, 4, 0.4);
}

.btn-3d:hover::before {
    opacity: 1;
}

.btn-3d:active {
    transform: translateY(-3px) perspective(1000px) rotateX(5deg) rotateY(-4deg);
}

.btn-3d i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.btn-3d:hover i {
    transform: rotate(20deg) scale(1.1);
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    animation: none;
}

.form-message.show {
    opacity: 1;
    visibility: visible;
}

.form-message.success {
    background: #28a745;
    color: var(--white);
    animation: slideDown 0.3s ease;
}

.form-message.error {
    background: #FF6B6B;
    color: var(--white);
    animation: slideDown 0.3s ease;
}

.form-message.loading {
    background: var(--accent-green);
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-section p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.8;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(151, 204, 4, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-3px);
}

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

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(151, 204, 4, 0.4);
}

/* Animation for form messages */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(249, 255, 249, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem 2rem 2rem;
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
        border-top: 2px solid rgba(151, 204, 4, 0.2);
        border-bottom: 3px solid rgba(151, 204, 4, 0.3);
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .nav-link {
        padding: 12px 16px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(151, 204, 4, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, 
            rgba(151, 204, 4, 0.1), 
            rgba(44, 95, 45, 0.08));
        border-color: rgba(151, 204, 4, 0.3);
        transform: translateX(8px);
    }

    .nav-link::after {
        display: none;
    }

    .contact-link {
        margin-top: 8px;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-buttons-premium {
        flex-direction: column;
        align-items: center;
    }

    .premium-btn {
        width: 100%;
        max-width: 300px;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .quick-contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .quick-btn {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    @media (max-width: 480px) {
        .contact-form-wrapper {
            padding: 25px;
        }
        
        .btn-3d {
            padding: 14px 20px !important;
            font-size: 0.95rem !important;
        }
    }
}

@media print {
    .scroll-to-top {
        display: none;
    }
}
