/* ==========================================================================
   ONE VISION INVESTMENTS LLC - LUXURY DESIGN SYSTEM & STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & THEME TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --bg-dark: #070C18;
    --bg-surface: #0E1628;
    --bg-card: rgba(16, 24, 43, 0.75);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    --primary-gold: #D4AF37;
    --primary-gold-light: #F3C623;
    --primary-gold-dark: #A88620;
    --gold-gradient: linear-gradient(135deg, #F5D061 0%, #E6AF2E 50%, #B8860B 100%);
    
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-light: rgba(255, 255, 255, 0.08);
    
    --success: #10B981;
    --shadow-glow: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Layout & Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES (STRICT OVERFLOW CONTROL)
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.25;
    word-wrap: break-word;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

/* Utility Helpers */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.section {
    padding: 96px 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.dark-bg {
    background-color: var(--bg-surface);
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.gold-text { color: var(--primary-gold); }

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    max-width: 100%;
    box-sizing: border-box;
}

/* Section Header */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 48px;
}

/* Grid System */
.grid {
    display: grid;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.grid-2-col { grid-template-columns: repeat(2, 1fr); }
.grid-3-col { grid-template-columns: repeat(3, 1fr); }
.align-center { align-items: center; }

/* --------------------------------------------------------------------------
   3. BUTTONS & CONTROLS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    max-width: 100%;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #070C18;
    box-shadow: var(--shadow-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px -8px rgba(212, 175, 55, 0.5);
    color: #070C18;
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid var(--primary-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--primary-gold-light);
    color: var(--primary-gold-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* --------------------------------------------------------------------------
   4. TOP BAR & NAVIGATION
   -------------------------------------------------------------------------- */
.top-bar {
    background: #03060E;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
    padding: 8px 0;
    color: var(--text-muted);
    width: 100%;
    overflow-x: hidden;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 24px;
}

.top-phone {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Main Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 12, 24, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
    transition: all var(--transition-fast);
    width: 100%;
    overflow-x: hidden;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

#nav-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 1px;
    line-height: 1;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 12, 24, 0.88) 0%, rgba(7, 12, 24, 0.96) 100%);
    z-index: 2;
}

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

.hero-content {
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--primary-gold);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 54px;
    flex-wrap: wrap;
}

/* Stats Bar */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 24px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(16px);
    width: 100%;
    box-sizing: border-box;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-light);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. CASH OFFER ESTIMATOR
   -------------------------------------------------------------------------- */
