
/* ============================================================
   LOVE PROBLEM SPECIALIST HERO - SCOPED STYLES
   Prefix: .lps-  (Love Problem Specialist) to avoid conflicts
   ============================================================ */

.lps-hero {
    --lps-primary: #2E0651;
    --lps-secondary: #E5932A;
    --lps-accent: #A22A46;
    --lps-light-gold: #F8D295;
    --lps-cream: #F3E6D9;
    --lps-white: #FFFFFF;

    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--lps-primary) 0%, #4A0E7E 55%, var(--lps-primary) 100%);
    padding: clamp(40px, 8vw, 90px) clamp(20px, 5vw, 80px);
    box-sizing: border-box;
    isolation: isolate;
}

/* ---------- Background decorative elements ---------- */
.lps-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.lps-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    animation: lpsFloat 12s ease-in-out infinite;
}

.lps-orb-1 {
    width: 380px;
    height: 380px;
    background: var(--lps-secondary);
    top: -120px;
    right: -100px;
    animation-delay: 0s;
}

.lps-orb-2 {
    width: 260px;
    height: 260px;
    background: var(--lps-accent);
    bottom: -80px;
    left: -60px;
    animation-delay: 3s;
}

.lps-orb-3 {
    width: 180px;
    height: 180px;
    background: var(--lps-light-gold);
    top: 40%;
    left: 35%;
    opacity: 0.15;
    animation-delay: 6s;
}

@keyframes lpsFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.08); }
}

.lps-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(248, 210, 149, 0.6), transparent),
        radial-gradient(2px 2px at 70% 20%, rgba(248, 210, 149, 0.4), transparent),
        radial-gradient(1.5px 1.5px at 40% 70%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 85% 60%, rgba(248, 210, 149, 0.5), transparent),
        radial-gradient(1.5px 1.5px at 15% 80%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 55% 45%, rgba(248, 210, 149, 0.3), transparent);
    background-size: 100% 100%;
    animation: lpsTwinkle 4s ease-in-out infinite alternate;
}

@keyframes lpsTwinkle {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* ---------- Layout container ---------- */
.lps-hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(32px, 5vw, 70px);
    align-items: center;
}

/* ---------- Text content ---------- */
.lps-hero-content {
    animation: lpsFadeUp 0.9s ease-out both;
}

@keyframes lpsFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.lps-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(248, 210, 149, 0.12);
    border: 1px solid rgba(248, 210, 149, 0.35);
    color: var(--lps-light-gold);
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 22px;
    animation: lpsFadeUp 0.9s ease-out 0.1s both;
}

.lps-eyebrow i {
    color: var(--lps-accent);
    animation: lpsPulseHeart 1.6s ease-in-out infinite;
}

@keyframes lpsPulseHeart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

.lps-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--lps-white);
    margin: 0 0 20px;
    animation: lpsFadeUp 0.9s ease-out 0.2s both;
}

.lps-title-highlight {
    display: block;
    margin-top: 8px;
    font-size: clamp(1.1rem, 2.6vw, 1.6rem);
    font-weight: 400;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: linear-gradient(90deg, var(--lps-secondary), var(--lps-light-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: lpsShine 4s linear infinite;
}

@keyframes lpsShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.lps-desc {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.75;
    color: var(--lps-cream);
    max-width: 560px;
    margin: 0 0 32px;
    opacity: 0.92;
    animation: lpsFadeUp 0.9s ease-out 0.3s both;
}

/* ---------- Stats ---------- */
.lps-stats {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    margin-bottom: 36px;
    flex-wrap: wrap;
    animation: lpsFadeUp 0.9s ease-out 0.4s both;
}

.lps-stat {
    display: flex;
    flex-direction: column;
}

.lps-stat-number {
    font-family: 'Georgia', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--lps-secondary);
    line-height: 1.1;
}

.lps-stat-label {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.7rem, 1.3vw, 0.82rem);
    color: var(--lps-cream);
    opacity: 0.75;
    margin-top: 4px;
    white-space: nowrap;
}

.lps-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(248, 230, 217, 0.2);
}

/* ---------- CTAs ---------- */
.lps-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: lpsFadeUp 0.9s ease-out 0.5s both;
}

