:root {
    --primary-green: #059669;
    --primary-emerald: #10b981;
}

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

body {
    background: #f8fafb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid #10b981;
    transition: transform 0.3s ease-in-out;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-emerald));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.contact-btn, .call-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-emerald));
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover, .call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
    color: white;
}

.hero-section {
    padding: 100px 0 80px;
    padding-top: 180px;
    text-align: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #064e3b;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(255,255,255,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #065f46;
    margin-bottom: 40px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

.badge-pill {
    background: white;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    font-weight: 700;
    color: #047857;
    display: inline-block;
    margin: 0 10px 15px;
    font-size: 1.1rem;
    border: 2px solid #10b981;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #064e3b;
}

.product-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    cursor: pointer;
}

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

.product-image-container {
    width: 100%;
    height: 320px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-bottom: 3px solid;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

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

.product-content {
    padding: 30px;
}

.product-category {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(0,0,0,0.05);
}

.product-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1f2937;
}

.product-tagline {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 20px;
    font-weight: 500;
}

.product-benefits {
    margin-bottom: 20px;
}

.benefit-item {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.benefit-item i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f3f4f6;
}

.product-price {
    font-size: 2rem;
    font-weight: 900;
    color: #064e3b;
}

.view-btn {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.view-btn:hover {
    transform: scale(1.05);
    color: white;
}

.footer {
    background: #064e3b;
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-link {
    color: #d1fae5;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: white;
}

.nav-link-custom {
    color: #064e3b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary-emerald);
}

.nav-link-custom.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-emerald);
    border-radius: 2px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 16px;
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: #ecfdf5;
    color: var(--primary-green);
    transform: translateX(5px);
}

.navbar-toggler {
    border: none;
    background: none;
    padding: 0;
}

.mobile-nav-link {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 0;
    display: block;
    transition: all 0.3s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-emerald);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .product-image-container {
        height: 250px;
    }
}
