/* ================================
   Green & White Theme Enhancements
   ================================ */

:root {
    /* Green Theme Colors */
    --primary: #10b981;
    --primary-light: #34d399;
    --primary-dark: #059669;
    --secondary: #14b8a6;
    --accent: #22c55e;
    --success: #10b981;

    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;

    /* Background */
    --bg-light: #ffffff;
    --bg-secondary: #f8fafc;
}

body {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%) !important;
    color: var(--text-primary) !important;
}

/* Hero Background - Green Theme */
.hero::before {
    background:
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%) !important;
}

/* Header - Green Glass - Scrolls with Page */
.header {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    border-radius: 0 !important;
    z-index: 100 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: none !important;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2) !important;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.1) !important;
}

.logo {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.nav-links a {
    color: var(--text-secondary) !important;
}

.nav-links a:hover {
    color: var(--primary) !important;
}

/* Hero Content */
.hero {
    padding-top: 2rem !important;
}

.hero-title {
    background: linear-gradient(135deg, #111827 0%, #374151 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.hero-subtitle {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.hero-description {
    color: var(--text-secondary) !important;
}

/* Demo Box - Green */
.demo-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(20, 184, 166, 0.08)) !important;
    border: 2px solid rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15) !important;
}

.demo-label {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Buttons - Green Theme */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3) !important;
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5) !important;
}

.btn-secondary {
    background: rgba(16, 185, 129, 0.1) !important;
    border: 2px solid rgba(16, 185, 129, 0.3) !important;
    color: var(--primary) !important;
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.15) !important;
    border-color: var(--primary) !important;
}

.btn-success {
    background: linear-gradient(135deg, var(--success), var(--accent)) !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3) !important;
}

/* Sections */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Feature Cards - White with Green Accents */
.feature-card {
    background: white !important;
    border: 2px solid rgba(16, 185, 129, 0.15) !important;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08) !important;
}

.feature-card:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15) !important;
}

.feature-name {
    background: none !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    color: var(--text-primary) !important;
    font-weight: 700 !important;
}

.feature-icon {
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.2)) !important;
}

/* ============================================
   PRICING CARDS FIX - Alignment & Green Theme
   ============================================ */
.pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    align-items: start !important;
}

.pricing-card {
    background: white !important;
    border: 2px solid rgba(16, 185, 129, 0.15) !important;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1) !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    padding-top: 3rem !important;
}

.pricing-card::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(20, 184, 166, 0.05)) !important;
}

.pricing-card:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.2) !important;
    transform: translateY(-5px) !important;
}

.pricing-card.popular {
    border-color: var(--primary) !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(20, 184, 166, 0.03)) !important;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.25) !important;
}

/* Popular Badge - Centered on top */
.popular-badge {
    position: absolute !important;
    top: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
    z-index: 10 !important;
    white-space: nowrap !important;
}

.package-name {
    color: var(--text-primary) !important;
}

.package-price {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.package-desc {
    color: var(--text-muted) !important;
}

.features-list li {
    color: var(--text-secondary) !important;
}

.features-list li::before {
    color: var(--success) !important;
}

/* Form - White with Green Accents */
.form-container {
    background: white !important;
    border: 2px solid rgba(16, 185, 129, 0.15) !important;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1) !important;
}

.form-group label {
    color: var(--text-secondary) !important;
}

.form-control {
    background: rgba(16, 185, 129, 0.03) !important;
    border: 2px solid rgba(16, 185, 129, 0.2) !important;
    color: var(--text-primary) !important;
}

.form-control:focus {
    border-color: var(--primary) !important;
    background: rgba(16, 185, 129, 0.05) !important;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15) !important;
}

/* Footer - Light Green */
.footer {
    background: #f0fdf4 !important;
    border-top: 1px solid rgba(16, 185, 129, 0.2) !important;
}

.footer-section h4 {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.footer-links a:hover {
    color: var(--primary) !important;
}

/* Alert Messages - Green */
.alert-success {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: var(--success) !important;
    color: var(--success) !important;
}

/* ================================
   Responsive - Full Width Mobile
   ================================ */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 1.5rem !important;
    }

    .hero-title {
        font-size: 2.25rem !important;
    }

    .hero-subtitle {
        font-size: 1.15rem !important;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .package-price {
        font-size: 2.75rem !important;
    }

    /* Keep 2-column grid on mobile */
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
}

@media (max-width: 575px) {

    /* Header scrolls with page on mobile too */
    .header {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        transform: none !important;
        border-radius: 0 !important;
    }

    .hero {
        padding-top: 1.5rem !important;
    }

    .hero-title {
        font-size: 1.85rem !important;
    }

    .hero-subtitle {
        font-size: 1.05rem !important;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    .package-price {
        font-size: 2.75rem !important;
    }

    /* Full width container */
    .container {
        max-width: 100% !important;
        padding: 0 1rem !important;
    }

    /* Keep 2-column feature grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    /* Full width pricing */
    .pricing-grid {
        max-width: 100% !important;
        padding: 0 !important;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.65rem !important;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    /* Still keep 2-column on smallest screens */
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
}