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

body {
    font-family: 'Inter', sans-serif;
    background: #FFF8F0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.scroll-smooth {
    scroll-behavior: smooth;
}

/* Hero Pattern */
.hero-pattern {
    background-image:
            linear-gradient(135deg, rgba(15, 104, 56, 0.9) 0%, rgba(212, 175, 55, 0.8) 100%),
            url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Product Card */
.product-card {
    transition: all 0.3s ease;
}

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

/* Navigation Links */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

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

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Counter */
.counter {
    font-variant-numeric: tabular-nums;
}

/* Quick Actions Bar */
.quick-actions {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 99;
}

/* Sticky Call Button for Mobile */
@media (max-width: 768px) {
    .sticky-call {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to right, #0F6838, #16804a);
        padding: 12px;
        text-align: center;
        z-index: 98;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
}

/* Review Ticker */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-ticker {
    animation: scroll 30s linear infinite;
}

/* Quiz Progress Bar */
.progress-bar {
    transition: width 0.3s ease;
}

/* Comparison Table */
.comparison-table td {
    transition: background-color 0.3s ease;
}

.comparison-table tr:hover td {
    background-color: rgba(16, 185, 129, 0.1);
}

/* Notification */
.notification {
    transform: translateX(400px);
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #0F6838 0%, #16804a 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
}