/*
Theme Name: Mix Home Hub Dark
Theme URI: https://mixhomehub.com
Author: Mix Home Hub
Author URI: https://mixhomehub.com
Description: A premium dark mode theme for cash home buyers with purple accents. Features glassmorphism header, modern cards, and a complete landing page design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mixhomehub-dark
Tags: dark-mode, one-column, custom-menu, featured-images, threaded-comments
*/

/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES - DARK MODE PALETTE
   ============================================ */
:root {
    /* Dark Mode Color Palette */
    --primary: #0a0a0f;
    --primary-dark: #050507;
    --primary-light: #12121a;
    --accent: #a78bfa;
    --accent-hover: #8b5cf6;
    --accent-glow: rgba(167, 139, 250, 0.3);
    --success: #34d399;

    /* Text Colors */
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    /* Backgrounds */
    --bg-dark: #0a0a0f;
    --bg-card: #15151f;
    --bg-card-hover: #1a1a26;
    --bg-elevated: #1e1e2d;
    --bg-alt: #0d0d14;

    /* Borders & Shadows */
    --border: #2d2d3d;
    --border-light: #3d3d4d;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(167, 139, 250, 0.15);

    /* Radius */
    --radius: 12px;
    --radius-lg: 20px;

    /* Legacy compatibility */
    --white: #f1f5f9;
    --light-bg: #0d0d14;
    --text-dark: #f1f5f9;
    --text-light: #94a3b8;
}

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c4b5fd;
}

::selection {
    background: var(--accent);
    color: #ffffff;
}

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

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.lp-header.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.lp-header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

/* Logo */
.lp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.lp-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.lp-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.lp-logo-text span {
    color: var(--accent);
}

/* WordPress Custom Logo */
.lp-logo .custom-logo-link {
    display: flex;
    align-items: center;
}

.lp-logo .custom-logo-link img,
.lp-logo .custom-logo,
.lp-logo img {
    width: auto;
    object-fit: contain;
}

.lp-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Navigation */
.lp-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.lp-nav-links a:hover {
    color: var(--accent);
}

.lp-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.lp-nav-links a:hover::after,
.lp-nav-links a.active::after {
    width: 100%;
}

.lp-nav-links a.active {
    color: var(--accent);
}

/* Header CTA */
.lp-header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lp-header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lp-header-phone:hover {
    color: var(--accent);
}

.lp-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.lp-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
    color: var(--primary);
}

/* Dark/Light Mode Toggle */
.lp-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-card);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lp-mode-toggle:hover {
    border-color: var(--accent);
    transform: scale(1.1);
}

.lp-mode-toggle .mode-icon {
    position: absolute;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Dark mode - show moon, hide sun */
body.color-mode-dark .lp-mode-toggle .mode-dark {
    opacity: 1;
    transform: rotate(0deg);
}

body.color-mode-dark .lp-mode-toggle .mode-light {
    opacity: 0;
    transform: rotate(180deg);
}

/* Light mode - show sun, hide moon */
body.color-mode-light .lp-mode-toggle .mode-dark {
    opacity: 0;
    transform: rotate(-180deg);
}

body.color-mode-light .lp-mode-toggle .mode-light {
    opacity: 1;
    transform: rotate(0deg);
}

/* Light mode overrides via class */
body.color-mode-light {
    --primary: #f8fafc;
    --primary-dark: #e2e8f0;
    --primary-light: #ffffff;
    --bg-dark: #ffffff;
    --bg-card: #f8fafc;
    --bg-card-hover: #f1f5f9;
    --bg-elevated: #ffffff;
    --bg-alt: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-light: #cbd5e1;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body.color-mode-light .lp-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

body.color-mode-light .lp-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

body.color-mode-light .lp-menu-toggle span {
    background: #0f172a;
}

body.color-mode-light .lp-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

body.color-mode-light .lp-btn-primary,
body.color-mode-light .lp-header-btn {
    color: #ffffff;
}

body.color-mode-light .lp-form-submit {
    color: #ffffff;
}

/* Mobile Menu Toggle */
.lp-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.lp-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.lp-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.lp-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.lp-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   LANDING PAGE CONTAINER
   ============================================ */
.lp-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-dark);
}

.lp-section {
    padding: 80px 20px;
}

.lp-section-alt {
    background: var(--bg-alt);
}

.lp-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.lp-section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.lp-section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary) !important;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.lp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.lp-btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.lp-btn-secondary:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

.lp-btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px var(--accent-glow);
}