.estimator-card {
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.estimator-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.progress-step.active {
    opacity: 1;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.progress-step.active .step-num {
    background: var(--gold-gradient);
    color: #070C18;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--border-light);
    margin: 0 16px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step-title {
    font-size: 1.35rem;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.col-full { grid-column: span 2; }
.col-half { grid-column: span 1; }

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.req { color: var(--primary-gold); }

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(7, 12, 24, 0.7);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
    box-sizing: border-box;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.condition-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.condition-card input {
    display: none;
}

.card-box {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.card-box i {
    font-size: 1.75rem;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.card-box h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.card-box p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.condition-card input:checked + .card-box {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.08);
}

.timeline-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.timeline-chip {
    flex: 1;
}

.timeline-chip input { display: none; }

.timeline-chip span {
    display: block;
    padding: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.timeline-chip input:checked + span {
    border-color: var(--primary-gold);
    background: var(--gold-gradient);
    color: #070C18;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

/* Result Box */
.offer-result-box {
    text-align: center;
    padding: 30px;
}

.result-icon {
    font-size: 3.5rem;
    color: var(--success);
    margin-bottom: 16px;
}

.offer-price-range {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-gold-light);
    margin: 20px 0;
    text-shadow: 0 4px 20px rgba(243, 198, 35, 0.25);
    word-break: break-word;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hidden { display: none !important; }

/* --------------------------------------------------------------------------
   7. ABOUT US
   -------------------------------------------------------------------------- */
.about-image-wrapper {
    position: relative;
    max-width: 100%;
}

.image-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.03);
}

.dre-badge-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #070C18;
    border: 1.5px solid var(--primary-gold);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-card);
    max-width: calc(100% - 20px);
    box-sizing: border-box;
}

.dre-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.dre-text {
    display: flex;
    flex-direction: column;
}

.dre-text strong {
    color: var(--primary-gold);
    font-size: 0.95rem;
}

.dre-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.lead-text {
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.body-text {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.phone-link {
    font-weight: 700;
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   8. SERVICES GRID
   -------------------------------------------------------------------------- */
.services-grid {
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
}

.highlight-card {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.service-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-img {
    transform: scale(1.06);
}

.service-icon-floating {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #070C18;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 28px;
    background: var(--primary-gold);
    color: #070C18;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.service-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-bullets {
    list-style: none;
    margin-bottom: 28px;
    margin-top: auto;
}

.service-bullets li {
    font-size: 0.875rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --------------------------------------------------------------------------
   9. RENOVATION SHOWCASE
   -------------------------------------------------------------------------- */
.showcase-card {
    overflow: hidden;
}

.showcase-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.showcase-card:hover .showcase-img {
    transform: scale(1.05);
}

.badge-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(7, 12, 24, 0.85);
    border: 1px solid var(--border-gold);
    color: var(--primary-gold);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
}

.showcase-info {
    padding: 24px;
}

.showcase-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.showcase-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. PROCESS STEPS
   -------------------------------------------------------------------------- */
.process-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.process-step-card {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    transition: transform var(--transition-normal), border-color var(--transition-fast);
}

.process-step-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 12px;
    right: 20px;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.process-arrow {
    color: var(--primary-gold);
    font-size: 1.25rem;
    opacity: 0.6;
}

/* --------------------------------------------------------------------------
   11. CONTACT & CONSULTATION FORM
   -------------------------------------------------------------------------- */
.form-wrapper {
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
}

.form-header {
    margin-bottom: 28px;
}

.form-header h2 {
    font-size: 2rem;
}

.contact-card-box {
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
}

.contact-graphic {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto;
}

.direct-contact-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    text-align: left;
    color: var(--text-light);
    border: 1px solid var(--border-light);
}

.contact-item-link i {
    font-size: 1.25rem;
    color: var(--primary-gold);
}

.contact-item-link strong {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-gold);
}

.success-alert {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid var(--success);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: #A7F3D0;
}

.success-alert i {
    font-size: 1.75rem;
    color: var(--success);
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background: #03060E;
    border-top: 1px solid var(--border-light);
    padding: 80px 0 30px;
    width: 100%;
    overflow-x: hidden;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.dre-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.footer-links-col h4, .footer-contact-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-nav a:hover {
    color: var(--primary-gold);
    transform: translateX(4px);
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    margin-top: 40px;
    padding-top: 24px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #070C18;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS & STRICT NO-OVERFLOW MOBILE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.75rem; }
    .grid-3-col { grid-template-columns: repeat(2, 1fr); }
    .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); margin: 10px 0; }
}

@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; gap: 6px; text-align: center; }
    .top-info { flex-direction: column; gap: 4px; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(7, 12, 24, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 30px;
        border-bottom: 1px solid var(--border-gold);
        transform: translateY(-150%);
        transition: transform var(--transition-normal);
        box-sizing: border-box;
    }
    .nav-menu.active { transform: translateY(0); }
    .mobile-toggle { display: block; }
    
    .grid-2-col, .grid-3-col { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .col-half { grid-column: span 2; }
    
    .hero-title { font-size: 2rem; word-break: break-word; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .hero-cta-group .btn { width: 100%; }
    .hero-stats-grid { grid-template-columns: 1fr; padding: 16px; }
    
    .estimator-card, .form-wrapper, .contact-card-box { padding: 24px 16px; }
    .condition-selector { grid-template-columns: 1fr; }
    .timeline-selector { flex-direction: column; }
    .step-actions { flex-direction: column; gap: 12px; }
    .step-actions .btn { width: 100%; }

    .about-image-wrapper { margin-bottom: 40px; }
    .dre-badge-overlay {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 16px;
        width: 100%;
    }
    .about-cta { flex-direction: column; align-items: stretch; }
    .about-cta .btn { width: 100%; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.75rem; }
    .section-title { font-size: 1.8rem; }
    .offer-price-range { font-size: 2rem; }
}
