/* CSS Variables */
:root {
    --primary-color: #B70000;
    --primary-dark: #8B0000;
    --primary-light: #CC0000;
    --text-color: #000;
    --light-gray: #F9F9F9;
    --border-radius: 4px;
    --font-family: 'Outfit', sans-serif;

    /* Typography */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height: 1.6;
    --font-size-base: 0.95rem;

    /* Override Bootstrap Primary */
    --bs-primary: #B70000;
    --bs-primary-rgb: 183, 0, 0;
}

* {
    font-family: var(--font-family);
}

body {
    color: var(--text-color);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height);
}

p {
    font-size: var(--font-size-base);
    line-height: var(--line-height);
}

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

html {
    scroll-behavior: smooth;
}

/* ========== Section Spacing ========== */
section {
    padding-top: 50px;
    padding-bottom: 70px;
}

section.cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* ========== Button Classes ========== */
.btn {
    padding: 12px 24px;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #E7000B 0%, #B70000 100%);
    color: #fff;
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(199, 199, 199, 0.30), 0 8px 10px -6px rgba(123, 123, 123, 0.30);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(199, 199, 199, 0.30), 0 8px 10px -6px rgba(123, 123, 123, 0.30);
}

.btn-outline-white {
    background: #FFF;
    border: none;
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
}

.btn-outline-white:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.btn-white {
    background: #FFF;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 12px;
    border: none;
    font-weight: var(--font-weight-bold);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.btn-white:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}


.btn-text small {
    font-size: 0.75rem;
    font-weight: var(--font-weight-normal);
}

/* ========== Header ========== */
.header {
    background-color: #fff;
}

.logo img {
    width: 60px;
}

/* ========== Hero Section ========== */
.hero {
    background-image: url('../land-img/banner-bg.png');
    background-size: cover;
    background-position: top;
    padding: 60px 0 80px;
    border-radius: 20px;
    margin: 0 20px;
    overflow: hidden;
}

.hero .container {
    max-width: 1600px;
}

.hero-content h1 {
    font-size: 70px;
    line-height: 1.2;
    font-weight: var(--font-weight-semibold);
}

.hero-text {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ========== Hero Form ========== */
.form-logo {
    width: 50px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(183, 0, 0, 0.15);
}

/* ========== Stats Section ========== */
.stat-number {
    font-size: 2.5rem;
    line-height: 1.2;
}

/* ========== Flexible Financing Section ========== */
.financing-section {
    background-color: #fff;
}


.badge-label {
    background: rgba(183, 0, 0, 0.10);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.feature-icon i {
    font-size: 1.25rem;
}

.btn-outline-primary {
    background: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 12px;
    font-weight: var(--font-weight-bold);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

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

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

/* ========== Common Section Styles ========== */
.section-title {
    font-size: 2.25rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1rem;
}

/* ========== Services Section ========== */
.service-card {
    background: #fff;
    border: 2px solid #E1E1E1;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-color);
    color: #fff;
}

.service-card:hover .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

.service-card:hover .service-features li {
    color: #fff;
}

.service-card:hover .service-features li i {
    color: #fff !important;
}


.service-card:hover .icon-default {
    display: none;
}

.service-card:hover .icon-white {
    display: block;
}

.icon-white {
    display: none;
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.service-features li i {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.service-card .financeit-img {
    height: 50px;
    border: 1px solid #d70000;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

/* ========== CTA Section ========== */
.cta-section {
    background-image: url('../land-img/cta.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
}

.cta-section p {
    opacity: 0.95;
}

/* ========== Process Section ========== */
.process-steps {
    position: relative;
}

.process-card {
    position: relative;
    padding: 0px 10px;
    transition: all 0.3s ease;
}


.process-icon img {
    max-width: 40px;
}

.process-card:hover .icon-default {
    display: none;
}

.process-card:hover .icon-white {
    display: block;
    margin: 0 auto;
}

.step-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 2px solid #E1E1E1;
    border-radius: 50px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.process-card:hover .step-badge {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.process-card:hover .text-muted {
    color: var(--text-color) !important;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.process-arrow {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
}

.process-steps .col-lg-4 {
    position: relative;
}

/* ========== CTA2 Section ========== */
.cta2-section {
    padding-top: 0;
}

.cta2-box {
    background-image: url('../land-img/cta-bg.png');
    background-size: cover;
    background-position: center;
    padding: 70px 40px;
    border-radius: 20px;
}

/* ========== Testimonials Section ========== */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    width: 45px;
    height: 45px;
    background: rgba(183, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.service-tag {
    background: var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
}

.star-rating i {
    color: #FFC107;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.7;
}

.avatar {
    width: 45px;
    height: 45px;
    background: var(--text-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
}

.google-logo {
    height: 35px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.nav-arrow:hover {
    background: var(--primary-color);
}

.nav-arrow:hover i {
    color: #fff;
}

.btn-google {
    background: #fff;
    border: 2px solid #E1E1E1;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
}

.btn-google:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ========== Financing CTA Section ========== */
.financing-cta-box {
    background-image: url('../land-img/cta-3.png');
    background-size: cover;
    background-position: center;
    padding: 80px 60px;
    border-radius: 20px;
}

.financeit-card {
    border-radius: 16px;
    padding: 25px 40px;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-yellow {
    background: #FFD500;
    color: var(--text-color);
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s ease;
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
}

.btn-yellow:hover {
    background: #E6C000;
    color: var(--text-color);
}

.btn-yellow i {
    font-size: 1.25rem;
}

.financing-cta-section .btn-white {
    border-radius: 10px;
    padding: 15px 25px;
}


/* ========== Contact Section ========== */
.contact-info-card {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 35px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(183, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon i {
    color: #fff;
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-form-card {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 35px;
}

.contact-form-card .form-control {
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 12px 16px;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(183, 0, 0, 0.1);
}

.contact-form-card .btn-primary {
    padding: 14px 24px;
}



/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
}

.footer .jack-footer-logo {
    width: 120px;
}

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

.footer-links li {
    margin-bottom: 12px;
    font-size: var(--font-size-base);
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-links span {
    color: #ccc;
}

.footer-links i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Footer Social Icons */
.footer-social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(183, 0, 0, 0.4);
}

.footer h5 {
    color: white;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

footer .rf-logo {
    width: 150px;
}