/* ==========================================================================
   Inversiones Victoria - Dedicated Landing Page
   Clean, Trustworthy, Migration Investment & Logistics
   Palette: Crimson / Deep Ruby Red (#B31317), Warm Off-White, Charcoal, Gold
   ========================================================================== */

:root {
    --brand-red: #B31317;
    --brand-red-hover: #910D10;
    --brand-red-soft: #FDF2F2;
    --brand-red-glow: rgba(179, 19, 23, 0.22);
    --charcoal: #181B1F;
    --charcoal-light: #2D3139;
    --text-body: #4A505A;
    --text-muted: #717A88;
    --bg-page: #FAF9F7;
    --bg-white: #FFFFFF;
    --border-soft: #E9ECEF;
    --green-wa: #25D366;
    --green-wa-dark: #1EBE5D;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 9999px;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 16px 40px rgba(179, 19, 23, 0.14);
    --transition: all 0.28s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-body);
    background-color: var(--bg-page);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.section-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.brand-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 26px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.nav-links a:hover {
    color: var(--brand-red);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-wa-header {
    background-color: var(--green-wa);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-wa-header:hover {
    background-color: var(--green-wa-dark);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--charcoal);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 70px 0 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF9F7 100%);
    border-bottom: 1px solid var(--border-soft);
}

.hero-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-alert-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--brand-red-soft);
    color: var(--brand-red);
    border: 1px solid rgba(179, 19, 23, 0.15);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-heading {
    font-size: 40px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.highlight-text {
    color: var(--brand-red);
    display: block;
    margin-top: 6px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 28px;
}

.hero-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 34px;
}

