* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f7fa;
}

/* TOP BAR */
.top-bar {
    background: #0a7c3a;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container {
    width: 90%;
    margin: auto;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 45px;
}
.logo a {
    display: inline-block;
}

.logo img {
    height: 45px;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

/* DESKTOP MENU */
.desktop-menu {
    display: flex;
    gap: 25px;
}

.desktop-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* MENU ICON */
.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* SIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.side-menu.active {
    right: 0;
}

/* OVERLAY (FIXED) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* SIDE MENU LINKS */
.menu-links {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.menu-links a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* BUTTON AREA */
.menu-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-call,
.menu-whatsapp {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
}

.menu-call {
    background: #0a7c3a;
    color: #fff;
}

.menu-whatsapp {
    background: #25D366;
    color: #fff;
}

/* CLOSE BTN */
.close-btn {
    font-size: 20px;
    cursor: pointer;
    align-self: flex-end;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #b00020 0%, #e53935 100%);
    color: #fff;
    position: relative;
    overflow: hidden;

    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 40px 0;
}

/* GLOW */
.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    filter: blur(60px);
}

/* HERO LAYOUT */
.hero-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 750px;
    z-index: 2;
}

/* heading */
.hero-text h1 {
    font-size: 40px;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* buttons */
.hero-buttons {
    margin-bottom: 15px;
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 5px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

/* button styles */
.btn-call {
    background: #fff;
    color: #0b5ed7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-call:hover {
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp svg {
    display: inline-block;
}

/* IMAGE */
.hero-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
}

/* trust */
.trust {
    font-size: 14px;
    opacity: 0.95;
}

/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.disclaimer {
    font-size: 13px;
    color: #aaa;
    margin-top: 10px;
}

/* ================= MOBILE ================= */
@media(max-width:768px) {

    .desktop-menu {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .hero {
        min-height: calc(100vh - 90px);
        padding: 20px 0;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 13px;
    }

    .hero-buttons a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero-img img {
        max-width: 240px;
        margin-top: 10px;
    }

    .trust {
        font-size: 12px;
    }

}



.seo-footer {
    background: #0f172a;
    color: #fff;
    padding: 40px 20px 10px;
    font-family: Arial, sans-serif;
}

/* ================= MAIN 3 COLUMN LAYOUT ================= */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

/* ================= EACH BOX ================= */
.footer-box {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

/* ================= HEADING ================= */
.footer-box h3 {
    margin-bottom: 15px;
    color: #22c55e;
    font-size: 18px;
}

/* ================= TEXT ================= */
.footer-box p,
.footer-box a {
    color: #ddd;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin: 6px 0;
    line-height: 1.6;
}

/* ================= LINK HOVER ================= */
.footer-box a:hover {
    color: #22c55e;
}

/* ================= BOTTOM COPYRIGHT FULL WIDTH ================= */
.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding: 15px 10px;
    border-top: 1px solid #334155;
    font-size: 13px;
    color: #94a3b8;
}

/* ================= OPTIONAL CLEAN STYLE ================= */
.footer-box strong {
    color: #22c55e;
}












.premium-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
}

.premium-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
}

.premium-subtitle {
    color: #cbd5f5;
    max-width: 700px;
    margin: auto;
}

/* Card */
.premium-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #6366f1;
}



/* Step Badge */
.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
}

/* CTA */
.premium-cta h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.premium-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.premium-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}
.hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.6s ease;
}

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

.foreclosure-details-section {
    background: radial-gradient(circle at top left, #1e293b, #020617);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Glow effect */
.foreclosure-details-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #6366f1;
    filter: blur(120px);
    top: -100px;
    left: -100px;
    opacity: 0.3;
}

.content-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-box p {
    color: #83888f;
    line-height: 1.7;
    margin-bottom: 15px;
}



/* Cards container */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual card */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: #6366f1;
}

/* Card text */
.info-card h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card ul {
    padding-left: 18px;
}

.info-card ul li {
    margin-bottom: 6px;
    color: #cbd5e1;
}












/* =========================
   PROCESS SECTION
========================= */
.foreclosure-process-section {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 80px 0;
}

