/* Modern Texas Homeowners Insurance Landing Page */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Sophisticated Monochrome Palette */
    --primary: #2563EB;
    --primary-light: #3B82F6;
    --primary-dark: #1D4ED8;
    --secondary: #0A0A0A;
    --accent: #2563EB;
    --success: #2563EB;
    --warning: #2563EB;
    --error: #2563EB;
    
    /* Minimal Color Scheme */
    --bg-primary: #000000;
    --bg-secondary: #0A0A0A;
    --bg-tertiary: #1A1A1A;
    --surface: #1A1A1A;
    --surface-light: #2A2A2A;
    --surface-dark: #000000;
    
    /* Sharp Monochrome Grays - All Text White */
    --gray-50: #000000;
    --gray-100: #0A0A0A;
    --gray-200: #1A1A1A;
    --gray-300: #2A2A2A;
    --gray-400: #4A4A4A;
    --gray-500: #6A6A6A;
    --gray-600: #FFFFFF;
    --gray-700: #FFFFFF;
    --gray-800: #FFFFFF;
    --gray-900: #FFFFFF;
    
    /* Sharp Typography */
    --font-family: 'IBM Plex Sans', 'Segoe UI', monospace;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Additional Colors */
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --border-color: #E5E7EB;
    --text-primary: #000000;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Sharp Edges - No Radius */
    --radius-sm: 0;
    --radius: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;
    --radius-2xl: 0;
    --radius-full: 0;
    
    /* Transitions */
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #FFFFFF !important;
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Universal White Text Rules */
*, *::before, *::after {
    color: #FFFFFF !important;
}

/* Specific element overrides to ensure all text is white */
p, span, div, label, small, strong, em, i, b, u, 
a, li, td, th, blockquote, code, pre, 
.text-muted, .text-secondary, .text-dark, .text-body,
.form-label, .form-control, .form-select, .form-text,
.card-title, .card-text, .card-body, .card-header,
.btn, .nav-link, .navbar-nav, .dropdown-item,
.alert, .badge, .breadcrumb, .pagination,

/* Form elements */
.form-control, .form-select, .form-check-label {
    color: #FFFFFF !important;
    background-color: var(--bg-secondary) !important;
    border-color: var(--gray-300) !important;
}

.form-control:focus, .form-select:focus {
    color: #FFFFFF !important;
    background-color: var(--bg-secondary) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25) !important;
}

.form-control::placeholder {
    color: #CCCCCC !important;
}

/* Select dropdown options */
.form-select option {
    color: #FFFFFF !important;
    background-color: var(--bg-secondary) !important;
}

/* Additional contrast fixes */
.lead {
    color: #FFFFFF !important;
}

/* Section-specific overrides */
#bundling {
    background-color: var(--bg-secondary) !important;
}

#bundling * {
    color: #FFFFFF !important;
}

#bundling h2, #bundling h3, #bundling h4, #bundling h5, #bundling p, #bundling li {
    color: #FFFFFF !important;
}

#contact {
    background-color: var(--bg-secondary) !important;
}

#contact * {
    color: #FFFFFF !important;
}

#contact h2, #contact h3, #contact h4, #contact h5, #contact p, #contact li {
    color: #FFFFFF !important;
}

/* Button contrast fixes */
.btn-outline-primary {
    color: #FFFFFF !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    color: #000000 !important;
    background-color: var(--primary) !important;
}

.btn-outline-warning {
    color: #FFFFFF !important;
    border-color: #FFC107 !important;
}

.btn-outline-warning:hover {
    color: #000000 !important;
    background-color: #FFC107 !important;
}

.btn-outline-secondary {
    color: #FFFFFF !important;
    border-color: #CCCCCC !important;
}

.btn-outline-secondary:hover {
    color: #000000 !important;
    background-color: #CCCCCC !important;
}

/* Fix text in circles/icons */
.rounded-circle.p-3 {
    background-color: var(--primary) !important;
    color: #FFFFFF !important;
}

/* Fix any remaining small text */
small, .small {
    color: #CCCCCC !important;
}

/* Input group text */
.input-group-text {
    color: #FFFFFF !important;
    background-color: var(--bg-secondary) !important;
    border-color: var(--gray-300) !important;
}

/* Small text elements */
small, .small, .text-muted {
    color: #CCCCCC !important;
}

/* Override Bootstrap text utilities */
.text-white-50 {
    color: #CCCCCC !important;
}

/* Bootstrap component overrides for contrast */
.bg-light {
    background-color: var(--bg-secondary) !important;
}

.bg-white {
    background-color: var(--bg-secondary) !important;
}

/* Icon contrast fixes */
.text-success {
    color: #FFFFFF !important;
}