.lps-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 0.98rem);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    white-space: nowrap;
}

.lps-btn-primary {
    background: linear-gradient(135deg, var(--lps-secondary), var(--lps-accent));
    color: var(--lps-white);
    box-shadow: 0 8px 24px rgba(162, 42, 70, 0.35);
}

.lps-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(162, 42, 70, 0.5);
}

.lps-btn-primary i {
    transition: transform 0.3s ease;
}

.lps-btn-primary:hover i {
    transform: translateX(4px);
}

.lps-btn-secondary {
    background: transparent;
    color: var(--lps-white);
    border: 1.5px solid rgba(248, 230, 217, 0.4);
}

.lps-btn-secondary:hover {
    background: rgba(248, 230, 217, 0.1);
    border-color: var(--lps-light-gold);
    transform: translateY(-3px);
}

.lps-btn-secondary i {
    color: var(--lps-light-gold);
}

/* ---------- Visual / image side ---------- */
.lps-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: lpsFadeIn 1.2s ease-out 0.3s both;
}

@keyframes lpsFadeIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.lps-image-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 13 / 15;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(248, 210, 149, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.lps-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: lpsImgZoom 18s ease-in-out infinite alternate;
}

@keyframes lpsImgZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Glow ring around image */
.lps-glow-ring {
    position: absolute;
    inset: -16px;
    border: 2px dashed rgba(229, 147, 42, 0.4);
    border-radius: 32px;
    pointer-events: none;
    animation: lpsRotate 30s linear infinite;
}

@keyframes lpsRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating cards */
.lps-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(46, 6, 81, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(248, 210, 149, 0.3);
    border-radius: 16px;
    color: var(--lps-white);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: lpsCardFloat 4s ease-in-out infinite;
}

.lps-float-card i {
    color: var(--lps-secondary);
    font-size: 1.1rem;
}

.lps-float-card-1 {
    top: 8%;
    left: -10%;
    animation-delay: 0s;
}

.lps-float-card-2 {
    bottom: 10%;
    right: -8%;
    animation-delay: 2s;
}

@keyframes lpsCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ---------- Scroll cue ---------- */
.lps-scroll-cue {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--lps-cream);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
    z-index: 1;
}

.lps-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--lps-light-gold), transparent);
    animation: lpsScrollMove 2s ease-in-out infinite;
}

@keyframes lpsScrollMove {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.5); opacity: 1; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 992px) {
    .lps-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lps-hero-content {
        order: 2;
    }

    .lps-hero-visual {
        order: 1;
    }

    .lps-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .lps-stats,
    .lps-cta-group {
        justify-content: center;
    }

    .lps-image-frame {
        max-width: 360px;
    }
}

@media (max-width: 576px) {
    .lps-hero {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .lps-stats {
        gap: 16px;
    }

    .lps-stat-divider {
        height: 28px;
    }

    .lps-float-card {
        font-size: 0.75rem;
        padding: 9px 14px;
    }

    .lps-float-card-1 { left: 0; top: 4%; }
    .lps-float-card-2 { right: 0; bottom: 4%; }

    .lps-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .lps-btn {
        width: 100%;
        justify-content: center;
    }

    .lps-scroll-cue {
        display: none;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .lps-hero *,
    .lps-hero *::before,
    .lps-hero *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- Focus visibility ---------- */
.lps-btn:focus-visible {
    outline: 2px solid var(--lps-light-gold);
    outline-offset: 3px;
}









/* ============================================================
   PROBLEMS WE SOLVE SECTION - SCOPED STYLES
   Prefix: .lpw-  (Love Problems We solve) to avoid conflicts
   ============================================================ */

.lpw-section {
    --lpw-primary: #2E0651;
    --lpw-secondary: #E5932A;
    --lpw-accent: #A22A46;
    --lpw-light-gold: #F8D295;
    --lpw-cream: #F3E6D9;
    --lpw-white: #FFFFFF;

    position: relative;
    width: 100%;
    background: var(--lpw-cream);
    padding: clamp(60px, 9vw, 110px) clamp(20px, 5vw, 80px);
    overflow: hidden;
    box-sizing: border-box;
    isolation: isolate;
}

/* Decorative background pattern */
.lpw-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 90% 10%, rgba(162, 42, 70, 0.06), transparent 40%),
        radial-gradient(circle at 5% 90%, rgba(46, 6, 81, 0.05), transparent 40%);
}

.lpw-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

/* ---------- Header ---------- */
.lpw-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(40px, 6vw, 64px);
}