.lp-btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.lp-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.lp-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lp-hero-content {
    color: var(--text-primary);
    z-index: 1;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.lp-hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.lp-hero-title span {
    background: linear-gradient(to right, var(--accent), #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.lp-hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.6;
}

.lp-hero-bullets {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-bottom: 40px;
}

.lp-hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

.lp-hero-bullets li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

.lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.lp-hero-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lp-hero-phone:hover {
    color: var(--text-primary);
}

/* Hero Form Card */
.lp-hero-form-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.lp-form-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.lp-form-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.lp-form-group {
    margin-bottom: 18px;
}

.lp-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.lp-form-input,
.lp-form-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-elevated);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.lp-form-input:focus,
.lp-form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.lp-form-input::placeholder {
    color: var(--text-muted);
}

.lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.lp-form-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.lp-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.lp-form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.lp-trust {
    padding: 50px 20px;
    background: var(--bg-alt);
}

.lp-trust-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.lp-trust-main {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.lp-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.lp-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.lp-trust-badge-icon {
    font-size: 28px;
}

.lp-trust-badge-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.lp-steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    z-index: 0;
}

.lp-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.lp-step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.lp-step-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.lp-step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.lp-step-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   BENEFITS CARDS
   ============================================ */
.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.lp-benefit {
    background: var(--bg-card);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.lp-benefit:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.lp-benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-glow), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.lp-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.lp-benefit-desc {
    font-size: 15px;
    color: var(--text-muted);
}

/* ============================================
   SITUATIONS GRID
   ============================================ */
.lp-situations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-situation {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
}

.lp-situation:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.lp-situation-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.lp-situation-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lp-testimonial {
    background: var(--bg-card);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid var(--border);
}

.lp-testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.lp-testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lp-testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.lp-testimonial-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.lp-testimonial-location {
    font-size: 14px;
    color: var(--text-muted);
}

.lp-testimonial-stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 2px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.lp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.lp-faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.lp-faq-question {
    width: 100%;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.lp-faq-question:hover {
    background: var(--bg-card-hover);
}

.lp-faq-icon {
    font-size: 24px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.lp-faq-item.active .lp-faq-icon {
    transform: rotate(45deg);
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.lp-faq-item.active .lp-faq-answer {
    max-height: 300px;
}

.lp-faq-answer-content {
    padding: 0 25px 22px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   BOTTOM CTA FORM
   ============================================ */
.lp-bottom-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 20px;
    text-align: center;
}

.lp-bottom-cta-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.lp-bottom-cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.lp-bottom-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border);
}

/* ============================================
   COMPLIANCE SECTION
   ============================================ */
.lp-compliance {
    padding: 30px 20px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}

.lp-compliance-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.7;
}

.lp-compliance-text a {
    color: var(--accent);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.lp-footer {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    color: white;
    padding: 60px 20px 30px;
}

.lp-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.lp-footer-brand {
    max-width: 300px;
}

.lp-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.lp-footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.lp-footer-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.lp-footer-logo-text span {
    color: var(--accent);
}

.lp-footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.lp-footer-social {
    display: flex;
    gap: 12px;
}

.lp-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lp-footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.lp-footer-links h4,
.lp-footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.lp-footer-links h4::after,
.lp-footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

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

.lp-footer-links li {
    margin-bottom: 12px;
}

.lp-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lp-footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.lp-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.lp-footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.lp-footer-contact-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.lp-footer-contact-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
}

.lp-footer-contact-text a:hover {
    color: var(--accent);
}

.lp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.lp-footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.lp-footer-legal {
    display: flex;
    gap: 25px;
}

.lp-footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.lp-footer-legal a:hover {
    color: var(--accent);
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.lp-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    z-index: 999;
    gap: 10px;
    border-top: 1px solid var(--border);
}

.lp-sticky-cta .lp-btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.site-content {
    padding-top: 80px;
    /* Account for fixed header */
}

.page-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-content p {
    margin-bottom: 1.5em;
    color: var(--text-secondary);
}

.page-content h2 {
    color: var(--text-primary);
    margin: 2em 0 1em;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .lp-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-hero-content {
        text-align: center;
    }

    .lp-hero-bullets {
        justify-content: center;
    }

    .lp-hero-cta {
        justify-content: center;
    }

    .lp-steps-grid::before {
        display: none;
    }

    .lp-steps-grid,
    .lp-benefits-grid,
    .lp-situations-grid,
    .lp-testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lp-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        border-top: 1px solid var(--border);
    }

    .lp-nav-links.active {
        display: flex;
    }

    .lp-nav-links li {
        width: 100%;
    }

    .lp-nav-links a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }

    .lp-nav-links a::after {
        display: none;
    }

    .lp-menu-toggle {
        display: flex;
    }

    .lp-header-phone {
        display: none;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .lp-footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .lp-section {
        padding: 60px 15px;
    }

    .lp-steps-grid,
    .lp-benefits-grid,
    .lp-situations-grid,
    .lp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .lp-form-row {
        grid-template-columns: 1fr;
    }

    .lp-hero-form-card {
        padding: 25px;
    }

    .lp-trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .lp-sticky-cta {
        display: flex;
    }

    .lp-container {
        padding-bottom: 80px;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .lp-header-wrapper {
        padding: 12px 15px;
    }

    .lp-logo-text {
        font-size: 18px;
    }

    .lp-logo-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .lp-header-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lp-footer-brand {
        grid-column: span 1;
    }

    .lp-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .lp-footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lp-hero {
        padding: 40px 15px 60px;
    }

    .lp-hero-bullets li {
        font-size: 14px;
    }

    .lp-btn {
        padding: 14px 24px;
        font-size: 16px;
    }
}
/* ============================================
   TYPOGRAPHY UPDATE
   ============================================ */
h1, h2, h3, h4, h5, h6,
.lp-logo-text,
.lp-hero-title,
.lp-section-title,
.lp-benefit-title,
.lp-form-title {
    font-family: 'Outfit', sans-serif;
}

/* ============================================
   COMPARE PAGE ENHANCEMENTS
   ============================================ */
.lp-compare-header-us {
    background: rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.lp-compare-header-us::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent);
}