.text-warning {
    color: #FFFFFF !important;
}

.text-danger {
    color: #FFFFFF !important;
}

.text-info {
    color: #FFFFFF !important;
}

/* Ensure high contrast for all backgrounds */
.bg-primary, .bg-success, .bg-warning, .bg-danger, .bg-info {
    color: #FFFFFF !important;
}

.bg-primary *, .bg-success *, .bg-warning *, .bg-danger *, .bg-info * {
    color: #FFFFFF !important;
}

/* Calculator and Alert specific overrides */
.calculator-locked-notice, .calculator-locked-notice * {
    color: #FFFFFF !important;
}

.alert-warning, .alert-warning * {
    color: #FFFFFF !important;
    background-color: var(--bg-tertiary) !important;
    border-color: var(--primary) !important;
}

.alert-info, .alert-info * {
    color: #FFFFFF !important;
    background-color: var(--bg-tertiary) !important;
    border-color: var(--primary) !important;
}

.alert-success, .alert-success * {
    color: #FFFFFF !important;
    background-color: var(--bg-tertiary) !important;
    border-color: var(--primary) !important;
}

/* Button text overrides */
.btn-warning, .btn-warning * {
    color: #FFFFFF !important;
}

.btn-outline-warning, .btn-outline-warning * {
    color: #FFFFFF !important;
    border-color: var(--primary) !important;
}

.btn-outline-warning:hover, .btn-outline-warning:hover * {
    color: #FFFFFF !important;
    background-color: var(--primary) !important;
}

/* Card and content overrides */
.card, .card * {
    color: #FFFFFF !important;
    background-color: var(--bg-tertiary) !important;
}

.card-body {
    background-color: var(--bg-tertiary) !important;
}

.glass-card, .insurer-card, .tip-card, .resource-card {
    background-color: var(--bg-tertiary) !important;
    border: 1px solid var(--gray-300) !important;
}

.glass-card *, .insurer-card *, .tip-card *, .resource-card * {
    color: #FFFFFF !important;
}

/* Modal overrides */



/* Ensure primary blue is preserved only for specific elements */
.text-primary {
    color: var(--primary) !important;
}

h4.text-primary, h5.text-primary, h3.text-primary {
    color: var(--primary) !important;
}

/* Logo Styling */
.navbar-brand img {
    max-height: 40px;
    width: auto;
    filter: brightness(1.1);
}

.hero-logo-img {
    max-height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.2) contrast(1.1);
}

@media (max-width: 768px) {
    .hero-logo-img {
        max-height: 60px;
    }
    
    .navbar-brand img {
        max-height: 35px;
    }
}

/* Sharp Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF !important;
    letter-spacing: 0.025em;
    font-family: 'IBM Plex Sans', monospace;
}

.display-1 { font-size: 5rem; font-weight: 800; }
.display-2 { font-size: 4.5rem; font-weight: 800; }
.display-3 { font-size: 4rem; font-weight: 700; }
.display-4 { font-size: 3.5rem; font-weight: 700; }
.display-5 { font-size: 3rem; font-weight: 700; }

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: #FFFFFF !important;
    line-height: 1.75;
}

/* Sharp Navigation */
.navbar {
    background: var(--bg-primary) !important;
    border-bottom: 1px solid var(--gray-300);
    transition: var(--transition-slow);
    padding: var(--space-4) 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-weight: 400;
    color: var(--gray-700) !important;
    padding: var(--space-2) var(--space-4);
    margin: 0;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    border-bottom: 2px solid transparent;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    border-bottom-color: var(--primary);
}

.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    border-bottom-color: var(--primary);
}

/* Sharp Hero Section */
.hero-section {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--gray-300);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 49px,
        var(--gray-200) 50px
    );
    opacity: 0.1;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-section .container {
    position: relative;
    z-index: 5;
}

.hero-section .row {
    position: relative;
    z-index: 6;
}

.hero-section h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--space-8);
}

/* Sharp Buttons */
.btn {
    font-weight: 400;
    padding: var(--space-3) var(--space-6);
    border-radius: 0;
    border: 1px solid var(--gray-300);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: transparent;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--surface);
    color: var(--gray-900);
    border-color: var(--gray-300);
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--gray-900);
    border-color: var(--primary);
}

.btn-secondary {
    background: var(--gray-600);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--gray-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-success {
    background: var(--success);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-light {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-outline-light:hover {
    background: var(--primary);
    color: var(--gray-900);
    border-color: var(--primary);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: 1.125rem;
}

/* Minimal CTA Animation */
.pulse-btn {
    animation: none;
    border: 2px solid var(--gray-300);
}

.pulse-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--bg-primary);
}

/* Sharp Cards */
.card {
    background: var(--surface);
    border: 1px solid var(--gray-300);
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-slow);
    overflow: hidden;
    position: relative;
}