.lpw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(162, 42, 70, 0.08);
    border: 1px solid rgba(162, 42, 70, 0.18);
    color: var(--lpw-accent);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.72rem, 1.4vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: lpwFadeUp 0.8s ease-out both;
}

.lpw-eyebrow i {
    color: var(--lpw-secondary);
    animation: lpwSparkle 2.4s ease-in-out infinite;
}

@keyframes lpwSparkle {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
    50% { transform: rotate(15deg) scale(1.2); opacity: 0.7; }
}

.lpw-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(1.8rem, 4.2vw, 2.8rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--lpw-primary);
    margin: 0 0 16px;
    animation: lpwFadeUp 0.8s ease-out 0.1s both;
}

.lpw-subtitle {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    line-height: 1.75;
    color: #5A4A66;
    margin: 0;
    animation: lpwFadeUp 0.8s ease-out 0.2s both;
}

@keyframes lpwFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Grid ---------- */
.lpw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 30px);
}

/* ---------- Card ---------- */
.lpw-card {
    position: relative;
    background: var(--lpw-white);
    border-radius: 20px;
    padding: clamp(28px, 3vw, 36px) clamp(24px, 2.6vw, 30px);
    border: 1px solid rgba(46, 6, 81, 0.06);
    box-shadow: 0 6px 24px rgba(46, 6, 81, 0.06);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    animation: lpwCardIn 0.7s ease-out both;
    animation-delay: var(--lpw-delay, 0s);
}

@keyframes lpwCardIn {
    from { opacity: 0; transform: translateY(32px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.lpw-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(162, 42, 70, 0.16);
    border-color: rgba(229, 147, 42, 0.3);
}

/* Icon */
.lpw-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--lpw-primary), var(--lpw-accent));
    color: var(--lpw-light-gold);
    font-size: 1.5rem;
    margin-bottom: 22px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 20px rgba(46, 6, 81, 0.25);
}

.lpw-card:hover .lpw-card-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 10px 24px rgba(162, 42, 70, 0.35);
}

.lpw-card-title {
    font-family: 'Georgia', serif;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: var(--lpw-primary);
    margin: 0 0 12px;
    line-height: 1.35;
}

.lpw-card-desc {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.88rem, 1.4vw, 0.96rem);
    line-height: 1.7;
    color: #6B5B73;
    margin: 0;
}

/* Glow accent on hover */
.lpw-card-glow {
    position: absolute;
    bottom: -60%;
    right: -30%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 147, 42, 0.18), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.lpw-card:hover .lpw-card-glow {
    opacity: 1;
}

/* ---------- Bottom CTA ---------- */
.lpw-cta-wrap {
    text-align: center;
    margin-top: clamp(48px, 6vw, 70px);
}

.lpw-cta-text {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--lpw-primary);
    margin: 0 0 22px;
}

.lpw-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lpw-secondary), var(--lpw-accent));
    color: var(--lpw-white);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 0.98rem);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(162, 42, 70, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lpw-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(162, 42, 70, 0.45);
}

.lpw-btn i {
    transition: transform 0.3s ease;
}

