/* ============================================
   MRBANKERS - Modern Fintech Design
   Primary Color: #0A2540 (Deep Fintech Blue)
   Secondary Color: #2DA44E (Financial Green)
   Background: #F5F7FA (Light Grey)
   ============================================ */

/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #F5F7FA;
    color: #1F2937;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #0A2540;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }
h5 { font-size: 1.1rem; margin-bottom: 0.5rem; }
h6 { font-size: 1rem; margin-bottom: 0.5rem; }

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    background: #0A2540;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-brand i {
    color: #2DA44E;
    margin-right: 8px;
}

.navbar-toggler {
    border: none;
    color: white;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    font-size: 1.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 4px;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
}

.nav-link:hover {
    color: #2DA44E !important;
    background: rgba(45, 164, 78, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #2DA44E !important;
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    background: #0A2540;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.dropdown-item:hover {
    background: #2DA44E;
    color: white;
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
    }
    .dropdown-menu {
        background: transparent;
        box-shadow: none;
        padding-left: 20px;
    }
    .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
    }
    .dropdown-item:hover {
        background: rgba(45, 164, 78, 0.2);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0A2540 0%, #1a3a5c 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    animation: fadeInUp 0.8s ease;
}

.hero .lead {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero p {
    animation: fadeInUp 1.2s ease;
}

/* ============================================
   CARDS - MODERN DESIGN
   ============================================ */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Rate Cards */
.rate-card {
    text-align: center;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.rate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: #2DA44E;
    transition: left 0.3s ease;
}

.rate-card:hover::before {
    left: 0;
}

.rate-card i {
    font-size: 2.2rem;
    color: #2DA44E;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.rate-card:hover i {
    transform: scale(1.1);
}

.rate-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0A2540;
    margin: 10px 0;
}

.rate-label {
    font-size: 0.8rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.change-up {
    color: #2DA44E;
    font-size: 0.75rem;
    font-weight: 600;
}

.change-down {
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Tool Cards */
.tool-card {
    text-align: center;
    padding: 2rem;
    cursor: pointer;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: all 0.3s;
}

.tool-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.tool-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.tool-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.tool-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.tool-card:hover i {
    transform: scale(1.1);
}

.tool-card h5 {
    color: white;
    margin-bottom: 10px;
}

.tool-card .btn {
    background: white;
    color: #0A2540;
    border-radius: 50px;
    padding: 8px 20px;
    margin-top: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.tool-card .btn:hover {
    transform: scale(1.05);
    background: #0A2540;
    color: white;
}

/* Car Cards */
.car-card {
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    background: white;
    min-width: 280px;
    margin-right: 20px;
}

.car-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.car-card:hover .car-image img {
    transform: scale(1.1);
}

.car-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}

.badge-popular {
    background: #2DA44E;
    color: white;
}

.badge-upcoming {
    background: #f59e0b;
    color: white;
}

.badge-new {
    background: #3b82f6;
    color: white;
}

.car-info {
    padding: 1.25rem;
}

.car-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0A2540;
}

.car-price {
    font-size: 1rem;
    font-weight: 600;
    color: #2DA44E;
    margin-bottom: 0.5rem;
}

.car-price small {
    font-size: 0.7rem;
    font-weight: normal;
    color: #6B7280;
}

.car-rating {
    color: #fbbf24;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.car-rating span {
    color: #6B7280;
    margin-left: 5px;
}

.car-description {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.btn-car {
    background: #0A2540;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.btn-car:hover {
    background: #2DA44E;
    transform: translateY(-2px);
}

/* ============================================
   HORIZONTAL SCROLL
   ============================================ */
.cars-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 15px;
    scrollbar-width: thin;
}

.cars-scroll::-webkit-scrollbar {
    height: 6px;
}

.cars-scroll::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 10px;
}

.cars-scroll::-webkit-scrollbar-thumb {
    background: #0A2540;
    border-radius: 10px;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.blog-table table {
    margin-bottom: 0;
}

.blog-table th {
    background: #0A2540;
    color: white;
    padding: 15px;
    font-weight: 600;
    border: none;
}

.blog-table td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #e5e7eb;
}

.blog-table tr:hover {
    background: #f9fafb;
}

.blog-title {
    color: #0A2540;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-title:hover {
    color: #2DA44E;
}

/* ============================================
   FBR KNOWLEDGE CARDS
   ============================================ */
.fbr-card {
    text-align: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.fbr-card i {
    font-size: 2rem;
    color: #2DA44E;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.fbr-card:hover i {
    transform: scale(1.1);
}

.fbr-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: #2DA44E;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #22863a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 164, 78, 0.3);
}

.btn-outline-primary {
    border: 2px solid #2DA44E;
    color: #2DA44E;
    background: transparent;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: #2DA44E;
    color: white;
}

/* ============================================
   AD SPACE
   ============================================ */
.ad-space {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 2px dashed #9ca3af;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    color: #6B7280;
}

