/* =========================================================================
   LP LAUNDRY - V3 DESIGN SYSTEM (Globalized)
   =========================================================================
   This file contains the standardized UI components and responsive logic
   used across all high-conversion location layouts.
   ========================================================================= */

:root {
    --v3-primary-blue: #2563eb;
    --v3-slate-900: #0f172a;
    --v3-slate-800: #1e293b;
    --v3-slate-700: #334155;
    --v3-slate-600: #475569;
    --v3-slate-500: #64748b;
    --v3-slate-400: #94a3b8;
    --v3-slate-300: #cbd5e1;
    --v3-slate-200: #e2e8f0;
    --v3-slate-100: #f1f5f9;
    --v3-slate-50: #f8fafc;
    --v3-shadow-xl: 0 40px 100px -20px rgba(16, 24, 40, 0.15);
    --v3-border-radius-lg: 1.5rem;
    --v3-border-radius-xl: 2.5rem;
}

/* --- [1] CONVERSION CARD --- */
.v3-conversion-card { 
    background: white; 
    border-radius: var(--v3-border-radius-xl); 
    overflow: hidden; 
    box-shadow: var(--v3-shadow-xl); 
    border: 1px solid var(--v3-slate-200); 
    text-align: left;
}

.v3-cta-info { 
    padding: 4rem; 
    display: flex; 
    align-items: center; 
}

.v3-cta-info-content { max-width: 400px; }

.v3-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    padding: 0.5rem 1rem; 
    border-radius: 50px; 
    font-size: 0.75rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.v3-trust-list { list-style: none; padding: 0; margin: 0; }
.v3-trust-list li { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    color: white; 
    margin-bottom: 1.25rem; 
    font-weight: 700; 
    font-size: 1rem; 
}
.v3-trust-list i { width: 22px; height: 22px; color: rgba(255,255,255,0.7); }

.v3-phone-link { 
    font-size: 2.5rem; 
    font-weight: 900; 
    color: white; 
    text-decoration: none; 
    display: block; 
    letter-spacing: -1.5px; 
}
.v3-phone-link:hover { opacity: 0.9; }

.v3-cta-form-wrapper { padding: 4rem; background: #ffffff; }

.v3-form-label { 
    display: block; 
    font-weight: 800; 
    font-size: 0.8rem; 
    color: var(--v3-slate-700); 
    margin-bottom: 0.4rem; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.v3-form-input, .v3-form-select, .v3-form-textarea { 
    width: 100%; 
    padding: 0.85rem; 
    border-radius: 10px; 
    border: 1px solid var(--v3-slate-300); 
    font-size: 0.95rem; 
    color: var(--v3-slate-900); 
    transition: 0.2s; 
    font-weight: 600;
}

.v3-form-input:focus, .v3-form-select:focus, .v3-form-textarea:focus { 
    outline: none; 
    border-color: var(--v3-primary-blue); 
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); 
}

.v3-form-disclaimer { 
    font-size: 0.8rem; 
    color: var(--v3-slate-500); 
    margin-bottom: 1.5rem; 
    line-height: 1.5; 
    font-weight: 500;
}

.v3-form-disclaimer a { 
    color: var(--v3-primary-blue); 
    text-decoration: none; 
    font-weight: 700; 
}

.v3-form-submit { 
    width: 100%; 
    padding: 1.25rem; 
    border-radius: 12px; 
    color: white; 
    border: none; 
    font-weight: 900; 
    font-size: 1rem; 
    transition: 0.3s; 
    cursor: pointer; 
}

.v3-form-submit:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}

.v3-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.v3-success-msg { text-align: center; padding: 2rem 0; }
.v3-success-icon { font-size: 4rem; color: #10b981; margin-bottom: 1rem; }

/* --- [2] PILLAR / FEATURE NODES --- */
.v3-pillars-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 4rem; }
.v3-pillar-node { display: flex; gap: 1.5rem; align-items: flex-start; }
.v3-pillar-icon { width: 32px; height: 32px; flex-shrink: 0; margin-top: 0.25rem; }
.v3-pillar-icon i { width: 32px; height: 32px; }
.v3-pillar-text strong { 
    display: block; 
    font-size: 1.1rem; 
    font-weight: 800; 
    color: var(--v3-slate-900); 
    margin-bottom: 0.5rem; 
}
.v3-pillar-text p { 
    font-size: 0.95rem; 
    color: var(--v3-slate-500); 
    line-height: 1.6; 
    margin: 0; 
}

/* --- [3] SHARED UTILITIES --- */
.d-none { display: none !important; }

/* Standardized High-Fidelity Padding Utilities */
.py-20 { padding-top: 10rem !important; padding-bottom: 10rem !important; }
.py-16 { padding-top: 8rem !important; padding-bottom: 8rem !important; }
.py-12 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.py-10 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-8  { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-small { padding: 3rem 0 !important; }

/* Margin Utilities */
.mt-16 { margin-top: 8rem !important; }
.mt-12 { margin-top: 6rem !important; }
.mt-10 { margin-top: 5rem !important; }
.mt-8  { margin-top: 4rem !important; }

.reveal-on-scroll { 
    opacity: 0; 
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1); 
    will-change: transform, opacity;
}
.reveal-up { transform: translateY(30px); }
.is-visible { 
    opacity: 1 !important; 
    transform: translate(0, 0) !important; 
}

/* --- [4] RESPONSIVE STANDARDIZATION --- */
@media (max-width: 1200px) {
    .v3-cta-info { padding: 3rem 2rem; }
    .v3-cta-form-wrapper { padding: 3rem 2rem; }
    .v3-pillars-list { gap: 2rem; }
}

@media (max-width: 768px) {
    /* Conversion Card Mobile */
    .v3-conversion-card { border-radius: 1.5rem !important; margin: 0 1rem; }
    .v3-cta-info { padding: 3rem 1.5rem !important; }
    .v3-cta-form-wrapper { padding: 3rem 1.5rem !important; }
    .v3-phone-link { font-size: 1.75rem !important; }
    
    /* Pillar List Mobile */
    .v3-pillars-list { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .v3-pillar-node { padding-bottom: 1.5rem; border-bottom: 1px solid var(--v3-slate-100); }
    .v3-pillar-node:last-child { border-bottom: none; }
    
    /* Global Section Pacing Mobile */
    .py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
    .py-16 { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
    .py-12 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
    .py-10 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
    .py-8  { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .py-small { padding: 2.5rem 0 !important; }

    /* Margin Pacing Mobile */
    .mt-16 { margin-top: 4rem !important; }
    .mt-12 { margin-top: 3.5rem !important; }
    .mt-10 { margin-top: 3rem !important; }
    .mt-8  { margin-top: 2.5rem !important; }
}

/* --- [5] HORIZONTAL SCROLL ENGINE (Mobile Only) --- */
@media (max-width: 1024px) {
    .v3-scroll-container {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 1.25rem !important;
        padding: 0 1.25rem 2rem 1.25rem !important;
        margin-left: -1.25rem !important;
        margin-right: -1.25rem !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .v3-scroll-container::-webkit-scrollbar { display: none; }
    .v3-scroll-item {
        flex: 0 0 300px !important;
        scroll-snap-align: center;
    }
}