.lpw-btn:hover i {
    transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 1024px) {
    .lpw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lpw-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .lpw-card {
        padding: 26px 22px;
    }

    .lpw-header {
        margin-bottom: 36px;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .lpw-section *,
    .lpw-section *::before,
    .lpw-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- Focus visibility ---------- */
.lpw-btn:focus-visible {
    outline: 2px solid var(--lpw-primary);
    outline-offset: 3px;
}





/* ============================================================
   IMAGE + SCROLLING PARAGRAPH SECTION - SCOPED STYLES
   Prefix: .lpsc-  (Love Problem Scroll Content) to avoid conflicts
   ============================================================ */

.lpsc-section {
    --lpsc-primary: #2E0651;
    --lpsc-secondary: #E5932A;
    --lpsc-accent: #A22A46;
    --lpsc-light-gold: #F8D295;
    --lpsc-cream: #F3E6D9;
    --lpsc-white: #FFFFFF;

    position: relative;
    width: 100%;
    background: var(--lpsc-white);
    padding: clamp(60px, 9vw, 110px) clamp(20px, 5vw, 80px);
    box-sizing: border-box;
    overflow: hidden;
}

.lpsc-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(32px, 5vw, 70px);
    align-items: start;
}

/* ---------- Image side ---------- */
.lpsc-image-col {
    position: sticky;
    top: clamp(80px, 10vh, 120px);
    display: flex;
    justify-content: center;
}

.lpsc-image-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 5 / 6.4;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(46, 6, 81, 0.18);
    animation: lpscFadeIn 1s ease-out both;
}

@keyframes lpscFadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.lpsc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: lpscZoom 16s ease-in-out infinite alternate;
}

@keyframes lpscZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.07); }
}

.lpsc-glow-ring {
    position: absolute;
    inset: -14px;
    border: 2px dashed rgba(229, 147, 42, 0.35);
    border-radius: 30px;
    pointer-events: none;
    animation: lpscRotate 32s linear infinite;
}

@keyframes lpscRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lpsc-image-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(46, 6, 81, 0.85);
    backdrop-filter: blur(8px);
    color: var(--lpsc-white);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.8rem, 1.4vw, 0.92rem);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: lpscBadgeFloat 4s ease-in-out infinite;
}

.lpsc-image-badge i {
    color: var(--lpsc-secondary);
    font-size: 1.05rem;
}

@keyframes lpscBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---------- Content side ---------- */
.lpsc-content-col {
    position: relative;
}

.lpsc-sticky-head {
    margin-bottom: 28px;
    animation: lpscFadeUp 0.8s ease-out both;
}

@keyframes lpscFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.lpsc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(46, 6, 81, 0.06);
    border: 1px solid rgba(46, 6, 81, 0.14);
    color: var(--lpsc-primary);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.72rem, 1.4vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.lpsc-eyebrow i {
    color: var(--lpsc-secondary);
    animation: lpscWave 2.5s ease-in-out infinite;
}

@keyframes lpscWave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(18deg); }
}

.lpsc-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--lpsc-primary);
    margin: 0 0 14px;
}

.lpsc-subtitle {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    line-height: 1.75;
    color: #6B5B73;
    margin: 0;
    max-width: 540px;
}

/* ---------- Scroll area ---------- */
.lpsc-scroll-area {
    max-height: 560px;
    overflow-y: auto;
    padding: 6px 18px 6px 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--lpsc-secondary) var(--lpsc-cream);
}

.lpsc-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.lpsc-scroll-area::-webkit-scrollbar-track {
    background: var(--lpsc-cream);
    border-radius: 10px;
}

.lpsc-scroll-area::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--lpsc-secondary), var(--lpsc-accent));
    border-radius: 10px;
}

/* ---------- Paragraphs ---------- */
.lpsc-para {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    line-height: 1.85;
    color: #5A4A66;
    margin: 0 0 22px;
    padding-left: 20px;
    border-left: 3px solid var(--lpsc-light-gold);
    animation: lpscParaIn 0.7s ease-out both;
    animation-delay: var(--lpsc-delay, 0s);
    transition: border-color 0.4s ease, transform 0.35s ease;
}

@keyframes lpscParaIn {
    from { opacity: 0; transform: translateX(28px); }
    to { opacity: 1; transform: translateX(0); }
}

.lpsc-para:hover {
    border-left-color: var(--lpsc-accent);
    transform: translateX(6px);
}

.lpsc-para:first-of-type {
    font-size: clamp(1rem, 1.7vw, 1.12rem);
    color: var(--lpsc-primary);
    font-weight: 500;
}

.lpsc-para:last-of-type {
    margin-bottom: 28px;
}

/* ---------- CTA button inside scroll area ---------- */
.lpsc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lpsc-secondary), var(--lpsc-accent));
    color: var(--lpsc-white);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 0.98rem);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(162, 42, 70, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lpsc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(162, 42, 70, 0.45);
}