.check-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-item i {
    color: var(--brand-red);
    font-size: 16px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.btn-hero-primary {
    background-color: var(--brand-red);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px var(--brand-red-glow);
}

.btn-hero-primary:hover {
    background-color: var(--brand-red-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(179, 19, 23, 0.35);
}

.btn-hero-secondary {
    background-color: #FFFFFF;
    color: var(--charcoal);
    border: 2px solid var(--border-soft);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-secondary:hover {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

.hero-note {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-note i {
    color: #10B981;
}

/* Trust Card on the right of Hero */
.trust-card {
    background: #FFFFFF;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
    position: relative;
}

.card-tag {
    display: inline-block;
    background: #DC2626;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}

.trust-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.states-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.state-chip {
    background: #F4F5F7;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.state-chip i {
    color: var(--brand-red);
    font-size: 12px;
}

.highlight-chip {
    background: var(--brand-red-soft);
    color: var(--brand-red);
    border: 1px dashed var(--brand-red);
}

.route-box {
    background: #FAF9F7;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.route-flag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.route-flag span {
    font-size: 12px;
    font-weight: 700;
    color: var(--charcoal);
}

.mini-flags {
    display: flex;
    gap: 4px;
}

.route-arrow {
    font-size: 20px;
    color: var(--brand-red);
}

.card-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: var(--green-wa);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    padding: 13px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.card-action-btn:hover {
    background-color: var(--green-wa-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ==========================================================================
   Section Title Common
   ========================================================================== */
.section-title-box {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.sub-label {
    display: inline-block;
    color: var(--brand-red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--brand-red-soft);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.section-title-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-title-box p {
    font-size: 16px;
    color: var(--text-muted);
}

/* ==========================================================================
   Problem & Solution Section
   ========================================================================== */
.problem-solution-section {
    padding: 85px 0;
    background: #FFFFFF;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.sol-card {
    background: var(--bg-page);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    transition: var(--transition);
}

.sol-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(179, 19, 23, 0.2);
}

.sol-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.sol-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.sol-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Services List (Clean & Detailed)
   ========================================================================== */
.services-clean {
    padding: 85px 0;
    background: var(--bg-page);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 920px;
    margin: 0 auto;
}

.service-box {
    background: #FFFFFF;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.service-box:hover {
    border-color: var(--brand-red);
    transform: translateX(6px);
}

.s-icon {
    width: 54px;
    height: 54px;
    background: var(--charcoal);
    color: #FFFFFF;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.service-box:hover .s-icon {
    background: var(--brand-red);
}

.s-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.s-info p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.s-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-red);
    background: var(--brand-red-soft);
    padding: 3px 12px;
    border-radius: var(--radius-pill);
}

/* ==========================================================================
   Steps Section
   ========================================================================== */
.steps-section {
    padding: 85px 0;
    background: #FFFFFF;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--bg-page);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    position: relative;
    text-align: center;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--brand-red);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    box-shadow: 0 4px 12px var(--brand-red-glow);
}

.step-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   Direct CTA Section (Personal WhatsApp focus)
   ========================================================================== */
.direct-cta-section {
    padding: 70px 0 90px 0;
    background: var(--bg-page);
}

.cta-box-main {
    background: linear-gradient(135deg, #181B1F 0%, #2A2F37 100%);
    color: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-header-icon {
    width: 72px;
    height: 72px;
    background: var(--green-wa);
    color: #FFFFFF;
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cta-box-main h2 {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cta-sub {
    font-size: 17px;
    color: #CBD5E1;
    max-width: 640px;
    margin: 0 auto 34px auto;
    line-height: 1.6;
}

.cta-big-btn {
    background-color: var(--green-wa);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.cta-big-btn:hover {
    background-color: var(--green-wa-dark);
    transform: translateY(-3px);
    color: #FFFFFF;
}

.cta-phone-alt {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #94A3B8;
}

.cta-phone-alt a {
    color: #FFFFFF;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cta-phone-alt a:hover {
    color: #F87171;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.clean-footer {
    background: #FFFFFF;
    border-top: 1px solid var(--border-soft);
    padding-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 30px;
}

.footer-brand-side {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    height: 44px;
    width: auto;
}

.footer-brand-side h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-red);
}

.footer-brand-side p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-contact-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-contact-links a {
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-links a:hover {
    color: var(--brand-red);
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-soft);
    padding: 18px 0;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    background: #FAF9F7;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--green-wa);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    font-size: 20px;
    font-weight: 700;
    transition: var(--transition);
}

.wa-badge-text {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 700;
}

.floating-wa:hover {
    background-color: var(--green-wa-dark);
    transform: scale(1.04);
    color: #FFFFFF;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .hero-heading {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-soft);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .hero-heading {
        font-size: 28px;
    }
    .hero-description {
        font-size: 16px;
    }
    .service-box {
        flex-direction: column;
        gap: 14px;
    }
    .cta-box-main {
        padding: 40px 20px;
    }
    .cta-box-main h2 {
        font-size: 24px;
    }
    .cta-big-btn {
        width: 100%;
        justify-content: center;
        font-size: 16px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand-side {
        flex-direction: column;
    }
    .wa-badge-text {
        display: none;
    }
    .floating-wa {
        padding: 14px;
        border-radius: 50%;
        font-size: 26px;
    }
}

/* ==========================================================================
   INMOBILIARIA, AUTOS & CALCULADORA PRESTAMOS HONDURAS
   ========================================================================== */
.top-announcement-alt {
    background: #111418;
    color: #E2E8F0;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-announcement-alt .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 24px;
}

.top-announcement-alt i {
    color: #F87171;
}

.top-back-link {
    color: #F87171;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-back-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.highlight-nav-item {
    color: var(--brand-red) !important;
    font-weight: 700 !important;
}

/* Inmobiliaria Hero */
.inmo-hero {
    padding: 65px 0 75px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF9F7 100%);
    border-bottom: 1px solid var(--border-soft);
}

.inmo-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.inmo-hero-text h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.inmo-hero-text p {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 24px;
}

.inmo-quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.inmo-quick-tags span {
    background: #FFFFFF;
    border: 1px solid var(--border-soft);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 6px;
}

.inmo-quick-tags span i {
    color: var(--brand-red);
}

.promo-box {
    background: #FFFFFF;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow-card);
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.promo-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.promo-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.promo-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.promo-points li {
    font-size: 13px;
    color: var(--charcoal);
    line-height: 1.5;
    background: #FAF9F7;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--brand-red);
}

/* Prop & Cars Section */
.prop-section, .cars-section {
    padding: 85px 0;
}

.prop-section {
    background: #FFFFFF;
}

.cars-section {
    background: var(--bg-page);
}

.prop-grid, .cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.prop-card, .car-card {
    background: #FFFFFF;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.prop-card:hover, .car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(179, 19, 23, 0.3);
}

.featured-prop, .featured-car {
    border: 2px solid var(--brand-red);
}

.prop-badge, .car-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--charcoal);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.featured-badge, .featured-tag {
    background: var(--brand-red);
}

.prop-header-icon, .car-icon {
    height: 100px;
    background: linear-gradient(135deg, #FAF9F7 0%, #F1EDE9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--brand-red);
}

.prop-body, .car-card {
    padding: 28px;
}

.prop-card .prop-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prop-body h3, .car-card h3 {
    font-size: 21px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.prop-loc {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 12px;
}

.prop-desc, .car-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.car-sub {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 12px;
}

.prop-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.prop-features span {
    background: #F4F5F7;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 5px;
}

.car-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.car-specs li {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-specs li i {
    color: #10B981;
}

.prop-financing-hint {
    background: var(--brand-red-soft);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: 12px;
    color: var(--charcoal);
    margin-bottom: 20px;
    margin-top: auto;
}

.prop-financing-hint i {
    color: var(--brand-red);
}

.prop-btn, .car-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: var(--brand-red);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    padding: 12px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.prop-btn:hover, .car-btn:hover {
    background-color: var(--brand-red-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--brand-red-glow);
}

/* ==========================================================================
   CALCULATOR MASTER SECTION
   ========================================================================== */
.calculator-master-section {
    padding: 85px 0;
    background: #FFFFFF;
}

.calc-card-container {
    background: #FFFFFF;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
}

.calc-controls {
    padding: 44px;
    background: #FFFFFF;
}

.calc-controls h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 26px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-soft);
}

.program-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.program-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    background: #FAF9F7;
}

.program-radio:hover {
    border-color: var(--brand-red);
    background: #FFFFFF;
}

.program-radio.active {
    border-color: var(--brand-red);
    background: var(--brand-red-soft);
    box-shadow: 0 4px 12px var(--brand-red-glow);
}

.program-radio input[type="radio"] {
    accent-color: var(--brand-red);
    width: 18px;
    height: 18px;
}

.prog-content {
    display: flex;
    flex-direction: column;
}

.prog-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--charcoal);
}

.prog-rate {
    font-size: 12px;
    color: var(--text-muted);
}

.label-with-currency, .label-with-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.currency-toggle {
    display: flex;
    background: #E5E7EB;
    border-radius: var(--radius-pill);
    padding: 2px;
}

.curr-btn {
    background: none;
    border: none;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.curr-btn.active {
    background: #FFFFFF;
    color: var(--brand-red);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.calc-select, .calc-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    background: #FAF9F7;
    transition: var(--transition);
}

.calc-select:focus, .calc-input:focus {
    outline: none;
    border-color: var(--brand-red);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px var(--brand-red-glow);
}

.input-prefix-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 16px;
    font-weight: 800;
    color: var(--brand-red);
}

.input-prefix-wrapper .calc-input {
    padding-left: 42px;
}

.input-suffix {
    position: absolute;
    right: 16px;
    font-weight: 800;
    color: var(--text-muted);
}

.slider-container {
    margin-top: 10px;
}

.calc-slider {
    width: 100%;
    height: 6px;
    border-radius: 4px;
    background: #E5E7EB;
    outline: none;
    accent-color: var(--brand-red);
    cursor: pointer;
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
}

.val-display {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-red);
}

.rate-hint {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    font-style: italic;
}

/* Results Panel */
.calc-results-panel {
    background: linear-gradient(145deg, #181B1F 0%, #22262E 100%);
    color: #FFFFFF;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--border-soft);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #94A3B8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.program-tag-result {
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 800;
}

.monthly-payment-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.m-label {
    font-size: 13px;
    color: #CBD5E1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.m-amount {
    font-size: 42px;
    font-weight: 900;
    color: #4ADE80;
    line-height: 1.15;
    margin: 8px 0;
    letter-spacing: -0.02em;
}

.m-sub {
    font-size: 11px;
    color: #94A3B8;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 26px;
}

.b-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.b-label {
    display: block;
    font-size: 11px;
    color: #94A3B8;
    margin-bottom: 4px;
}

.b-val {
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
}

.smart-recommendation {
    background: rgba(245, 158, 11, 0.12);
    border-left: 4px solid #F59E0B;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 16px;
    display: flex;
    gap: 14px;
    margin-bottom: 26px;
}

.rec-icon {
    font-size: 20px;
    color: #FBBF24;
    margin-top: 2px;
}

.rec-text h4 {
    font-size: 13px;
    color: #FBBF24;
    font-weight: 800;
    margin-bottom: 4px;
}

.rec-text p {
    font-size: 13px;
    color: #E2E8F0;
    line-height: 1.5;
}

.btn-calc-wa {
    width: 100%;
    background-color: var(--green-wa);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
    padding: 15px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.btn-calc-wa:hover {
    background-color: var(--green-wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.calc-cta-note {
    font-size: 11px;
    color: #94A3B8;
    text-align: center;
    margin-top: 10px;
}

.calc-cta-note i {
    color: #10B981;
}

/* ==========================================================================
   BENEFITS GUIDE SECTION
   ========================================================================== */
.benefits-guide-section {
    padding: 85px 0;
    background: var(--bg-page);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.benefit-card {
    background: #FFFFFF;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    box-shadow: var(--shadow-card);
    position: relative;
    display: flex;
    flex-direction: column;
}

.featured-benefit {
    border: 2px solid var(--brand-red);
}

.ben-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.ben-icon {
    width: 56px;
    height: 56px;
    background: #FAF9F7;
    color: var(--brand-red);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.ben-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 18px;
}

.ben-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.ben-list li {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ben-list li i {
    color: #10B981;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ben-highlight-tip {
    background: #FAF9F7;
    border-left: 3px solid var(--brand-red);
    padding: 12px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 12px;
    color: var(--charcoal);
    margin-top: auto;
}

/* Inmo Contact Section */
.inmo-contact-section {
    padding: 75px 0 90px 0;
    background: #FFFFFF;
}

.inmo-contact-box {
    background: linear-gradient(135deg, #181B1F 0%, #2A2F37 100%);
    color: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 55px 36px;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.c-head-icon {
    width: 68px;
    height: 68px;
    background: var(--brand-red);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px auto;
    box-shadow: 0 6px 20px var(--brand-red-glow);
}

.inmo-contact-box h2 {
    font-size: 30px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.inmo-contact-box p {
    font-size: 16px;
    color: #CBD5E1;
    max-width: 640px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-call-btn {
    background: #FFFFFF;
    color: var(--charcoal);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-call-btn:hover {
    background: #F4F5F7;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .inmo-hero-grid {
        grid-template-columns: 1fr;
    }
    .calc-grid {
        grid-template-columns: 1fr;
    }
    .calc-results-panel {
        border-left: none;
        border-top: 1px solid var(--border-soft);
    }
}

/* ==========================================================================
   ENHANCED MOBILE OPTIMIZATIONS (Smartphones & Tablets)
   ========================================================================== */

/* Universal Mobile Base */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

/* Ensure form controls do not zoom in on iOS Safari */
input, select, textarea, button {
    font-size: 16px !important;
}

/* ==========================================================================
   ENHANCED MOBILE RESPONSIVE SYSTEM (Smartphones & Tablets <= 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* Top Announcement Bar on Mobile */
    .top-announcement-alt {
        padding: 7px 0;
        font-size: 11px;
    }
    .top-bar-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 6px !important;
        padding: 0 12px !important;
    }
    .top-bar-info {
        flex-direction: column !important;
        gap: 4px !important;
        align-items: center !important;
        text-align: center !important;
    }
    .top-badge-text {
        font-size: 11px;
        font-weight: 600;
        line-height: 1.35;
    }
    .top-social-contact {
        gap: 12px !important;
    }
    .top-social-contact .email-link {
        display: none !important; /* Hide long email in top bar on small screens to avoid clutter */
    }
    .top-back-link {
        font-size: 11px !important;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.25);
        padding: 4px 12px !important;
        border-radius: var(--radius-pill);
        color: #FFFFFF !important;
        margin-top: 2px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    /* Mobile Header & Controls (Zero Collision Layout) */
    .header-container {
        padding: 8px 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 6px !important;
        position: relative;
    }
    .brand {
        gap: 8px !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }
    .brand-logo {
        height: 36px !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }
    .brand-info {
        min-width: 0 !important;
        overflow: hidden !important;
    }
    .brand-title {
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .brand-badge {
        font-size: 8px !important;
        font-weight: 700 !important;
        letter-spacing: 0.04em !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Right Action Bar on Mobile */
    .nav-cta {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        flex-shrink: 0 !important;
    }
    .toggle-group {
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
    }
    .lang-toggle-btn {
        height: 32px !important;
        padding: 0 7px !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        border-radius: var(--radius-pill) !important;
        gap: 3px !important;
    }
    .lang-toggle-btn i {
        font-size: 11px !important;
    }
    .theme-toggle-btn {
        width: 32px !important;
        height: 32px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        font-size: 12px !important;
    }

    /* WhatsApp Button in Mobile Header: Icon Only (Hides text to prevent squashing) */
    .btn-wa-header {
        width: 32px !important;
        height: 32px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }
    .btn-wa-header span {
        display: none !important;
    }
    .btn-wa-header i {
        font-size: 16px !important;
        margin: 0 !important;
    }

    /* Hamburger Menu Toggle Button */
    .nav-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 20px !important;
        color: var(--charcoal);
        background: none !important;
        border: none !important;
        padding: 0 !important;
        cursor: pointer;
        flex-shrink: 0 !important;
    }

    /* Mobile Drawer Dropdown */
    .nav-links {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #FFFFFF !important;
        border-bottom: 3px solid var(--brand-red) !important;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15) !important;
        flex-direction: column !important;
        padding: 14px 16px !important;
        gap: 8px !important;
        display: none;
        z-index: 1000 !important;
    }
    .nav-links.open {
        display: flex !important;
    }
    .nav-links a {
        font-size: 14px !important;
        font-weight: 700 !important;
        padding: 11px 14px !important;
        border-radius: var(--radius-sm) !important;
        background: #FAF9F7;
        display: block !important;
        width: 100% !important;
        color: var(--charcoal);
    }
    .nav-links a:hover {
        background: #FEE2E2 !important;
        color: var(--brand-red) !important;
    }
    .nav-drawer-wa {
        background: var(--green-wa) !important;
        color: #FFFFFF !important;
        font-weight: 800 !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 4px !important;
    }

    /* General Section Spacing */
    .section-padding, .hero-section, .inmo-hero, .prop-section, 
    .cars-section, .calculator-master-section, .benefits-guide-section,
    .problem-solution-section, .services-clean, .steps-section, 
    .direct-cta-section, .inmo-contact-section {
        padding: 40px 0 !important;
    }
    .section-wrapper, .container {
        padding: 0 16px !important;
    }
    .section-title-box {
        margin-bottom: 26px !important;
    }
    .section-title-box h2 {
        font-size: 23px !important;
        line-height: 1.3 !important;
    }
    .section-title-box p {
        font-size: 13.5px !important;
    }

    /* Hero Section (Import Web) */
    .hero-container {
        padding: 0 16px !important;
        gap: 24px !important;
    }
    .hero-heading {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    .hero-description {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin-bottom: 18px !important;
    }
    .hero-checklist {
        gap: 7px !important;
        margin-bottom: 20px !important;
    }
    .check-item {
        font-size: 12.5px !important;
    }
    .hero-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 13px !important;
        font-size: 14.5px !important;
    }

    /* Trust Card in Hero */
    .trust-card {
        padding: 20px 16px !important;
    }
    .trust-card h3 {
        font-size: 17px !important;
    }
    .trust-card p {
        font-size: 12.5px !important;
        margin-bottom: 14px !important;
    }
    .states-grid {
        gap: 6px !important;
        grid-template-columns: 1fr 1fr !important;
        margin-bottom: 16px !important;
    }
    .state-chip {
        padding: 7px 8px !important;
        font-size: 11.5px !important;
    }
    .route-box {
        padding: 10px !important;
        margin-bottom: 16px !important;
    }
    .card-action-btn {
        padding: 12px !important;
        font-size: 13.5px !important;
    }

    /* Hero Section (Inmobiliaria Web) */
    .inmo-hero {
        padding: 30px 0 40px 0 !important;
    }
    .inmo-hero-text h1 {
        font-size: 24px !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }
    .inmo-hero-text p {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin-bottom: 18px !important;
    }
    .inmo-quick-tags {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 7px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }
    .inmo-quick-tags span {
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 12px !important;
        padding: 8px 12px !important;
        border-radius: var(--radius-sm) !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .inmo-hero-actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
    }
    .inmo-hero-actions a {
        width: 100% !important;
        padding: 13px !important;
        text-align: center !important;
        justify-content: center !important;
        font-size: 14px !important;
    }
    .promo-box {
        padding: 20px 16px !important;
    }
    .promo-box h3 {
        font-size: 18px !important;
    }

    /* Property & Car Grids */
    .prop-grid, .cars-grid, .benefits-grid, .steps-grid, .solution-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .prop-card .prop-body, .car-card {
        padding: 16px !important;
    }
    .prop-body h3, .car-card h3 {
        font-size: 17px !important;
    }
    .prop-header-icon, .car-icon {
        height: 70px !important;
        font-size: 28px !important;
    }
    .prop-features {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }
    .prop-features span {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }
    .prop-btn, .car-btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 12px !important;
        font-size: 13.5px !important;
    }
    .service-box {
        padding: 18px 16px !important;
    }
    .s-info h3 {
        font-size: 17px !important;
    }
    .s-info p {
        font-size: 13.5px !important;
    }

    /* Calculator Master Mobile Adjustments */
    .calc-controls {
        padding: 20px 14px !important;
    }
    .calc-controls h3 {
        font-size: 18px !important;
        margin-bottom: 16px !important;
    }
    .program-selector {
        gap: 8px !important;
    }
    .program-radio {
        padding: 10px 12px !important;
        gap: 8px !important;
    }
    .prog-title {
        font-size: 13px !important;
        font-weight: 700 !important;
    }
    .prog-rate {
        font-size: 11px !important;
    }
    .label-with-currency {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    .currency-toggle {
        width: 100% !important;
        display: flex !important;
    }
    .curr-btn {
        flex: 1 !important;
        text-align: center !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
    }
    .input-prefix-wrapper {
        width: 100% !important;
    }
    .calc-input {
        width: 100% !important;
        font-size: 16px !important;
    }
    .calc-slider {
        height: 8px !important;
    }
    .calc-slider::-webkit-slider-thumb {
        width: 24px !important;
        height: 24px !important;
    }
    .slider-ticks {
        font-size: 10px !important;
    }
    .calc-results-panel {
        padding: 20px 14px !important;
    }
    .results-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    .monthly-payment-card {
        padding: 16px 12px !important;
    }
    .m-label {
        font-size: 11px !important;
    }
    .m-amount {
        font-size: 26px !important;
        word-break: break-all !important;
    }
    .m-sub {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }
    .breakdown-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    .b-item {
        padding: 8px !important;
    }
    .b-label {
        font-size: 10px !important;
    }
    .b-val {
        font-size: 12px !important;
    }
    .smart-recommendation {
        padding: 12px !important;
        gap: 10px !important;
    }
    .rec-icon {
        font-size: 20px !important;
    }
    .rec-text h4 {
        font-size: 12px !important;
    }
    .rec-text p {
        font-size: 11.5px !important;
        line-height: 1.45 !important;
    }
    .btn-calc-wa {
        font-size: 14px !important;
        padding: 13px !important;
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    /* Benefits & Contact */
    .benefit-card {
        padding: 20px 16px !important;
    }
    .benefit-card h3 {
        font-size: 18px !important;
    }
    .inmo-contact-box {
        padding: 28px 16px !important;
    }
    .inmo-contact-box h2 {
        font-size: 21px !important;
    }
    .contact-cta-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .contact-cta-buttons a {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Floating WhatsApp Button on Mobile: Compact Round Circle */
    .floating-wa {
        bottom: 16px !important;
        right: 16px !important;
        padding: 0 !important;
        width: 48px !important;
        height: 48px !important;
        justify-content: center !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45) !important;
        z-index: 999 !important;
    }
    .floating-wa .wa-badge-text {
        display: none !important;
    }
    .floating-wa i {
        font-size: 24px !important;
        margin: 0 !important;
    }
}

/* Small screens <= 400px (Extra Narrow Mobile) */
@media (max-width: 400px) {
    .brand-title {
        font-size: 13.5px !important;
    }
    .brand-logo {
        height: 32px !important;
    }
    .states-grid {
        grid-template-columns: 1fr !important;
    }
    .breakdown-grid {
        grid-template-columns: 1fr !important;
    }
    .hero-heading, .inmo-hero-text h1 {
        font-size: 21px !important;
    }
    .lang-toggle-btn {
        padding: 0 5px !important;
        font-size: 10px !important;
    }
}

/* ==========================================================================
   THEME TOGGLE & LANGUAGE TOGGLE BUTTONS
   ========================================================================== */
.toggle-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle-btn, .lang-toggle-btn {
    background: #FAF9F7;
    border: 1.5px solid var(--border-soft);
    color: var(--charcoal);
    height: 38px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
    padding: 0 12px;
    gap: 6px;
}

.theme-toggle-btn {
    width: 38px;
    padding: 0;
    border-radius: 50%;
}

.theme-toggle-btn:hover, .lang-toggle-btn:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(179, 19, 23, 0.15);
}

.theme-toggle-btn i {
    font-size: 14px;
}

.lang-toggle-btn i {
    color: var(--brand-red);
    font-size: 13px;
}

/* ==========================================================================
   DARK MODE COLOR OVERRIDES & ICON CONTRAST ENHANCEMENTS
   ========================================================================== */
html.dark-theme {
    --charcoal: #F8FAFC;
    --charcoal-light: #E2E8F0;
    --text-body: #CBD5E1;
    --text-muted: #94A3B8;
    --bg-page: #0B0D11;
    --bg-white: #14171D;
    --border-soft: #232833;
    --brand-red-soft: rgba(239, 68, 68, 0.18);
    --brand-red-accent: #F87171;
}

html.dark-theme body {
    background-color: var(--bg-page);
    color: var(--text-body);
}

/* Header & Top Bar */
html.dark-theme .header {
    background: #14171D;
    border-color: #232833;
}

html.dark-theme .top-announcement-alt {
    background: #07090C;
    border-color: #1A1E26;
}

html.dark-theme .top-badge-text i {
    color: #F87171;
}

html.dark-theme .theme-toggle-btn,
html.dark-theme .lang-toggle-btn {
    background: #1B2028;
    border-color: #2B3340;
    color: #F1F5F9;
}

html.dark-theme .theme-toggle-btn:hover,
html.dark-theme .lang-toggle-btn:hover {
    border-color: #F87171;
    color: #F87171;
}

html.dark-theme .lang-toggle-btn i {
    color: #F87171;
}

html.dark-theme .nav-links a {
    color: #E2E8F0;
}

html.dark-theme .nav-links a:hover {
    color: #F87171;
}

/* Hero Sections */
html.dark-theme .hero-section,
html.dark-theme .inmo-hero {
    background: linear-gradient(180deg, #14171D 0%, #0B0D11 100%);
    border-color: #232833;
}

html.dark-theme .hero-alert-pill {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.35);
    color: #FCA5A5;
}

html.dark-theme .hero-alert-pill i {
    color: #F87171;
}

html.dark-theme .check-item i {
    color: #F87171;
}

html.dark-theme .state-chip {
    background: #1B2028;
    color: #E2E8F0;
    border-color: #2A323E;
}

html.dark-theme .state-chip i {
    color: #F87171;
}

html.dark-theme .route-box {
    background: #1B2028;
    border-color: #2A323E;
}

html.dark-theme .route-arrow {
    color: #F87171;
}

html.dark-theme .inmo-quick-tags span {
    background: #1B2028;
    color: #E2E8F0;
    border-color: #2A323E;
}

html.dark-theme .inmo-quick-tags span i {
    color: #F87171;
}

/* Service Boxes & Icons (Fix: Crisp visible icon containers) */
html.dark-theme .service-box {
    background: #14171D;
    border-color: #232833;
}

html.dark-theme .s-icon {
    background: #1B2028;
    color: #F87171;
    border: 1px solid #2B3340;
}

html.dark-theme .service-box:hover .s-icon {
    background: #DC2626;
    color: #FFFFFF;
}

/* Problem & Solution Cards & Icons */
html.dark-theme .sol-card {
    background: #14171D;
    border-color: #232833;
}

html.dark-theme .sol-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

/* Step Cards & Number Badges */
html.dark-theme .step-card {
    background: #14171D;
    border-color: #232833;
}

html.dark-theme .step-number {
    background: #DC2626;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.45);
}

/* Properties & Cars (Fix: Vibrant icons and clean badges) */
html.dark-theme .trust-card,
html.dark-theme .promo-box,
html.dark-theme .prop-card,
html.dark-theme .car-card {
    background: #14171D;
    border-color: #232833;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

html.dark-theme .prop-header-icon,
html.dark-theme .car-icon {
    background: linear-gradient(135deg, #1B2028 0%, #15181E 100%);
    color: #F87171;
}

html.dark-theme .prop-features span {
    background: #1B2028;
    color: #E2E8F0;
    border: 1px solid #2A323E;
}

html.dark-theme .prop-features span i {
    color: #60A5FA;
}

html.dark-theme .car-specs li {
    color: #CBD5E1;
}

html.dark-theme .car-specs li i {
    color: #34D399;
}

html.dark-theme .prop-financing-hint {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #E2E8F0;
}

html.dark-theme .prop-financing-hint i {
    color: #F87171;
}

html.dark-theme .promo-points li {
    background: #1B2028;
    color: #E2E8F0;
    border-color: #2A323E;
}

html.dark-theme .promo-points li i {
    color: #34D399;
}

/* Benefits Section */
html.dark-theme .benefit-card {
    background: #14171D;
    border-color: #232833;
}

html.dark-theme .ben-icon {
    background: #1B2028;
    color: #F87171;
    border: 1px solid #2B3340;
}

html.dark-theme .ben-list li {
    color: #CBD5E1;
}

html.dark-theme .ben-list li i {
    color: #34D399;
}

html.dark-theme .ben-highlight-tip {
    background: #1B2028;
    color: #E2E8F0;
    border-color: #2A323E;
}

/* Calculator Section */
html.dark-theme .calc-card-container,
html.dark-theme .calc-controls {
    background: #14171D;
    border-color: #232833;
}

html.dark-theme .calc-controls h3 {
    border-bottom-color: #232833;
}

html.dark-theme .form-group label i {
    color: #F87171;
}

html.dark-theme .program-radio {
    background: #161A22;
    border-color: #262E3B;
}

html.dark-theme .program-radio.active {
    background: rgba(239, 68, 68, 0.16);
    border-color: #EF4444;
}

html.dark-theme .calc-select,
html.dark-theme .calc-input {
    background: #1A1F27;
    border-color: #2B3340;
    color: #FFFFFF;
}

html.dark-theme .input-prefix {
    color: #F87171;
}

html.dark-theme .currency-toggle {
    background: #232935;
}

html.dark-theme .curr-btn {
    color: #94A3B8;
}

html.dark-theme .curr-btn.active {
    background: #14171D;
    color: #F87171;
}

html.dark-theme .calc-slider {
    background: #2B3340;
}

html.dark-theme .smart-recommendation {
    background: #161A22;
    border: 1px solid #262E3B;
}

html.dark-theme .rec-icon {
    color: #FBBF24;
}

html.dark-theme .rec-text h4 {
    color: #FBBF24;
}

/* Contact & Action Sections */
html.dark-theme .problem-solution-section,
html.dark-theme .prop-section,
html.dark-theme .steps-section,
html.dark-theme .calculator-master-section,
html.dark-theme .inmo-contact-section {
    background: #0B0D11;
}

html.dark-theme .services-clean,
html.dark-theme .cars-section,
html.dark-theme .benefits-guide-section,
html.dark-theme .direct-cta-section {
    background: #101318;
}

html.dark-theme .c-head-icon {
    background: #DC2626;
    color: #FFFFFF;
}

html.dark-theme .btn-hero-secondary,
html.dark-theme .cta-call-btn {
    background: #1A1F27;
    color: #F1F5F9;
    border-color: #2B3340;
}

html.dark-theme .btn-hero-secondary:hover,
html.dark-theme .cta-call-btn:hover {
    background: #242C38;
}

/* Footer & Social Icons */
html.dark-theme .clean-footer {
    background: #0A0C0F;
    border-color: #1E232B;
}

html.dark-theme .footer-bottom-bar {
    background: #06080A;
    border-color: #161A20;
}

html.dark-theme .footer-contact-links a {
    color: #CBD5E1;
}

html.dark-theme .footer-contact-links a:hover {
    color: #F87171;
}

html.dark-theme .footer-contact-links a i.fa-whatsapp {
    color: #25D366;
}
html.dark-theme .footer-contact-links a i.fa-phone {
    color: #60A5FA;
}
html.dark-theme .footer-contact-links a i.fa-envelope {
    color: #F472B6;
}
html.dark-theme .footer-contact-links a i.fa-facebook {
    color: #60A5FA;
}
html.dark-theme .footer-contact-links a i.fa-instagram {
    color: #F472B6;
}

/* Mobile Navigation & Drawer in Dark Mode */
html.dark-theme .nav-toggle {
    color: #F8FAFC !important;
}

html.dark-theme .nav-links {
    background: #14171D !important;
    border-color: #EF4444 !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5) !important;
}

html.dark-theme .nav-links a {
    background: #1B2028 !important;
    color: #F1F5F9 !important;
}

html.dark-theme .nav-links a:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #F87171 !important;
}

html.dark-theme .nav-links .nav-drawer-wa {
    background: var(--green-wa) !important;
    color: #FFFFFF !important;
}



