:root {
    --primary: #006B3F;
    --primary-dark: #004d2c;
    --primary-light: #008c52;
    --secondary: #D4AF37;
    --secondary-dark: #b8962e;
    --secondary-light: #e0c04a;
    --bg-body: #F5F7FA;
    --bg-white: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bs-primary: #006B3F;
    --bs-primary-rgb: 0, 107, 63;
    --bs-link-color: #006B3F;
    --bs-link-hover-color: #004d2c;
}

/* ===== Bootstrap Theme Overrides ===== */
.bg-primary { background-color: #006B3F !important; }
.btn-primary { --bs-btn-bg: #006B3F; --bs-btn-border-color: #006B3F; --bs-btn-hover-bg: #004d2c; --bs-btn-hover-border-color: #004d2c; --bs-btn-active-bg: #004d2c; --bs-btn-active-border-color: #004d2c; }
.btn-outline-primary { --bs-btn-color: #006B3F; --bs-btn-border-color: #006B3F; --bs-btn-hover-bg: #006B3F; --bs-btn-hover-border-color: #006B3F; --bs-btn-active-bg: #006B3F; --bs-btn-active-border-color: #006B3F; }
.text-primary { color: #006B3F !important; }
.progress-bar { background-color: #006B3F; }
.page-item.active .page-link { background-color: #006B3F; border-color: #006B3F; }
.page-link { color: #006B3F; }
.page-link:hover { color: #004d2c; }
.form-check-input:checked { background-color: #006B3F; border-color: #006B3F; }
.table>:not(caption)>*>* { vertical-align: middle; }
.table thead th { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.3px; color: var(--text-muted); border-bottom-width: 1px; }
.table tbody tr { transition: background 0.15s; }
.table-hover tbody tr:hover { background: rgba(0,107,63,0.03); }

* { box-sizing: border-box; }

body {
    font-family: var(--font-family);
    background: var(--bg-body);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

main { flex: 1; }

/* ===== Navbar ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.navbar-brand { font-weight: 700; }

.navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    font-size: 0.9rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
}

.text-gold { color: var(--secondary) !important; }

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, #006B3F 0%, #005233 40%, #003d22 100%);
    color: white;
    padding: 5rem 0 8rem;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 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.03'%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");
}

.min-vh-60 { min-height: 60vh; }

.hero-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.hero-title { font-size: 2.8rem; line-height: 1.15; }

.hero-subtitle { opacity: 0.88; font-size: 1.15rem; }

.btn-gold {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #1a1a2e;
    border: none;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}

.btn-outline-gold {
    background: transparent;
    color: #fff;
    border: 2px solid var(--secondary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: var(--secondary);
    color: #1a1a2e;
    transform: translateY(-2px);
}

.hero-stats { border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stats .stat-number { display: block; font-size: 1.3rem; font-weight: 700; color: var(--secondary); }
.hero-stats .stat-label { display: block; font-size: 0.75rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; }

.hero-image-card {
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
}

.hero-image-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-image-wrapper { position: relative; display: inline-block; }

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

.z-1 { z-index: 1; position: relative; }

/* ===== Stats Bar ===== */
.stats-bar {
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.stat-item { padding: 0.5rem 0; }

/* ===== Section ===== */
.section-padding { padding: 5rem 0; }

.section-badge {
    display: inline-block;
    background: rgba(0,107,63,0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 { font-size: 2rem; }

/* ===== Service Cards ===== */
.service-card {
    border-radius: var(--radius-md) !important;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg) !important;
}

.service-icon-wrap {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(0,107,63,0.08), rgba(212,175,55,0.08));
    border-radius: var(--radius-md);
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s;
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.service-cta {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.service-card:hover .service-cta { color: var(--secondary); }
.service-cta i { transition: transform 0.2s; }
.service-card:hover .service-cta i { transform: translateX(4px); }

/* ===== Process Cards ===== */
.process-card {
    background: white;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.process-number {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
}

/* ===== Tool Cards ===== */
.tool-card {
    border-radius: var(--radius-md) !important;
    transition: all 0.3s;
    background: white;
}

.tool-card:hover { box-shadow: var(--shadow-md); }

.tool-icon {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,107,63,0.08);
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== Contact Cards ===== */
.contact-card {
    background: white;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 55px; height: 55px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,107,63,0.25);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    font-weight: 500;
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ===== Cards ===== */
.card { border-radius: var(--radius-md) !important; }

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #002b1a 0%, var(--primary-dark) 50%, var(--primary) 100%);
    color: rgba(255,255,255,0.85);
    padding: 4rem 0 1.5rem;
    margin-top: auto;
}

.footer h5 { color: var(--secondary); margin-bottom: 1.2rem; }

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer hr { border-color: rgba(255,255,255,0.1); }

/* ===== Form Elements ===== */
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0,107,63,0.15);
}

.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-color);
    padding: 0.6rem 1rem;
}

.form-control-lg { border-radius: var(--radius-sm); padding: 0.8rem 1.2rem; }

/* ===== Steps Indicator ===== */
.steps-indicator .step-item { text-align: center; padding: 0.5rem; position: relative; }

.steps-indicator .step-item::after {
    content: '';
    position: absolute;
    top: 30px; left: 50%;
    width: 100%; height: 3px;
    background: #e5e7eb;
    z-index: 0;
}

.steps-indicator .step-item:last-child::after { display: none; }

.steps-indicator .step-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; margin: 0 auto 0.5rem;
    position: relative; z-index: 1; font-size: 0.9rem;
}

.steps-indicator .step-item.active .step-circle { background: var(--primary); color: white; }
.steps-indicator .step-item.completed .step-circle { background: var(--secondary); color: white; }
.steps-indicator .step-item.completed::after { background: var(--secondary); }
.steps-indicator .step-label { font-size: 0.78rem; color: #6b7280; font-weight: 500; }
.steps-indicator .step-item.active .step-label { color: var(--primary); font-weight: 600; }

/* ===== Badge ===== */
.badge { font-weight: 500; padding: 0.4em 0.8em; border-radius: 6px; }
.bg-gold { background-color: var(--secondary) !important; }

/* ===== Table ===== */
.table > :not(caption) > * > * { vertical-align: middle; }

/* ===== Alerts ===== */
.alert { border-radius: var(--radius-sm); border: none; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-title { font-size: 2.2rem; }
    .hero-section { padding: 3rem 0 6rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 1.8rem; }
    .hero-section { padding: 2.5rem 0 5rem; min-height: auto; }
    .section-padding { padding: 3rem 0; }
    .hero-stats { justify-content: center; }
    .hero-wave svg { height: 40px; }
}