.lp-compare-row-highlight {
    background: rgba(139, 92, 246, 0.05);
}

.lp-check-icon {
    color: var(--success);
    font-size: 22px;
}

.lp-cross-icon {
    color: #ef4444;
    font-size: 22px;
}

/* ============================================
   TESTIMONIALS ENHANCEMENTS
   ============================================ */
.lp-testimonial-card-enhanced {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lp-testimonial-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.lp-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 15px;
}

/* ============================================
   LEADS PAGE ENHANCEMENTS
   ============================================ */
.lp-property-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.lp-property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.lp-property-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lp-property-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--success);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.lp-property-details {
    padding: 25px;
}

.lp-property-price {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.lp-property-address {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-property-meta {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}


/* ============================================
   MOBILE MENU FIXES
   ============================================ */
.lp-menu-toggle {
    display: none;
}

@media (max-width: 992px) {
    .lp-menu-toggle {
        display: flex;
    }
    .lp-nav-links {
        z-index: 9999;
    }
}


/* ============================================
   MOBILE MENU VISUAL FIX (Visual Hamburger)
   ============================================ */
@media (max-width: 992px) {
    .lp-header-wrapper {
        position: relative; /* Anchor for dropdown */
    }

    .lp-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent; /* No background */
        border: none;
        padding: 0;
        cursor: pointer;
        z-index: 1002;
    }

    /* The Hamburger Lines */
    .lp-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--text-primary); /* Uses theme text color */
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    /* Animation to X */
    .lp-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .lp-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .lp-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .lp-nav-links {
        top: 100%;
        background-color: var(--bg-card);
        border-bottom: 2px solid var(--border);
    }
}


/* ============================================
   GENERIC WPFORMS STYLING (Applies Everywhere)
   ============================================ */
div.wpforms-container-full {
    margin-bottom: 25px;
}

div.wpforms-container-full .wpforms-form button[type=submit] {
    background: linear-gradient(135deg, #066aab, #055a92); /* Matches default button blue */
    color: #ffffff;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 6px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

div.wpforms-container-full .wpforms-form button[type=submit]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 106, 171, 0.4);
}

div.wpforms-container-full .wpforms-form input[type=text],
div.wpforms-container-full .wpforms-form input[type=email],
div.wpforms-container-full .wpforms-form input[type=tel],
div.wpforms-container-full .wpforms-form textarea,
div.wpforms-container-full .wpforms-form select {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 15px;
    color: #1f2937;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

div.wpforms-container-full .wpforms-form input:focus,
div.wpforms-container-full .wpforms-form textarea:focus {
    border-color: #066aab;
    outline: none;
    box-shadow: 0 0 0 3px rgba(6, 106, 171, 0.1);
}

div.wpforms-container-full .wpforms-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    display: block;
}

/* Ensure header is visible on all pages */
body.page .lp-header,
body.single .lp-header,
body.archive .lp-header {
    z-index: 10000;
}


/* ============================================
   MOBILE MENU & HEADER FINAL FIX
   ============================================ */
.lp-header {
    z-index: 99999 !important;
    overflow: visible !important;
}

/* If sticky class is applied by JS */
.lp-header.scrolled {
    z-index: 99999 !important;
}

/* Ensure menu is on top of everything inside header */
.lp-nav-links {
    z-index: 100000 !important;
}

/* Force mobile toggle visible on small screens */
@media (max-width: 992px) {
    .lp-menu-toggle {
        display: flex !important;
        z-index: 100001 !important;
    }
    
    /* Ensure links dropdown is visible */
    .lp-nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-top: 1px solid var(--border);
    }
}


/* ============================================
   GLOBAL FONT & FORM FORCE (Leads Page Fix)
   ============================================ */
input, select, textarea, button {
    font-family: 'Inter', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif !important;
}

/* Enhancing the Leads Form Card to Pop */
.lp-hero-form-card {
    border: 1px solid rgba(139, 92, 246, 0.4) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5) !important;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated)) !important;
}

