/* ============================================
   GreenBubble Landing Page CSS
   Aligned with greenbubble.io website design
============================================ */

:root {
    --primary-color: #059669;
    --gb-primary-dark: #047857;
    --gb-primary-light: #ecfdf5;

    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --body-color: #6b7280;
    --heading-color: #111827;
    --white: #ffffff;
}

body {
    font-family: var(--font);
}

/* Navbar */
.ud-header {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.2);
}

/* Hero / Banner */
.ud-page-banner {
    padding-top: 130px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 100%) !important;
    background-image: url(../images/banner/banner-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Feature Section */
.ud-about-wrapper {
    background-color: #ecfdf5 !important;
}

/* Text Colors */
.text-primary {
    color: #059669 !important;
}

/* Primary Buttons */
.btn-primary,
a.btn-primary {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
}

/* Outline Buttons */
.btn-outline-primary {
    border: 2px solid #059669 !important;
    color: #059669 !important;
    border-radius: 12px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: #059669 !important;
    color: #ffffff !important;
}

/* Active Pricing Card */
.ud-single-pricing.active {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border: none;
    padding: 55px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.25);
}

.ud-single-pricing {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.ud-single-pricing:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Links */
a {
    transition: color 0.15s ease;
}

a:hover {
    color: #047857;
}

/* Section Headings */
.ud-section-title span {
    color: #059669;
    font-weight: 700;
}

.ud-section-title h2 {
    color: #111827;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Feature Cards */
.ud-single-feature {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.ud-single-feature:hover {
    border-color: #a7f3d0;
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.08);
}

.ud-single-feature .ud-feature-icon {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 12px;
}

/* Testimonials */
.ud-single-testimonial {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Footer */
.ud-footer {
    background: #111827 !important;
}

.ud-footer a:hover {
    color: #10b981 !important;
}

/* Cards */
.card {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

/* Badges */
.badge.bg-success,
.bg-success {
    background: linear-gradient(135deg, #059669, #047857) !important;
}

/* Forms */
.form-control {
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
}

.form-control:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}