.card:hover {
    border-color: var(--primary);
    background: var(--surface-light);
}

.card-body {
    padding: var(--space-8);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.card-text {
    color: var(--gray-700);
    line-height: 1.7;
}

/* Modern Sections */
section {
    padding: var(--space-20) 0;
}

section:nth-child(even) {
    background: var(--bg-secondary);
}

section:nth-child(odd) {
    background: var(--bg-primary);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.section-title .lead {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Sharp Feature Cards */
.feature-card {
    text-align: left;
    padding: var(--space-8);
    background: var(--surface);
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-slow);
    border: 1px solid var(--gray-300);
}

.feature-card:hover {
    border-color: var(--primary);
    background: var(--surface-light);
}

.feature-icon {
    width: 40px;
    height: 20px;
    background: var(--primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 var(--space-4) 0;
    font-size: 0.75rem;
    color: var(--gray-900);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

/* Modern List Styling */
.modern-list {
    list-style: none;
    padding: 0;
}

.modern-list li {
    display: flex;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-200);
}

.modern-list li:last-child {
    border-bottom: none;
}

.modern-list .check-icon {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-3);
    color: var(--bg-primary);
    font-size: 0.6rem;
    font-weight: 700;
}

/* Sharp Form Styles */
.form-control, .form-select {
    border: 1px solid var(--gray-300);
    border-radius: 0;
    padding: var(--space-3) var(--space-4);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-primary);
    color: white;
    font-family: 'JetBrains Mono', monospace;
}

.input-group-text {
    background: var(--bg-primary);
    color: white;
    border: 1px solid var(--gray-300);
    border-radius: 0;
    font-family: 'JetBrains Mono', monospace;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-2);
}

.form-check-input {
    border-radius: var(--radius);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Sharp Modal */





.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Calculator Section Styling */
#calculator {
    background: var(--bg-primary);
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
}

#calculator .card {
    background: var(--bg-primary);
    border: 1px solid var(--gray-300);
}



/* Modern Footer */
footer {
    background: var(--surface-dark);
    color: var(--gray-600);
    padding: var(--space-16) 0 var(--space-8);
}

footer h5, footer h6 {
    color: white;
    font-weight: 700;
}

footer a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-light);
}

/* Modern Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.125rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .card-body {
        padding: var(--space-6);
    }
    
    .feature-card {
        padding: var(--space-6);
    }
    
    section {
        padding: var(--space-12) 0;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus,
.nav-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Minimal Background Patterns */
.geometric-bg {
    background: var(--bg-secondary);
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
    position: relative;
    z-index: 2;
}

/* Ensure all sections have proper layering */
section {
    position: relative;
    z-index: 2;
}

/* Hero image container styling */
.hero-image-container {
    position: relative;
    z-index: 7;
}

/* Sharp Card Effects */
.glass-card {
    background: var(--surface);
    border: 1px solid var(--gray-300);
}

/* Modern Input Focus States */
.form-control:focus,
.form-select:focus {
    background: var(--surface-light);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Minimal Button Effects */
.btn::before {
    display: none;
}

/* Modern Alert Styling */
.alert {
    border: none;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary);
    background: var(--surface);
    color: var(--gray-700);
}

.alert-info {
    border-left-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.alert-success {
    border-left-color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

/* Enhanced Modal Styling */


/* Sharp Typography */
.text-gradient {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: var(--space-1);
}

/* Loading States */
.btn.loading {
    position: relative;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Minimal Card Effects */
.card::before {
    display: none;
}

/* Quote Comparison Styles */
.quote-form-container {
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.quote-form-container:hover {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.trust-badge {
    padding: var(--space-2) var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Quote Cards */
.card.border-success {
    border-color: var(--success-color) !important;
    border-width: 2px;
    position: relative;
}

.card .badge.bg-success {
    z-index: 10;
}

.price-section .h2 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    letter-spacing: -1px;
}

.coverage-details .row {
    font-size: 0.9rem;
}

.coverage-details strong {
    color: var(--text-primary);
}

.features-section .list-unstyled li {
    padding: var(--space-1) 0;
    border-bottom: 1px solid var(--border-color);
}

.features-section .list-unstyled li:last-child {
    border-bottom: none;
}

/* Trust Indicators Section */
.bg-light {
    background-color: var(--background-secondary) !important;
}

.badge.bg-secondary {
    background-color: var(--gray-300) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color);
    font-weight: 500;
    padding: var(--space-2) var(--space-3);
}

/* Enhanced Form Styles */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control.form-control-lg {
    padding: var(--space-3) var(--space-4);
    font-size: 1.1rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.btn.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
    font-weight: 600;
}

.btn.btn-success:hover {
    background-color: #059669;
    border-color: #059669;
}

/* Property Details Card */
#propertyDetailsView .col-md-3 {
    border-right: 1px solid var(--border-color);
    padding: var(--space-3);
}

#propertyDetailsView .col-md-3:last-child {
    border-right: none;
}

/* Property Editing Form */
#propertyDetailsForm {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--space-4);
    margin-top: var(--space-3);
}

#editPropertyBtn {
    transition: var(--transition);
}

#editPropertyBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Loading Animation */
.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Quote Results Section */
#quote-results {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: var(--space-16) 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .quote-form-container {
        margin: var(--space-4) 0;
    }
    
    .trust-badge {
        margin-bottom: var(--space-2);
        text-align: center;
        display: block;
    }
    
    .price-section .h2 {
        font-size: 1.8rem;
    }
    
    #propertyDetails .col-md-3 {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: var(--space-2);
    }
    
    #propertyDetails .col-md-3:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
}

/* Multi-step Form Styles */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.progress {
    background-color: var(--gray-200);
    border-radius: 0;
}

.progress-bar {
    transition: width 0.4s ease-in-out;
}

/* Form validation styles */
.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.is-valid {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

/* Tooltip customization */
.tooltip-inner {
    max-width: 250px;
    text-align: left;
    font-size: 0.875rem;
}

/* Enhanced form controls */
.form-control-lg:focus,
.form-select-lg:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Placeholder text styling - make it barely visible */
.form-control::placeholder,
.form-select::placeholder {
    color: rgba(108, 117, 125, 0.3) !important;
    opacity: 0.3 !important;
}

.form-control-lg::placeholder {
    color: rgba(108, 117, 125, 0.25) !important;
    opacity: 0.25 !important;
}

.form-select-lg option[value=""] {
    color: rgba(108, 117, 125, 0.3);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Privacy notice styling */
.border.rounded {
    border-color: var(--border-color) !important;
}

/* Button enhancements */
.btn-lg {
    padding: var(--space-3) var(--space-6);
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

/* Step indicators */
#currentStep {
    font-weight: 600;
    color: var(--primary);
}

/* Mobile responsiveness for multi-step form */
@media (max-width: 768px) {
    .form-step h6 {
        font-size: 1.1rem;
        margin-bottom: var(--space-4);
    }
    
    .btn-lg {
        padding: var(--space-2) var(--space-4);
        font-size: 1rem;
    }
    
    .d-flex.gap-2 {
        flex-direction: column;
    }
    
    .d-flex.gap-2 .btn {
        margin-bottom: var(--space-2);
    }
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1040;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

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

.floating-cta button {
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.floating-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Pulse Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Sticky Progress Bar */
.sticky-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1035;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.sticky-progress.show {
    opacity: 1;
}

.sticky-progress .progress {
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.sticky-progress .progress-bar {
    background: linear-gradient(90deg, var(--primary) 0%, #3b82f6 100%);
    transition: width 0.3s ease-in-out;
}

/* Pain Points Icons */
.pain-points-row {
    margin: var(--space-6) 0;
}

.pain-point-item {
    flex: 1;
    min-width: 120px;
    padding: var(--space-2);
    transition: transform 0.2s ease-in-out;
}

.pain-point-item:hover {
    transform: translateY(-2px);
}

.pain-icon {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.pain-point-item:hover .pain-icon {
    transform: scale(1.1);
}

.pain-point-item small {
    font-size: 0.75rem;
    line-height: 1.2;
    opacity: 0.9;
}

/* Micro-copy styling */
.micro-copy {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: var(--space-2) var(--space-4);
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-cta button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .pain-points-row {
        gap: var(--space-2) !important;
        margin: var(--space-4) 0;
    }
    
    .pain-point-item {
        min-width: 90px;
        padding: var(--space-1);
    }
    
    .pain-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .pain-point-item small {
        font-size: 0.7rem;
    }
    
    .micro-copy {
        padding: var(--space-1) var(--space-3);
        font-size: 0.8rem;
    }
}

/* Touch-friendly form improvements */
@media (max-width: 768px) {
    .form-control-lg,
    .form-select-lg {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px;
        min-height: 48px; /* Touch target size */
    }
    
    .btn-lg {
        min-height: 48px;
        padding: 12px 24px;
    }
    
    .form-check-input {
        width: 20px;
        height: 20px;
    }
    
    .form-check-label {
        padding-left: 8px;
        line-height: 1.4;
    }
}