:root {
    --clr-forest: #1B4332;
    --clr-forest-light: #2D6A4F;
    --clr-sage: #52B788;
    --clr-sage-light: #74C69D;
    --clr-mint: #B7E4C7;
    --clr-cream: #F0F7F4;
    --clr-warm: #F8F9FA;
    --clr-copper: #C17817;
    --clr-copper-light: #D4922A;
    --clr-dark: #1A1A2E;
    --clr-text: #2C3E50;
    --clr-text-light: #5A6C7D;
    --font-display: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.3;
}

/* Navbar */
.navbar-main {
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar-main.scrolled {
    background: rgba(27, 67, 50, 0.97);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar-main .navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}

.navbar-main .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

.navbar-main .nav-link:hover { color: var(--clr-sage-light); }

.btn-nav-cta {
    background: var(--clr-copper);
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-nav-cta:hover {
    background: var(--clr-copper-light);
    color: #fff;
    transform: translateY(-1px);
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-forest) 50%, var(--clr-forest-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 120, 23, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--clr-sage-light);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 650px;
}

.hero-title span {
    color: var(--clr-sage-light);
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 540px;
    margin-bottom: 2rem;
}

/* Search Card */
.search-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.search-card h3 {
    color: var(--clr-forest);
    margin-bottom: 0.5rem;
}

.search-card p {
    color: var(--clr-text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.search-card .form-control,
.search-card .form-select {
    border: 2px solid #e8efe9;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.search-card .form-control:focus,
.search-card .form-select:focus {
    border-color: var(--clr-sage);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

.btn-search {
    background: var(--clr-forest);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s;
}

.btn-search:hover {
    background: var(--clr-forest-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 67, 50, 0.3);
}

.search-secure {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--clr-text-light);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Stats */
.stats-section {
    background: var(--clr-forest);
    padding: 3rem 0;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--clr-sage-light);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.25rem;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header .overline {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-copper);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--clr-forest);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--clr-text-light);
    font-size: 1.05rem;
}

/* About */
.about-section { background: var(--clr-cream); }

.about-highlight {
    background: var(--clr-forest);
    color: #fff;
    border-radius: 16px;
    padding: 2rem;
}

.about-highlight h4 {
    color: var(--clr-sage-light);
    margin-bottom: 0.75rem;
}

.about-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.about-features li i {
    color: var(--clr-sage);
    margin-top: 0.2rem;
}

/* Services */
.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #e8efe9;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 67, 50, 0.1);
    border-color: var(--clr-sage-light);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--clr-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-forest);
    margin-bottom: 1.25rem;
}

.service-card h5 {
    color: var(--clr-forest);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.service-card p {
    color: var(--clr-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* How It Works */
.how-section { background: var(--clr-cream); }

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--clr-forest), var(--clr-sage));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
}

.step-card h5 {
    color: var(--clr-forest);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.step-card p {
    color: var(--clr-text-light);
    font-size: 0.9rem;
}

.step-connector {
    position: absolute;
    top: 32px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--clr-sage-light), var(--clr-sage-light) 8px, transparent 8px, transparent 16px);
}

/* Benefits */
.benefit-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--clr-cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-forest);
    font-size: 1.2rem;
}

.benefit-item h6 {
    font-weight: 700;
    color: var(--clr-forest);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: var(--clr-text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Agent Types */
.agent-types-section { background: var(--clr-forest); }

.agent-type-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.agent-type-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.agent-type-card .icon {
    font-size: 2rem;
    color: var(--clr-sage-light);
    margin-bottom: 1rem;
}

.agent-type-card h5 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.agent-type-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #e8efe9;
}

.testimonial-stars {
    color: var(--clr-copper);
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    color: var(--clr-text);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.25rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    font-weight: 700;
    color: var(--clr-forest);
    font-size: 0.9rem;
}

.testimonial-location {
    color: var(--clr-text-light);
    font-size: 0.8rem;
}

/* Education */
.education-section { background: var(--clr-cream); }

.edu-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    border-left: 4px solid var(--clr-sage);
    margin-bottom: 1.5rem;
}

.edu-card h5 {
    color: var(--clr-forest);
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.edu-card p {
    color: var(--clr-text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ */
.accordion-button {
    font-weight: 600;
    color: var(--clr-forest);
    font-size: 1rem;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    background: var(--clr-cream);
    color: var(--clr-forest);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
    border-color: var(--clr-sage);
}

.accordion-body {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--clr-copper) 0%, #A86310 100%);
    padding: 4rem 0;
}

.btn-cta {
    background: var(--clr-forest);
    color: #fff;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--clr-forest-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Footer */
.footer-section {
    background: var(--clr-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-section h6 {
    color: var(--clr-sage-light);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--clr-sage-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 1rem;
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .step-connector { display: none; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .hero-section { padding-top: 100px; min-height: auto; padding-bottom: 3rem; }
    .search-card { padding: 1.5rem; }
    .section-padding { padding: 3rem 0; }
}

.navbar-toggler { border-color: rgba(255,255,255,0.3); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
