/* ============================
   LANDING-PAGES.CSS — Styles for Service Landing Pages
   Nandini Saini Portfolio
   ============================ */

/* ===== HERO SECTION ===== */
.lp-hero {
    padding: calc(var(--nav-height) + 4rem) 5% 4rem;
    position: relative;
    background: radial-gradient(circle at center, rgba(229, 9, 20, 0.05) 0%, transparent 70%);
}

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

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--glass-red);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 50px;
    color: var(--accent-red);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.lp-hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.lp-hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.lp-hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.lp-hero-proof {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.lp-hero-proof i {
    color: #FFD700; /* Gold for stars */
}

/* ===== HERO FORM CARD ===== */
.lp-hero-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(229, 9, 20, 0.1);
}

.lp-hero-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.lp-mini-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-mini-form input,
.lp-mini-form select,
.lp-mini-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.lp-mini-form input:focus,
.lp-mini-form select:focus,
.lp-mini-form textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.2);
}

.lp-mini-form select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.lp-form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* ===== TRUST STRIP ===== */
.lp-trust-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    overflow: hidden;
}

.lp-trust-strip-inner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.lp-trust-item i {
    color: var(--accent-red);
}

/* ===== SECTIONS GENERIC ===== */
.lp-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lp-section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BENEFITS GRID ===== */
.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lp-benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.lp-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.3);
}

.lp-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--glass-red);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.lp-benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.lp-benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== PROCESS STEPS ===== */
.lp-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.lp-process-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.lp-step-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.lp-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow-red);
}

.lp-process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.lp-process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== PORTFOLIO GRID ===== */
.lp-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.lp-port-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.lp-port-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.lp-port-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.lp-port-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.lp-port-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.lp-port-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ===== FAQ ACCORDION ===== */
.lp-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.lp-faq-q {
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-faq-q::-webkit-details-marker {
    display: none;
}

.lp-faq-q i {
    color: var(--accent-red);
    transition: transform 0.3s;
}

.lp-faq-item[open] .lp-faq-q i {
    transform: rotate(45deg);
}

.lp-faq-a {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.lp-final-cta {
    padding: 6rem 5%;
    text-align: center;
    background: radial-gradient(circle at bottom, rgba(229, 9, 20, 0.1) 0%, transparent 60%);
}

.lp-final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.lp-final-cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.lp-final-cta-inner p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.lp-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .lp-hero-inner {
        grid-template-columns: 1fr;
    }
    
    .lp-hero-text {
        text-align: center;
    }
    
    .lp-hero-actions {
        justify-content: center;
    }
    
    .lp-hero-proof {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .lp-cta-actions {
        flex-direction: column;
    }
}