.lpsc-btn i {
    transition: transform 0.3s ease;
}

.lpsc-btn:hover i {
    transform: translateX(4px);
}

/* ---------- Scroll hint ---------- */
.lpsc-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--lpsc-accent);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.75;
    animation: lpscBounce 1.8s ease-in-out infinite;
}

@keyframes lpscBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 992px) {
    .lpsc-container {
        grid-template-columns: 1fr;
    }

    .lpsc-image-col {
        position: relative;
        top: 0;
    }

    .lpsc-image-frame {
        max-width: 380px;
        margin: 0 auto;
    }

    .lpsc-scroll-area {
        max-height: 480px;
    }
}

@media (max-width: 576px) {
    .lpsc-scroll-area {
        max-height: 420px;
        padding-right: 10px;
    }

    .lpsc-para {
        padding-left: 14px;
        margin-bottom: 18px;
    }

    .lpsc-image-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 11px 14px;
    }

    .lpsc-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .lpsc-section *,
    .lpsc-section *::before,
    .lpsc-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .lpsc-scroll-area {
        scroll-behavior: auto;
    }
}

/* ---------- Focus visibility ---------- */
.lpsc-btn:focus-visible,
.lpsc-scroll-area:focus-visible {
    outline: 2px solid var(--lpsc-primary);
    outline-offset: 3px;
}







/* ============================================================
   TEXT (LEFT) + IMAGE (RIGHT) SECTION - SCOPED STYLES
   Prefix: .lpt-  (Love Problem Text-image) to avoid conflicts
   ============================================================ */

.lpt-section {
    --lpt-primary: #2E0651;
    --lpt-secondary: #E5932A;
    --lpt-accent: #A22A46;
    --lpt-light-gold: #F8D295;
    --lpt-cream: #F3E6D9;
    --lpt-white: #FFFFFF;

    position: relative;
    width: 100%;
    background: linear-gradient(160deg, var(--lpt-primary) 0%, #3D0E6E 50%, var(--lpt-primary) 100%);
    padding: clamp(60px, 9vw, 110px) clamp(20px, 5vw, 80px);
    overflow: hidden;
    box-sizing: border-box;
    isolation: isolate;
}

/* ---------- Background decoration ---------- */
.lpt-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.lpt-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.3;
    animation: lptFloat 14s ease-in-out infinite;
}

.lpt-orb-1 {
    width: 360px;
    height: 360px;
    background: var(--lpt-secondary);
    top: -100px;
    left: -80px;
    animation-delay: 0s;
}

.lpt-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--lpt-accent);
    bottom: -100px;
    right: -60px;
    animation-delay: 4s;
}

@keyframes lptFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

.lpt-constellation {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 15% 25%, rgba(248, 210, 149, 0.6), transparent),
        radial-gradient(1.5px 1.5px at 80% 15%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 65% 75%, rgba(248, 210, 149, 0.4), transparent),
        radial-gradient(1.5px 1.5px at 30% 85%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 90% 50%, rgba(248, 210, 149, 0.5), transparent),
        radial-gradient(1.5px 1.5px at 45% 40%, rgba(255, 255, 255, 0.3), transparent);
    animation: lptTwinkle 5s ease-in-out infinite alternate;
}

@keyframes lptTwinkle {
    0% { opacity: 0.35; }
    100% { opacity: 1; }
}

/* ---------- Layout ---------- */
.lpt-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(36px, 5vw, 80px);
    align-items: center;
}

/* ---------- Text side ---------- */
.lpt-content-col {
    animation: lptFadeUp 0.9s ease-out both;
}

@keyframes lptFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.lpt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(248, 210, 149, 0.12);
    border: 1px solid rgba(248, 210, 149, 0.35);
    color: var(--lpt-light-gold);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.72rem, 1.4vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.lpt-eyebrow i {
    color: var(--lpt-secondary);
    animation: lptMoonSpin 6s linear infinite;
}

@keyframes lptMoonSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lpt-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(1.9rem, 4.2vw, 2.9rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--lpt-white);
    margin: 0 0 14px;
}

