/* Custom CSS for EagleMark Finance */

:root {
    --primary-color: #0f766e;
    --secondary-color: #1d4ed8;
    --accent-color: #f97316;
    --success-color: #16a34a;
    --warning-color: #f59e0b;
    --danger-color: #dc2626;
    --dark-color: #0b1220;
    --light-color: #f5f7fb;
    --white: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --border-color: rgba(15, 23, 42, 0.12);

    --bs-primary: var(--primary-color);
    --bs-primary-rgb: 15, 118, 110;
    --bs-secondary: var(--secondary-color);
    --bs-secondary-rgb: 29, 78, 216;
}


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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
}

/* Custom Bootstrap overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.22);
}

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

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-outline-primary {
    border-color: rgba(15, 118, 110, 0.45);
    color: var(--primary-color);
    border-radius: 0.6rem;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.18);
}

.btn-light {
    border-radius: 0.6rem;
}

.badge.bg-accent {
    background: rgba(249, 115, 22, 0.12) !important;
    color: #9a3412 !important;
    border: 1px solid rgba(249, 115, 22, 0.25);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 1rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: radial-gradient(1100px circle at 10% 10%, rgba(29, 78, 216, 0.40), transparent 55%),
                radial-gradient(900px circle at 90% 15%, rgba(15, 118, 110, 0.35), transparent 55%),
                linear-gradient(135deg, rgba(11, 18, 32, 0.92), rgba(15, 23, 42, 0.88)),
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.35), rgba(11, 18, 32, 0.65));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-stats {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats.bg-white {
    background: rgba(255, 255, 255, 0.92) !important;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-buttons .btn {
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.12);
    border-color: var(--primary-color);
}

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

.service-card h5 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-icon {
    opacity: 0.9;
}

.why-choose-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.rounded-4 {
    border-radius: 1rem !important;
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.text-light {
    color: #f8f9fa !important;
}

/* Footer */
footer {
    background-color: var(--dark-color) !important;
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

footer .contact-info p {
    margin-bottom: 0.75rem;
}

footer .contact-info i {
    width: 20px;
    color: var(--primary-color);
}

.page-hero {
    margin-top: 82px;
    padding: 4.25rem 0;
    background: radial-gradient(900px circle at 15% 15%, rgba(29, 78, 216, 0.35), transparent 55%),
                radial-gradient(900px circle at 85% 15%, rgba(15, 118, 110, 0.30), transparent 55%),
                linear-gradient(135deg, rgba(11, 18, 32, 0.96), rgba(15, 23, 42, 0.92));
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(650px circle at 80% 80%, rgba(249, 115, 22, 0.14), transparent 58%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb {
    margin-bottom: 1rem;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.55);
}

.page-hero .breadcrumb-item a {
    text-decoration: none;
}

.service-icon-large {
    opacity: 0.92;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.section-kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-soft {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
}

.pill-highlight {
    background: var(--primary-color);
    color: white;
    padding: 0.55rem 1rem;
    border-radius: 2rem;
    display: inline-block;
}

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

.icon-bubble-soft {
    width: 60px;
    height: 60px;
    background: rgba(15, 118, 110, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.card-hover-rise {
    transition: all 0.3s ease;
}

.card-hover-rise:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.12);
}

.process-step {
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.back-to-top.btn.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.back-to-top.btn.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

body.page-about .mvv-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

body.page-about .mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.page-about .mvv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.page-about .team-member-card {
    padding: 2rem 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

body.page-about .team-member-card:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

body.page-about .stat-card {
    padding: 2rem 1rem;
}

body.page-about .stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

body.page-about .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

body.page-about .initiative-item {
    display: flex;
    align-items: flex-start;
}

body.page-about .initiative-icon {
    width: 40px;
    height: 40px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1rem;
}

body.page-about .impact-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

body.page-about .impact-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

body.page-about .impact-label {
    font-size: 0.9rem;
    color: #6b7280;
}

body.page-contact .contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

body.page-contact .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

body.page-contact .contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

body.page-contact .hours-table {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

body.page-contact .hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

body.page-contact .hours-row:last-child {
    border-bottom: none;
}

body.page-contact .hours-row:nth-child(even) {
    background: #f8fafc;
}

body.page-contact .day {
    font-weight: 500;
}

body.page-contact .time {
    color: var(--primary-color);
    font-weight: 600;
}

body.page-contact .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

body.page-contact .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(30, 64, 175, 0.25);
}

body.page-privacy .section,
body.page-terms .section {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2rem;
}

body.page-privacy .section:last-child,
body.page-terms .section:last-child {
    border-bottom: none;
}

body.page-privacy .privacy-content h2,
body.page-terms .terms-content h2 {
    color: var(--primary-color);
}

body.page-privacy .privacy-content h4,
body.page-terms .terms-content h4 {
    color: #374151;
}

body.page-privacy .privacy-content ul,
body.page-terms .terms-content ul {
    padding-left: 1.5rem;
}

body.page-privacy .privacy-content li,
body.page-terms .terms-content li {
    margin-bottom: 0.5rem;
}

body.page-privacy .contact-method,
body.page-terms .contact-method {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

body.page-privacy .contact-method h6,
body.page-terms .contact-method h6 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

body.page-privacy .contact-method p,
body.page-terms .contact-method p {
    margin-bottom: 0;
    color: #6b7280;
}

body.page-privacy .sidebar-content,
body.page-terms .sidebar-content {
    position: sticky;
    top: 100px;
}

body.page-subscribe .benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

body.page-subscribe .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.page-subscribe .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.page-subscribe .subscription-form {
    border: 1px solid #e5e7eb;
}

body.page-subscribe .subscription-options .form-check {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

body.page-subscribe .interest-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

body.page-subscribe .interest-options .form-check {
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid #e5e7eb;
    margin: 0;
}

body.page-subscribe .testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

body.page-subscribe .testimonial-content {
    flex-grow: 1;
}

body.page-subscribe .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

body.page-subscribe .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

body.page-subscribe .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(30, 64, 175, 0.25);
}

body.service-personal-banking .service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

body.service-personal-banking .service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-personal-banking .service-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.service-personal-banking .benefit-item {
    display: flex;
    align-items: flex-start;
}

body.service-personal-banking .benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.2rem;
}

body.service-business-banking .service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

body.service-business-banking .service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-business-banking .service-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.service-business-banking .industry-card {
    padding: 2rem 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

body.service-business-banking .industry-card:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

body.service-business-banking .industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

body.service-auto-loans .loan-option-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

body.service-auto-loans .loan-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-auto-loans .loan-option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.service-auto-loans .rate-highlight {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-top: 1rem;
    display: inline-block;
}

body.service-auto-loans .benefit-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

body.service-auto-loans .savings-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

body.service-auto-loans .process-step {
    padding: 2rem 1rem;
}

body.service-auto-loans .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

body.service-credit-cards .credit-card-option {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

body.service-credit-cards .credit-card-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-credit-cards .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.service-credit-cards .card-highlight {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-top: 1rem;
    display: inline-block;
}

body.service-credit-cards .feature-card {
    padding: 2rem 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

body.service-credit-cards .feature-card:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

body.service-credit-cards .feature-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

body.service-credit-cards .process-step {
    padding: 2rem 1rem;
}

body.service-credit-cards .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

body.service-mortgage-loans .loan-type-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

body.service-mortgage-loans .loan-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-mortgage-loans .loan-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.service-mortgage-loans .refinance-item {
    display: flex;
    align-items: flex-start;
}

body.service-mortgage-loans .refinance-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.2rem;
}

body.service-mortgage-loans .process-step {
    padding: 2rem 1rem;
}

body.service-mortgage-loans .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

body.service-mortgage-loans .stat-box {
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
}

body.service-small-business-loans .loan-type-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

body.service-small-business-loans .loan-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-small-business-loans .loan-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.service-small-business-loans .loan-highlight {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-top: 1rem;
    display: inline-block;
}

body.service-small-business-loans .business-use-card {
    padding: 2rem 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

body.service-small-business-loans .business-use-card:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

body.service-small-business-loans .use-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

body.service-small-business-loans .requirement-item {
    display: flex;
    align-items: flex-start;
}

body.service-small-business-loans .requirement-icon {
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.2rem;
}

body.service-small-business-loans .step-item {
    display: flex;
    align-items: center;
}

body.service-small-business-loans .step-number {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}

body.service-personal-loans .use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

body.service-personal-loans .use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-personal-loans .use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.service-personal-loans .rate-table {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

body.service-personal-loans .rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

body.service-personal-loans .rate-row:last-child {
    border-bottom: none;
}

body.service-personal-loans .rate-label {
    font-weight: 500;
    color: #374151;
}

body.service-personal-loans .rate-value {
    font-weight: 600;
    color: var(--primary-color);
}

body.service-personal-loans .calculator-example {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

body.service-personal-loans .detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

body.service-personal-loans .payment-row {
    font-size: 1.1rem;
}

body.service-personal-loans .process-step {
    padding: 2rem 1rem;
}

body.service-personal-loans .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

body.service-investment-management .investment-service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

body.service-investment-management .investment-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-investment-management .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.service-investment-management .approach-step {
    display: flex;
    align-items: flex-start;
}

body.service-investment-management .step-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

body.service-investment-management .step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

body.service-investment-management .investment-option {
    padding: 2rem 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

body.service-investment-management .investment-option:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-investment-management .option-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

body.service-retirement-planning .retirement-account-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

body.service-retirement-planning .retirement-account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-retirement-planning .account-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.service-retirement-planning .contribution-limit {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-top: 1rem;
    display: inline-block;
}

body.service-retirement-planning .strategy-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

body.service-retirement-planning .strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-retirement-planning .strategy-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

body.service-retirement-planning .milestone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

body.service-retirement-planning .milestone-age {
    font-weight: 600;
    color: var(--primary-color);
}

body.service-retirement-planning .milestone-target {
    font-weight: 500;
    color: #374151;
}

body.service-retirement-planning .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

body.service-retirement-planning .stat-label {
    font-size: 0.9rem;
}

body.service-retirement-planning .stat-value {
    font-weight: 600;
    font-size: 1.1rem;
}

body.service-insurance-services .insurance-type-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

body.service-insurance-services .insurance-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-insurance-services .insurance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.service-insurance-services .why-choose-item {
    display: flex;
    align-items: flex-start;
}

body.service-insurance-services .why-choose-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.2rem;
}

body.service-insurance-services .stat-box {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

body.service-insurance-services .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

body.service-insurance-services .stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

body.service-insurance-services .process-step {
    padding: 2rem 1rem;
}

body.service-insurance-services .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

body.service-financial-planning .planning-service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

body.service-financial-planning .planning-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-financial-planning .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.service-financial-planning .process-step {
    padding: 1rem;
}

body.service-financial-planning .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 0.5rem;
}

body.service-financial-planning .goal-item {
    display: flex;
    align-items: flex-start;
}

body.service-financial-planning .goal-icon {
    width: 40px;
    height: 40px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1rem;
}

body.service-financial-planning .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

body.service-financial-planning .stat-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

body.service-financial-planning .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

body.service-wealth-management .wealth-service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

body.service-wealth-management .wealth-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.service-wealth-management .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

body.service-wealth-management .principle-item {
    display: flex;
    align-items: flex-start;
}

body.service-wealth-management .principle-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.2rem;
}

body.service-wealth-management .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

body.service-wealth-management .stat-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

body.service-wealth-management .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

body.service-wealth-management .client-type-card {
    padding: 2rem 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

body.service-wealth-management .client-type-card:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

body.service-wealth-management .client-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

body.service-wealth-management .process-step {
    padding: 1rem;
}

body.service-wealth-management .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 0.5rem;
}
