/* ============================================
   LEAD GENERATION COMPONENTS
   Bold Pixel Theme — Lead Gen Engine
   ============================================ */

.bp-honeypot { position:absolute !important; left:-9999px !important; opacity:0 !important; height:0 !important; width:0 !important; }

/* Hero */
.bp-lead-hero { background: linear-gradient(135deg, #0E121B 0%, #1a1f2e 50%, #0E121B 100%); padding: 100px 0 80px; position: relative; overflow: hidden; }
.bp-lead-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,170,0,0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.bp-lead-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.bp-lead-hero-content { color: #fff; }
.bp-lead-badge { display: inline-block; background: rgba(255,170,0,0.15); color: #FFAA00; padding: 8px 20px; border-radius: 30px; font-size: 14px; font-weight: 600; margin-bottom: 24px; border: 1px solid rgba(255,170,0,0.3); }
.bp-lead-hero-title { font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: #fff; }
.bp-text-gold { color: #FFAA00; }
.bp-lead-hero-subtitle { font-size: 18px; color: #9ca3af; line-height: 1.7; margin-bottom: 28px; max-width: 540px; }
.bp-trust-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 14px; color: #9ca3af; }
.bp-trust-check { color: #FFAA00; font-weight: 700; margin-right: 4px; }
.bp-trust-sep { color: #374151; }

/* Hero Form Card */
.bp-lead-form-card { background: #fff; border-radius: 20px; padding: 36px 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.bp-lead-form-card h3 { font-size: 22px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.bp-lead-form-card > p { font-size: 14px; color: #6b7280; margin-bottom: 24px; }

/* Form Fields */
.bp-field { margin-bottom: 14px; }
.bp-field label { display: block; font-size: 14px; font-weight: 500; color: #374151; margin-bottom: 6px; }
.bp-field input,
.bp-field select,
.bp-field textarea {
    width: 100%; padding: 14px 16px; border: 2px solid #e5e7eb; border-radius: 12px;
    font-size: 15px; font-family: inherit; color: #111827; background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none;
    box-sizing: border-box;
}
.bp-field input:focus,
.bp-field select:focus,
.bp-field textarea:focus { outline: none; border-color: #FFAA00; box-shadow: 0 0 0 3px rgba(255,170,0,0.15); }
.bp-field input::placeholder,
.bp-field textarea::placeholder { color: #9ca3af; }
.bp-field textarea { resize: vertical; min-height: 80px; }
.bp-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Submit Button */
.bp-lead-submit {
    width: 100%; padding: 16px 24px; background: #FFAA00; color: #000; border: none;
    border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer;
    transition: all 0.3s; font-family: inherit;
}
.bp-lead-submit:hover { background: #e69900; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,170,0,0.35); }
.bp-lead-submit:active { transform: translateY(0); }
.bp-lead-submit.is-loading { pointer-events: none; opacity: 0.8; }
.bp-lead-submit.is-loading .bp-submit-text { display: none; }
.bp-lead-submit .bp-submit-loading { display: none; }
.bp-lead-submit.is-loading .bp-submit-loading { display: inline; }
.bp-lead-submit-full { margin-top: 8px; }

/* Form Success */
.bp-form-success { display: none; text-align: center; padding: 32px 16px; }
.bp-form-success.is-visible { display: block; }
.bp-success-icon {
    width: 64px; height: 64px; background: #10b981; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    font-weight: 700; margin: 0 auto 16px;
    animation: bp-pop 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
@keyframes bp-pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.bp-form-success h4 { font-size: 22px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.bp-form-success p { color: #6b7280; font-size: 15px; }
.bp-form-privacy { text-align: center; font-size: 12px; color: #9ca3af; margin-top: 14px; margin-bottom: 0; }
.bp-field.has-error input,
.bp-field.has-error select { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }

/* Stats Counter */
.bp-stats-counter-section { background: #fff; padding: 60px 0; border-bottom: 1px solid #f3f4f6; }
.bp-stats-counter-grid { max-width: 1000px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.bp-stat-block { padding: 16px 8px; }
.bp-stat-number { font-size: clamp(36px, 5vw, 48px); font-weight: 800; color: #FFAA00; line-height: 1; margin-bottom: 8px; }
.bp-counter-suffix { font-size: 0.7em; color: #FFAA00; }
.bp-stat-label { font-size: 14px; color: #6b7280; font-weight: 500; }

/* Home Services */
.bp-home-services-section { padding: 100px 0; background: #f9fafb; }
.bp-home-services-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.bp-section-header { text-align: center; margin-bottom: 56px; }
.bp-section-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: #111827; margin-bottom: 12px; }
.bp-section-header p { font-size: 17px; color: #6b7280; max-width: 500px; margin: 0 auto; }
.bp-services-home-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.bp-service-home-card { background: #fff; padding: 28px 24px; border-radius: 16px; border: 2px solid transparent; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
.bp-service-home-card:hover { border-color: #FFAA00; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.bp-service-home-icon { font-size: 32px; margin-bottom: 14px; }
.bp-service-home-card h3 { font-size: 16px; font-weight: 600; color: #111827; margin-bottom: 8px; }
.bp-service-home-card p { font-size: 13px; color: #6b7280; line-height: 1.6; margin: 0; }
.bp-services-cta { text-align: center; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.bp-btn-primary { display: inline-block; background: #FFAA00; color: #000; padding: 14px 36px; border-radius: 30px; font-weight: 700; font-size: 16px; text-decoration: none; transition: all 0.3s; border: 2px solid #FFAA00; }
.bp-btn-primary:hover { background: #e69900; border-color: #e69900; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,170,0,0.3); color: #000; }
.bp-btn-ghost { display: inline-block; background: transparent; color: #374151; padding: 14px 36px; border-radius: 30px; font-weight: 600; font-size: 16px; text-decoration: none; transition: all 0.3s; border: 2px solid #d1d5db; }
.bp-btn-ghost:hover { border-color: #FFAA00; color: #FFAA00; }

/* Process Section */
.bp-process-section { padding: 100px 0; background: #fff; }
.bp-process-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.bp-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bp-process-card { background: #f9fafb; padding: 32px 24px; border-radius: 16px; text-align: center; border: 2px solid transparent; transition: all 0.3s; }
.bp-process-card:hover { border-color: #FFAA00; transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.bp-process-num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: #FFAA00; color: #000; border-radius: 50%; font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.bp-process-card h3 { font-size: 18px; font-weight: 700; color: #111827; margin-bottom: 12px; }
.bp-process-card p { font-size: 14px; color: #6b7280; line-height: 1.6; margin: 0; }

/* Why Section */
.bp-why-section { padding: 100px 0; background: #f9fafb; }
.bp-why-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; }
.bp-why-content-col h2 { font-size: clamp(28px, 4vw, 36px); font-weight: 700; color: #111827; margin-bottom: 12px; }
.bp-why-intro { font-size: 16px; color: #6b7280; margin-bottom: 32px; line-height: 1.7; }
.bp-why-list-items { list-style: none; padding: 0; margin: 0; }
.bp-why-list-items li { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
.bp-why-list-items li:last-child { border-bottom: none; }
.bp-why-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.bp-why-list-items strong { display: block; font-size: 15px; font-weight: 600; color: #111827; margin-bottom: 2px; }
.bp-why-list-items span { font-size: 14px; color: #6b7280; }
.bp-why-stats-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bp-why-stat-card { background: #fff; padding: 28px 20px; border-radius: 16px; text-align: center; border: 2px solid transparent; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.bp-why-stat-card:hover { border-color: #FFAA00; transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.bp-why-stat-num { font-size: 32px; font-weight: 800; color: #FFAA00; margin-bottom: 6px; }
.bp-why-stat-text { font-size: 13px; color: #6b7280; font-weight: 500; }

/* CTA Form Section */
.bp-cta-form-section { padding: 100px 0; background: linear-gradient(135deg, #0E121B 0%, #1a1f2e 100%); }
.bp-cta-form-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.bp-cta-form-text { color: #fff; }
.bp-cta-form-text h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.bp-cta-form-text > p { font-size: 16px; color: #9ca3af; line-height: 1.7; margin-bottom: 36px; }
.bp-cta-features { margin-bottom: 36px; }
.bp-cta-feature { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.bp-cta-feature-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.bp-cta-feature strong { display: block; color: #fff; font-size: 15px; margin-bottom: 2px; }
.bp-cta-feature span { font-size: 14px; color: #9ca3af; }
.bp-cta-contact-direct { border-top: 1px solid #374151; padding-top: 24px; }
.bp-cta-contact-direct > p { font-size: 14px; color: #9ca3af; margin-bottom: 12px; }
.bp-wa-btn, .bp-phone-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 10px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.3s; margin-right: 10px; margin-bottom: 8px; }
.bp-wa-btn { background: #25D366; color: #fff; }
.bp-wa-btn:hover { background: #1fb855; transform: translateY(-2px); color: #fff; }
.bp-phone-btn { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid #374151; }
.bp-phone-btn:hover { border-color: #FFAA00; color: #FFAA00; }
.bp-cta-form-wrap { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 36px 32px; }
.bp-cta-full-form .bp-field label { color: #d1d5db; }
.bp-cta-full-form .bp-field input, .bp-cta-full-form .bp-field select, .bp-cta-full-form .bp-field textarea { background: rgba(255,255,255,0.06); border-color: #374151; color: #fff; }
.bp-cta-full-form .bp-field input:focus, .bp-cta-full-form .bp-field select:focus, .bp-cta-full-form .bp-field textarea:focus { border-color: #FFAA00; box-shadow: 0 0 0 3px rgba(255,170,0,0.15); }
.bp-cta-full-form .bp-field input::placeholder, .bp-cta-full-form .bp-field textarea::placeholder { color: #6b7280; }
.bp-cta-full-form .bp-field select option { background: #1f2937; color: #fff; }

/* Floating WhatsApp Button */
.bp-floating-wa { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 9990; transition: all 0.3s; text-decoration: none; }
.bp-floating-wa:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.bp-floating-wa::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; background: #25D366; animation: bp-wa-pulse 2s infinite; z-index: -1; }
@keyframes bp-wa-pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.6); opacity: 0; } }
.bp-wa-tooltip { position: absolute; right: 72px; background: #111827; color: #fff; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 500; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.bp-wa-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: #111827; }
.bp-floating-wa:hover .bp-wa-tooltip { opacity: 1; }

/* Exit-Intent Popup */
.bp-exit-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 99999; display: none; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity 0.3s; }
.bp-exit-overlay.is-visible { display: flex; opacity: 1; }
.bp-exit-popup { background: #fff; border-radius: 24px; padding: 48px 40px; max-width: 440px; width: 100%; position: relative; transform: scale(0.9) translateY(20px); transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275); box-shadow: 0 24px 48px rgba(0,0,0,0.2); }
.bp-exit-overlay.is-visible .bp-exit-popup { transform: scale(1) translateY(0); }
.bp-exit-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 28px; color: #9ca3af; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.2s; }
.bp-exit-close:hover { background: #f3f4f6; color: #111827; }
.bp-exit-content { text-align: center; }
.bp-exit-icon { font-size: 48px; margin-bottom: 16px; }
.bp-exit-content h3 { font-size: 24px; font-weight: 700; color: #111827; margin-bottom: 10px; }
.bp-exit-content > p { font-size: 15px; color: #6b7280; line-height: 1.6; margin-bottom: 24px; }
.bp-exit-form .bp-field { margin-bottom: 12px; }
.bp-exit-note { font-size: 12px; color: #9ca3af; margin-top: 12px; margin-bottom: 0; }

/* Sticky Mobile CTA Bar */
.bp-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; padding: 12px 16px; display: none; align-items: center; gap: 10px; z-index: 9980; box-shadow: 0 -4px 16px rgba(0,0,0,0.1); border-top: 1px solid #e5e7eb; transform: translateY(100%); transition: transform 0.3s; }
.bp-sticky-cta.is-visible { transform: translateY(0); }
.bp-sticky-cta-btn { flex: 1; background: #FFAA00; color: #000; padding: 14px 20px; border-radius: 10px; font-weight: 700; font-size: 15px; text-align: center; text-decoration: none; }
.bp-sticky-cta-btn:hover { background: #e69900; color: #000; }
.bp-sticky-wa-btn { width: 48px; height: 48px; background: #25D366; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; text-decoration: none; }

/* ============================================
   RESPONSIVE — LEAD GEN
   ============================================ */
@media (max-width: 1024px) {
    .bp-lead-hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .bp-lead-hero-subtitle { margin-left: auto; margin-right: auto; }
    .bp-trust-row { justify-content: center; }
    .bp-lead-hero-form-wrap { max-width: 440px; margin: 0 auto; width: 100%; }
    .bp-services-home-grid { grid-template-columns: repeat(3, 1fr); }
    .bp-why-inner { grid-template-columns: 1fr; gap: 40px; }
    .bp-why-stats-col { order: -1; }
    .bp-cta-form-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .bp-lead-hero { padding: 80px 0 60px; }
    .bp-lead-hero-title { font-size: 28px; }
    .bp-trust-row { flex-direction: column; gap: 6px; }
    .bp-trust-sep { display: none; }
    .bp-lead-form-card { padding: 28px 24px; }
    .bp-stats-counter-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bp-home-services-section { padding: 60px 0; }
    .bp-services-home-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .bp-service-home-card { padding: 20px 16px; }
    .bp-service-home-icon { font-size: 28px; }
    .bp-service-home-card h3 { font-size: 14px; }
    .bp-service-home-card p { font-size: 12px; }
    .bp-process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bp-why-section, .bp-process-section { padding: 60px 0; }
    .bp-cta-form-section { padding: 60px 0; }
    .bp-cta-form-wrap { padding: 28px 24px; }
    .bp-field-row { grid-template-columns: 1fr; }
    .bp-floating-wa { bottom: 80px; right: 16px; width: 54px; height: 54px; }
    .bp-sticky-cta { display: flex; }
    .bp-exit-popup { padding: 36px 24px; }
}
@media (max-width: 480px) {
    .bp-lead-hero { padding: 60px 0 40px; }
    .bp-lead-badge { font-size: 12px; padding: 6px 14px; }
    .bp-lead-hero-subtitle { font-size: 15px; }
    .bp-stat-number { font-size: 32px; }
    .bp-services-home-grid { grid-template-columns: 1fr; }
    .bp-process-grid { grid-template-columns: 1fr; }
    .bp-why-stat-card { padding: 20px 14px; }
    .bp-why-stat-num { font-size: 26px; }
    .bp-wa-btn, .bp-phone-btn { width: 100%; justify-content: center; margin-right: 0; }
}

/* RTL */
[dir="rtl"] .bp-trust-check { margin-right: 0; margin-left: 4px; }
[dir="rtl"] .bp-floating-wa { right: auto; left: 28px; }
[dir="rtl"] .bp-wa-tooltip { right: auto; left: 72px; }
[dir="rtl"] .bp-wa-tooltip::after { right: auto; left: -6px; border-left-color: transparent; border-right-color: #111827; }
[dir="rtl"] .bp-wa-btn, [dir="rtl"] .bp-phone-btn { margin-right: 0; margin-left: 10px; }
@media (max-width: 768px) { [dir="rtl"] .bp-floating-wa { left: 16px; right: auto; } }