/* Heading */
.section-heading {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-subheading {
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    font-size: 16px;
}

/* Card */
.process-card {
    border-radius: 16px;
    position: relative;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 10px;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Icon */
.icon-circle {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Step badge */
.step-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    background: #e0e7ff;
    color: #3730a3;
    padding: 4px 10px;
    border-radius: 20px;
}

/* =========================
   COMPARISON SECTION
========================= */
.comparison-section {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 80px 0;
}

/* Table */
.comparison-table {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.comparison-table thead {
    background: #2563eb;
    color: #ffffff;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    vertical-align: middle;
}

/* Good / Bad */
.good {
    color: #16a34a;
    font-weight: 500;
}

.bad {
    color: #dc2626;
    font-weight: 500;
}

/* Content Box */
.content-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* =========================
   COMMON BUTTON (FIXED)
========================= */
.call-btn {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
    .section-heading {
        font-size: 26px;
    }

    .section-subheading {
        font-size: 14px;
    }

    .process-card {
        padding: 15px;
    }
}









/* SECTION BACKGROUND */
.foreclosure-details-section {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* LEFT BOX */
.premium-content-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* BADGE */
.premium-badge {
    background: #2563eb;
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
}

/* HEADING */
.premium-heading {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

/* TEXT */
.premium-text {
    color: #475569;
    font-size: 15px;
    margin-bottom: 15px;
}

/* HIGHLIGHT BOX */
.highlight-box {
    display: flex;
    gap: 10px;
    background: #eff6ff;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    color: #1e3a8a;
}

.highlight-box i {
    color: #2563eb;
    font-size: 18px;
}

/* BUTTON */
.premium-call-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.premium-call-btn:hover {
    transform: scale(1.05);
    color: #fff;
}

/* RIGHT CARDS */
.premium-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

/* ICON */
.icon-box {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
}

/* LIST */
.premium-card ul {
    padding-left: 18px;
    margin: 0;
}

.premium-card ul li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .premium-heading {
        font-size: 24px;
    }

    .premium-content-box {
        padding: 25px;
    }
}


/* SECTION BG */
.seo-content-section {
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

/* BADGE */
.seo-badge {
    background: #1d4ed8;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

/* HEADING */
.seo-heading {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
}

/* SUBTEXT */
.seo-subheading {
    max-width: 750px;
    margin: auto;
    color: #64748b;
}

/* CONTENT BOX */
.seo-content-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* TEXT */
.seo-content-box p {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* HIGHLIGHT */
.seo-highlight {
    display: flex;
    gap: 10px;
    background: #eff6ff;
    padding: 15px;
    border-radius: 10px;
    color: #1e3a8a;
}

.seo-highlight i {
    color: #2563eb;
}

/* BUTTON */
.seo-call-btn {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.seo-call-btn:hover {
    transform: scale(1.05);
    color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
    .seo-heading {
        font-size: 24px;
    }

    .seo-content-box {
        padding: 25px;
    }
}


.faq-section {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.faq-heading {
    font-size: 32px;
    font-weight: 700;
}

.faq-badge {
    background: #2563eb;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
}

.premium-accordion .accordion-item {
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: #2563eb;
    color: #fff;
}














.premium-content-section {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* Heading */
.premium-heading {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
}

.premium-subheading {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

/* Content Box */
.premium-content-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
}

/* Highlight */
.premium-highlight {
    background: #eff6ff;
    padding: 15px;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
}

/* Grid */
.premium-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Cards */
.premium-info-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.premium-info-card:hover {
    transform: translateY(-8px);
}

/* Icons */
.premium-info-card i {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 10px;
}

/* Button */
.premium-btn {
    background: #2563eb;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.premium-btn:hover {
    background: #1d4ed8;
}


.advanced-foreclosure-section {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.sub-title {
    color: #64748b;
    max-width: 750px;
    margin: auto;
}

/* Content */
.content-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

.content-card h2,
.content-card h3 {
    margin-top: 25px;
    font-weight: 600;
}

/* Highlight */
.highlight-box {
    background: #eff6ff;
    padding: 15px;
    border-left: 4px solid #2563eb;
    margin-top: 20px;
    border-radius: 8px;
}

/* Sidebar */
.sidebar-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-card h5 {
    margin-bottom: 15px;
}

.sidebar-card ul {
    padding-left: 18px;
}

.sidebar-card li {
    margin-bottom: 10px;
}



.decision-section {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
}

/* Heading */
.decision-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
}

.decision-subtitle {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

/* Content */
.decision-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.decision-list {
    padding-left: 18px;
    margin-top: 10px;
}

.decision-list li {
    margin-bottom: 8px;
}

/* Good / Bad */
.decision-list.good li {
    color: #16a34a;
}

.decision-list.bad li {
    color: #dc2626;
}

/* Right Box */
.decision-box {
    background: #0f172a;
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.check-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    font-size: 14px;
}

.decision-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
}

/* Button */
.decision-btn {
    background: #2563eb;
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
}

.decision-btn:hover {
    background: #1d4ed8;
}


.contact-section {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* Heading */
.contact-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
}

.contact-subtitle {
    color: #64748b;
}

/* Cards */
.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

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

.contact-icon {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 10px;
}

.contact-card a {
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

/* Form */
.form-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-control {
    border-radius: 10px;
    padding: 12px;
}

.submit-btn {
    background: #2563eb;
    color: #fff;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
}

.submit-btn:hover {
    background: #1d4ed8;
}

/* Map */
.map-box {
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}