.lpt-subtitle {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    font-style: italic;
    background: linear-gradient(90deg, var(--lpt-secondary), var(--lpt-light-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: lptShine 5s linear infinite;
    margin: 0 0 28px;
}

@keyframes lptShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.lpt-text-body {
    margin-bottom: 32px;
}

.lpt-para {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    line-height: 1.85;
    color: var(--lpt-cream);
    opacity: 0.92;
    margin: 0 0 18px;
    animation: lptFadeUp 0.9s ease-out both;
    animation-delay: var(--lpt-delay, 0s);
}

.lpt-para:last-child {
    margin-bottom: 0;
}

/* ---------- CTA Button ---------- */
.lpt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 16px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lpt-secondary), var(--lpt-accent));
    color: var(--lpt-white);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(162, 42, 70, 0.4);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: lptFadeUp 0.9s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.lpt-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.lpt-btn:hover::before {
    left: 140%;
}

.lpt-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(162, 42, 70, 0.55);
}

.lpt-btn i {
    animation: lptStarSpin 3s linear infinite;
}

@keyframes lptStarSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ---------- Image side ---------- */
.lpt-image-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lptFadeIn 1.1s ease-out 0.2s both;
}

@keyframes lptFadeIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.lpt-image-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 13 / 15;
    border-radius: 28px;
    overflow: hidden;
    border: 2px solid rgba(248, 210, 149, 0.25);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.lpt-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: lptZoom 18s ease-in-out infinite alternate;
}

@keyframes lptZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Glow ring */
.lpt-glow-ring {
    position: absolute;
    inset: -16px;
    border: 2px dashed rgba(229, 147, 42, 0.4);
    border-radius: 36px;
    pointer-events: none;
    animation: lptRotate 35s linear infinite;
}

@keyframes lptRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Orbiting icons */
.lpt-orbit-ring {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lpt-orbit-dot {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(46, 6, 81, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(248, 210, 149, 0.35);
    color: var(--lpt-light-gold);
    font-size: 1rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.lpt-orbit-dot-1 {
    top: 6%;
    right: -6%;
    animation: lptOrbitFloat 5s ease-in-out infinite;
}

.lpt-orbit-dot-2 {
    bottom: 18%;
    left: -8%;
    color: var(--lpt-secondary);
    animation: lptOrbitFloat 5s ease-in-out infinite 1.6s;
}

.lpt-orbit-dot-3 {
    top: 45%;
    right: -8%;
    color: var(--lpt-accent);
    animation: lptOrbitFloat 5s ease-in-out infinite 3.2s;
}

@keyframes lptOrbitFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-16px) scale(1.1); }
}

/* Floating quote card */
.lpt-quote-card {
    margin-top: -36px;
    width: 90%;
    max-width: 400px;
    background: rgba(243, 230, 217, 0.97);
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-left: 4px solid var(--lpt-secondary);
    animation: lptCardFloat 4.5s ease-in-out infinite;
    z-index: 2;
}

.lpt-quote-card i {
    color: var(--lpt-accent);
    font-size: 1.2rem;
    opacity: 0.6;
    margin-bottom: 8px;
    display: block;
}

.lpt-quote-card p {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: clamp(0.92rem, 1.5vw, 1.04rem);
    line-height: 1.6;
    color: var(--lpt-primary);
    margin: 0;
}

@keyframes lptCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 992px) {
    .lpt-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lpt-content-col {
        order: 1;
    }

    .lpt-image-col {
        order: 2;
    }

    .lpt-text-body,
    .lpt-para {
        text-align: left;
    }

    .lpt-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .lpt-image-frame {
        max-width: 380px;
    }

    .lpt-quote-card {
        margin-top: -28px;
    }
}

@media (max-width: 576px) {
    .lpt-orbit-dot {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .lpt-quote-card {
        padding: 18px 20px;
        margin-top: -22px;
    }

    .lpt-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .lpt-section *,
    .lpt-section *::before,
    .lpt-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- Focus visibility ---------- */
.lpt-btn:focus-visible {
    outline: 2px solid var(--lpt-light-gold);
    outline-offset: 3px;
}
