:root {
    --primary-blue: #0046be;
    --cta-red: #e31837;
    --light-grey: #f8f9fa;
    --border-grey: #dee2e6;
    --text-dark: #212529;
    --text-secondary: #6c757d;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.fw-extra-bold {
    font-weight: 800;
}

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

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

/* Make icons white inside bg-primary containers */

.bg-primary i::before {
    color: white;
}

/* Make icons blue inside bg-white containers */
.bg-white i::before {
    color: var(--primary-blue);
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #003694;
    border-color: #003694;
}

.btn-cta {
    background-color: var(--cta-red);
    border-color: var(--cta-red);
    color: white;
}

.btn-cta:hover {
    background-color: #c4122d;
    border-color: #c4122d;
    color: white;
}

.navbar-light .navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

.hero-section {
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.brightness-0 { filter: brightness(0); }
.invert { filter: invert(1); }
.logo-white { filter: brightness(0) invert(1); }

.grayscale-logo {
    transition: all 0.3s ease;
    max-height: 100px;
    width: auto;
}
.grayscale-logo:hover {
    opacity: 1;
}

.brand-logos .col-6 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow-subtle {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.bg-dark-blue {
    background-color: #002d7a !important;
}

.btn-white {
    background-color: white;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: var(--primary-blue);
    color: white !important;
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}

.section-padding {
    padding: 100px 0;
}

.alternate-bg {
    background-color: #fcfcfc;
}

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

.value-prop-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.size-card {
    background-color: white;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-grey);
}

.deal-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--cta-red);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

.financing-section {
    background: linear-gradient(rgba(0, 70, 190, 0.9), rgba(0, 70, 190, 0.9)), url('/assets/img/financing-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.map-container {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sticky-mobile-bar {
    z-index: 1030;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    body {
        padding-bottom: 60px; /* Space for sticky bar */
    }
}

.rounded-circle {
    border-radius: 50% !important;
    width: 50px;
    height: 50px;
  }