:root {
    --primary: #4CAF50;
    --primary-light: #A5D6A7;
    --primary-dark: #388E3C;
    --secondary: #333;
    --bg-light: #F9F9F9;
    --bg-white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s ease-in-out;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a,
button,
.btn,
.card-premium,
.feature-card,
.process-step,
.footer-contact-item,
.footer-social-link,
.img-premium img {
    transition: all 0.3s ease-in-out;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

p {
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    color: white;
}

.btn-outline-secondary {
    border: 2px solid var(--border-color);
    color: var(--text-main);
    background: transparent;
}

.btn-outline-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px) scale(1.05);
}

.btn-quote {
    background-color: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.btn-quote:hover {
    background-color: var(--primary-dark);
    color: white;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Sections */
section {
    padding: 100px 0;
}

.main-inner {
    padding-top: 85px; /* Adjust based on header height */
}

.section-title {
    margin-bottom: 3rem;
}

.eyebrow {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.eco-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid var(--primary-light);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.2);
}

.eco-badge i {
    font-size: 1.1rem;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 48px rgba(76, 175, 80, 0.16);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition);
    margin: 0 auto;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    transform: rotateY(360deg);
}

/* Global UI Improvements */
.card-premium {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    height: 100%;
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 48px rgba(76, 175, 80, 0.14);
    border-color: var(--primary-light);
}

.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:active {
    transform: scale(0.96);
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.25);
}

/* Footer */
.site-footer {
    position: relative;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(11, 35, 20, 0.94) 0%, rgba(17, 52, 28, 0.98) 55%, rgba(10, 28, 18, 1) 100%);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(165, 214, 167, 0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(76, 175, 80, 0.18), transparent 24%);
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-text,
.footer-copy,
.footer-copy-label {
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-links li + li {
    margin-top: 0.8rem;
}

.footer-links a,
.developer-link {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.developer-link:hover {
    color: var(--primary-light);
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(165, 214, 167, 0.35);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover::before {
    background: var(--primary-light);
    transform: scale(1.15);
}

.footer-social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(165, 214, 167, 0.18);
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.footer-social-link:hover {
    color: #0f2e1a;
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-contact-item:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(165, 214, 167, 0.14);
    color: var(--primary-light);
    border: 1px solid rgba(165, 214, 167, 0.18);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--primary-light);
    color: #143221;
    transform: scale(1.05);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(165, 214, 167, 0), rgba(165, 214, 167, 0.45), rgba(165, 214, 167, 0));
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Scroll to Top Button Style */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 12px 26px rgba(56, 142, 60, 0.28);
    font-size: 1.2rem;
    animation: float-soft 3s ease-in-out infinite;
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}

#scrollToTop:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 16px 30px rgba(56, 142, 60, 0.34);
}

#scrollToTop i {
    font-weight: bold;
}

.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.65rem;
    z-index: 999;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.34);
    animation: whatsapp-pulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.42);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.34), 0 14px 30px rgba(37, 211, 102, 0.34); }
    50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 14px 30px rgba(37, 211, 102, 0.34); }
}

@keyframes float-soft {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -5px; }
}
/* Brand Selection Color */
::selection {
    background: var(--primary);
    color: #fff;
}

::-moz-selection {
    background: var(--primary);
    color: #fff;
}
/* Images */
.img-premium {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.img-premium img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.img-premium:hover img {
    transform: scale(1.05);
}

.product-showcase-marquee {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.product-showcase-track {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: max-content;
    animation: product-showcase-scroll 38s linear infinite;
}

.product-showcase-marquee:hover .product-showcase-track {
    animation-play-state: paused;
}

.product-showcase-item {
    flex: 0 0 auto;
    width: clamp(220px, 24vw, 320px);
}

.product-showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(76, 175, 80, 0.12);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    aspect-ratio: 4 / 3;
}

.product-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.product-showcase-card:hover img {
    transform: scale(1.06);
}

@keyframes product-showcase-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 0.625rem));
    }
}

/* Advanced Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Section Specifics */
.process-step {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

/* Comparison Table */
.comparison-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
}

.compare-header {
    padding: 1.5rem;
    color: white;
    text-align: center;
    font-weight: 700;
}

.compare-body {
    padding: 2rem;
}

.compare-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.compare-row:last-child { border: none; }

/* Premium Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1000000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.5s ease;
}

#preloader.fade-out {
    transform: translateY(-100%);
    opacity: 0;
}

.preloader-content {
    width: min(90vw, 320px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

.loader-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0 !important;
}

.dual-ring {
    content: " ";
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    border-color: var(--primary) transparent var(--primary) transparent;
    animation: dual-ring 1.2s linear infinite;
    position: absolute;
}

@keyframes dual-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-loader {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Launch Overlay */
#launchOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding:
        max(1rem, env(safe-area-inset-top))
        max(1rem, env(safe-area-inset-right))
        max(1rem, env(safe-area-inset-bottom))
        max(1rem, env(safe-area-inset-left));
    background: rgba(0, 0, 0, 0.90);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

#launchOverlay.show {
    opacity: 1;
    visibility: visible;
}

.launch-content {
    position: relative;
    width: min(92vw, 760px);
    max-width: 760px;
    max-height: calc(100svh - 2rem);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

#launchOverlay.show .launch-content {
    transform: translateY(0);
}

.launch-content img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: calc(100vh - 4.5rem);
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.launch-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 40px;
    height: 40px;
    padding: 0;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10;
    transition: var(--transition);
}

.launch-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--primary-dark);
}

/* Logo Styles */
.brand-logo {
    height: 76px;
    max-width: 210px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
}

.footer-logo {
    height: 82px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.loader-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0;
    animation: pulse-soft 2s infinite ease-in-out;
    image-rendering: -webkit-optimize-contrast;
}

.loader-text {
    margin: 0;
    letter-spacing: 4px;
    font-size: 0.72rem;
    color: var(--primary);
    text-align: center;
}

@keyframes pulse-soft {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* Premium Lists */
.premium-list {
    padding-left: 0;
    list-style: none;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.premium-list .list-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.premium-list .list-content {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--secondary);
    font-weight: 500;
}

.site-header.scrolled .brand-logo {
    height: 64px;
}

@media (max-width: 991px) {
    .brand-logo {
        height: 58px;
        max-width: 170px;
    }
}

/* Premium Contact & Forms */
.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-box:hover .icon-circle {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.form-control, .form-select {
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.2);
    border-color: var(--primary);
    background-color: #fff;
}

/* Inner Page Hero */
.hero-inner {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.5)), url('../images/heroimg.png') no-repeat center center/cover;
    padding: 130px 0 90px;
    color: white;
    text-align: center;
}

.hero-inner .eyebrow {
    color: var(--primary-light);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    padding: 6px 15px;
    backdrop-filter: blur(5px);
}

.hero-inner h1, 
.hero-inner p {
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-inner p {
    opacity: 1 !important;
    font-weight: 500;
    color: #ffffff !important;
}

.hero-inner h1 {
    font-weight: 800;
    letter-spacing: -1px;
}