.ad-space small {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.footer {
    background: #0A2540;
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer h5 {
    color: #2DA44E;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    text-decoration: none;
}

.footer-links a:hover {
    color: #2DA44E;
    padding-left: 5px;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #2DA44E;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #2DA44E;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.car-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.car-section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2DA44E;
    border-radius: 3px;
}

.view-all-btn {
    background: transparent;
    border: 2px solid #2DA44E;
    color: #2DA44E;
    padding: 8px 25px;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 600;
}

.view-all-btn:hover {
    background: #2DA44E;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   CALCULATOR PAGE STYLES
   ============================================ */
.calculator-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.result-card {
    background: linear-gradient(135deg, #0A2540 0%, #1a3a5c 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    height: 100%;
}

.result-value {
    font-size: 2rem;
    font-weight: 800;
    color: #2DA44E;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-control, .form-select {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 12px 15px;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: #2DA44E;
    box-shadow: 0 0 0 3px rgba(45, 164, 78, 0.1);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0A2540;
}

/* ============================================
   PROFIT CALCULATOR SPECIFIC STYLES
   ============================================ */
.profit-calculator-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.profit-card {
    background: linear-gradient(135deg, #0A2540 0%, #0d2f4a 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.15);
}

.profit-card .card-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.profit-card .card-header h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.profit-card .card-header h2 i {
    color: #2DA44E;
    margin-right: 10px;
}

.profit-card .card-header p {
    color: rgba(255,255,255,0.6);
    margin: 8px 0 0;
}

.profit-card .card-body {
    padding: 30px;
}

.profit-card .form-group {
    margin-bottom: 20px;
}

.profit-card .form-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.profit-card .form-control,
.profit-card .form-select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.profit-card .form-control:focus,
.profit-card .form-select:focus {
    outline: none;
    border-color: #2DA44E;
    background: rgba(0,0,0,0.5);
}

.profit-card .radio-group {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.profit-card .radio-label {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.profit-card .radio-label input {
    accent-color: #2DA44E;
    width: 18px;
    height: 18px;
}

.profit-card .btn-calculate {
    background: #2DA44E;
    border: none;
    padding: 14px 25px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

.profit-card .btn-calculate:hover {
    background: #22863a;
    transform: translateY(-2px);
}

.profit-card .result-box {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

.profit-card .result-title {
    color: #2DA44E;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.profit-card .result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.profit-card .result-row:last-child {
    border-bottom: none;
}

.profit-card .result-label {
    color: rgba(255,255,255,0.6);
}

.profit-card .result-value {
    color: white;
    font-weight: 700;
}

.profit-card .result-value.highlight {
    color: #2DA44E;
    font-size: 1.3rem;
}

.profit-card .profit-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.profit-card .profit-table th {
    text-align: left;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 0.75rem;
}

.profit-card .profit-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: white;
}

.profit-card .info-note {
    background: rgba(45,164,78,0.1);
    border-left: 3px solid #2DA44E;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.profit-card .warning-note {
    background: rgba(245,158,11,0.1);
    border-left: 3px solid #f59e0b;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
}

.profit-card .ad-space-between {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    border: 1px dashed rgba(255,255,255,0.15);
}

.profit-card .ad-space-between .ad-label {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.profit-card .ad-space-between .ad-content {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

/* ============================================
   FINANCIAL DASHBOARD STYLES
   ============================================ */
.fin-dashboard {
    background: linear-gradient(135deg, #0A2540 0%, #0d2f4a 100%);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.15);
}

.dashboard-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dashboard-header h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.dashboard-header h3 i {
    color: #2DA44E;
    margin-right: 10px;
}

.dashboard-header p {
    color: rgba(255,255,255,0.6);
    margin: 5px 0 0;
    font-size: 0.8rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
}

.stat-card {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stat-card:hover {
    background: rgba(255,255,255,0.08);
}

.stat-title {
    color: #2DA44E;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #2DA44E;
    display: inline-block;
}

.stat-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-label i {
    font-size: 0.75rem;
    color: #2DA44E;
    width: 18px;
}

.stat-value {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.stat-change {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 600;
}

.stat-change.positive {
    background: rgba(45, 164, 78, 0.15);
    color: #2DA44E;
}

.stat-change.negative {
    background: rgba(220, 38, 38, 0.15);
    color: #dc2626;
}

.stat-change.steady {
    background: rgba(107, 114, 128, 0.15);
    color: rgba(255,255,255,0.6);
}

.dashboard-footer {
    padding: 12px 20px;
    background: rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 1100px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* Tablet */
@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero h1 { font-size: 2.2rem; }
    .rate-value { font-size: 1.2rem; }
    .car-section-title { font-size: 1.5rem; }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .rate-value {
        font-size: 1rem;
    }
    
    .rate-label {
        font-size: 0.7rem;
    }
    
    .car-section-title {
        font-size: 1.3rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tool-card {
        padding: 1.5rem;
    }
    
    .tool-card i {
        font-size: 2rem;
    }
    
    .tool-card h5 {
        font-size: 0.9rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
    
    .profit-card .card-body {
        padding: 20px;
    }
    
    .profit-table {
        font-size: 0.7rem;
    }
    
    .profit-table th, .profit-table td {
        padding: 8px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .rate-card {
        padding: 1rem;
    }
    
    .rate-value {
        font-size: 0.9rem;
    }
    
    .car-card {
        min-width: 260px;
    }
    
    .blog-table {
        font-size: 0.85rem;
    }
    
    .blog-table th, .blog-table td {
        padding: 10px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-success-custom {
    color: #2DA44E !important;
}

.bg-primary-custom {
    background: #0A2540 !important;
}

.rounded-20 {
    border-radius: 20px !important;
}

.shadow-custom {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
}

.shadow-custom-hover:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: #2DA44E;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: #2DA44E;
}

.breadcrumb-item.active {
    color: #6B7280;
}

/* ============================================
   ALERTS & BADGES
   ============================================ */
.alert-success {
    background: #d1fae5;
    border: none;
    color: #065f46;
    border-radius: 12px;
}

.badge {
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 500;
}