/* ==========================================================================
   Light a Candle - Landing Page Styles
   Modern, Full-Width Landing Page - Memento Mori Theme
   ========================================================================== */

/* ==========================================================================
   Variables & Reset - Soft Muted Palette (Easy on the eyes)
   ========================================================================== */
:root {
    --lac-primary: #6b5d52;        /* Soft muted brown for text */
    --lac-primary-light: #9d8b7e;  /* Very pale brown */
    --lac-primary-dark: #5a4d44;   /* Slightly darker muted brown */
    --lac-accent: #d9b88f;         /* Soft golden beige */
    --lac-accent-hover: #c9a67a;   /* Muted gold hover */
    --lac-accent-light: #f0e5d8;   /* Very light cream */
    --lac-flame: #daa67d;          /* Soft peachy tone */
    --lac-background: #ffffff;
    --lac-background-alt: #faf7f4; /* Warm almost-white */
    --lac-text: #6b5d52;           /* Soft brown text */
    --lac-text-light: #9d8b7e;     /* Very pale brown */
    --lac-border: #ede8e3;         /* Very light beige border */
    --lac-shadow: rgba(107, 93, 82, 0.08);
    --lac-shadow-lg: rgba(107, 93, 82, 0.12);
}

.lac-landing-page {
    width: 100%;
    overflow-x: hidden;
}

.lac-landing-page * {
    box-sizing: border-box;
}

/* ==========================================================================
   Container
   ========================================================================== */
.lac-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header Override - Full Width
   ========================================================================== */
/* Target all possible header elements in Twenty Twenty-Four */
body header,
body .wp-site-blocks > header,
body .wp-block-template-part,
body header.wp-block-template-part
 {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Override any full-width settings in header */
body header .alignfull,
body header .wp-block-group.alignfull {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Remove top/bottom padding from header */
body header,
body header .wp-block-template-part,
body .wp-block-template-part[data-area="header"],
body header.wp-block-template-part {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Ensure full-width for landing page sections */
.lac-landing-page section {
    width: 100%;
    max-width: 100%;
}

/* ==========================================================================
   Hero Section - Memento Mori: Time passes, memory remains
   ========================================================================== */
/* ==========================================================================
   Hero Section - MEMENTO MORI: Remember Death, Cherish Memory
   A visual meditation on mortality and the eternal nature of remembrance
   ========================================================================== */

.lac-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #1a1612 0%, #2d2621 50%, #3d332b 100%);
}

/* Dark vignette effect from edges */
.lac-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Subtle texture overlay */
.lac-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

/* Background container - Hourglass symbol and falling sand */
.lac-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Hourglass top triangle */
.lac-hero-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 150px solid rgba(139, 111, 71, 0.06);
    margin-top: -75px;
}

/* Hourglass bottom triangle */
.lac-hero-background::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 150px solid rgba(139, 111, 71, 0.06);
    margin-top: 75px;
}

/* Overlay container - Smoke rising */
.lac-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Rising smoke from left */
.lac-hero-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 80px;
    height: 250px;
    background: radial-gradient(ellipse 80px 250px at bottom, rgba(200, 200, 200, 0.04) 0%, transparent 70%);
    animation: smokeRise1 12s ease-in-out infinite;
}

/* Rising smoke from right */
.lac-hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20%;
    width: 70px;
    height: 230px;
    background: radial-gradient(ellipse 70px 230px at bottom, rgba(220, 220, 220, 0.035) 0%, transparent 70%);
    animation: smokeRise2 15s ease-in-out infinite 2s;
}

@keyframes smokeRise1 {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-80px) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translateY(-160px) scale(1.5);
        opacity: 0;
    }
}

@keyframes smokeRise2 {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.35;
    }
    50% {
        transform: translateY(-70px) scale(1.15);
        opacity: 0.18;
    }
    100% {
        transform: translateY(-140px) scale(1.4);
        opacity: 0;
    }
}

/* Time symbols container */
.lac-time-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 4;
    pointer-events: none;
}

/* Sand falling animation */
.lac-sand-falling {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-image:
        radial-gradient(circle, rgba(217, 184, 143, 0.35) 1px, transparent 1px),
        radial-gradient(circle, rgba(201, 166, 122, 0.28) 0.8px, transparent 0.8px),
        radial-gradient(circle, rgba(166, 138, 94, 0.22) 0.6px, transparent 0.6px);
    background-size: 120px 120px, 180px 180px, 240px 240px;
    background-position: 0 0, 60px 60px, 120px 120px;
    animation: sandFalling 40s linear infinite;
    opacity: 0.5;
}

@keyframes sandFalling {
    0% {
        transform: translateY(-15%);
        opacity: 0;
    }
    15% {
        opacity: 0.5;
    }
    85% {
        opacity: 0.25;
    }
    100% {
        transform: translateY(115%);
        opacity: 0;
    }
}

/* Fading memories - additional smoke wisps */
.lac-memories-fading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse 60px 180px at 50% 100%, rgba(200, 200, 200, 0.025) 0%, transparent 100%),
        radial-gradient(ellipse 50px 160px at 80% 100%, rgba(220, 220, 220, 0.02) 0%, transparent 100%);
    animation: memoriesFade 18s ease-in-out infinite;
}

@keyframes memoriesFade {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px);
        opacity: 0.15;
    }
    100% {
        transform: translateY(-200px);
        opacity: 0;
    }
}

/* Floating candle lights container */
.lac-floating-lights {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

/* Individual candle light styles */
.lac-light {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 200, 100, 0.6);
    border-radius: 50%;
    box-shadow:
        0 0 20px rgba(255, 200, 100, 0.8),
        0 0 40px rgba(255, 180, 80, 0.4);
    animation: candleFlicker 3s ease-in-out infinite;
}

.lac-light:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 3.2s;
}

.lac-light:nth-child(2) {
    top: 30%;
    left: 85%;
    animation-delay: 0.8s;
    animation-duration: 3.5s;
}

.lac-light:nth-child(3) {
    top: 60%;
    left: 45%;
    animation-delay: 1.5s;
    animation-duration: 3s;
}

.lac-light:nth-child(4) {
    top: 75%;
    left: 70%;
    animation-delay: 0.5s;
    animation-duration: 3.3s;
}

.lac-light:nth-child(5) {
    top: 85%;
    left: 25%;
    animation-delay: 1.2s;
    animation-duration: 3.6s;
}

@keyframes candleFlicker {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    25% {
        opacity: 0.9;
        transform: scale(1.1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    75% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Content container with gentle glow */
.lac-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 80px 50px;
    background: rgba(20, 18, 16, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 4px;
    border: 1px solid rgba(217, 184, 143, 0.15);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 100px rgba(217, 184, 143, 0.1);
    animation: contentPulse 8s ease-in-out infinite;
}

@keyframes contentPulse {
    0%, 100% {
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.03),
            0 0 100px rgba(217, 184, 143, 0.1);
    }
    50% {
        box-shadow:
            0 25px 70px rgba(0, 0, 0, 0.7),
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 0 120px rgba(217, 184, 143, 0.15);
    }
}

/* Typography - solemn and dignified */
.lac-hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #e8d4bf;
    letter-spacing: 0.05em;
    font-family: Georgia, "Times New Roman", serif;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.lac-hero-title-line {
    display: block;
    margin: 10px 0;
}

.lac-hero-title-accent {
    display: block;
    font-size: 4.5rem;
    font-weight: 400;
    color: #d9b88f;
    text-shadow:
        0 0 30px rgba(217, 184, 143, 0.6),
        0 2px 20px rgba(0, 0, 0, 0.9);
    animation: titleGlow 6s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow:
            0 0 30px rgba(217, 184, 143, 0.6),
            0 2px 20px rgba(0, 0, 0, 0.9);
    }
    50% {
        text-shadow:
            0 0 45px rgba(217, 184, 143, 0.8),
            0 2px 25px rgba(0, 0, 0, 0.9);
    }
}

/* Profound subtitle with memento mori message */
.lac-hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: #c9a67a;
    font-weight: 300;
    line-height: 1.8;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lac-hero-subtitle::before {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.4em;
    opacity: 0.3;
}

.lac-hero-subtitle::after {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.4em;
    opacity: 0.3;
}

/* Call to action buttons */
.lac-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.lac-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.lac-btn-primary {
    background: linear-gradient(to right, #8b6f47, #a68a5e);
    color: #fff;
    border: 1px solid rgba(217, 184, 143, 0.3);
    box-shadow:
        0 4px 20px rgba(139, 111, 71, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lac-btn-primary:hover {
    background: linear-gradient(to right, #a68a5e, #b89b6f);
    box-shadow:
        0 6px 30px rgba(139, 111, 71, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.lac-btn-secondary {
    background: transparent;
    color: #d9b88f;
    border: 1px solid rgba(217, 184, 143, 0.4);
}

.lac-btn-secondary:hover {
    background: rgba(217, 184, 143, 0.1);
    border-color: rgba(217, 184, 143, 0.6);
    transform: translateY(-2px);
}

.lac-btn-large {
    padding: 22px 50px;
    font-size: 0.95rem;
}

/* Statistics with contemplative styling */
.lac-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 50px;
    border-top: 1px solid rgba(217, 184, 143, 0.2);
}

.lac-stat {
    text-align: center;
    position: relative;
}

.lac-stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 200;
    margin-bottom: 8px;
    color: #d9b88f;
    font-family: Georgia, "Times New Roman", serif;
    text-shadow: 0 0 20px rgba(217, 184, 143, 0.3);
}

.lac-stat-label {
    display: block;
    font-size: 0.75rem;
    color: #9d8b7e;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    opacity: 0.7;
}

/* Memento mori scroll indicator */
.lac-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #9d8b7e;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollPulse 3s ease-in-out infinite;
    opacity: 0.6;
    cursor: pointer;
}

.lac-hero-scroll:hover {
    opacity: 1;
}

.lac-hero-scroll svg {
    stroke: #9d8b7e;
}

/* Latin memento mori inscription */
.lac-hero-scroll::before {
    content: 'Memento Mori';
    position: absolute;
    bottom: 50px;
    font-size: 0.65rem;
    font-style: italic;
    color: rgba(217, 184, 143, 0.4);
    letter-spacing: 0.2em;
    font-family: Georgia, "Times New Roman", serif;
    animation: inscriptionFade 8s ease-in-out infinite;
}

@keyframes inscriptionFade {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes scrollPulse {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
        opacity: 0.9;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lac-hero {
        min-height: 100vh;
    }

    .lac-hero-content {
        padding: 60px 30px;
        margin: 20px;
    }

    .lac-hero-title {
        font-size: 2.5rem;
    }

    .lac-hero-title-accent {
        font-size: 3rem;
    }

    .lac-hero-subtitle {
        font-size: 1rem;
    }

    .lac-hero-stats {
        gap: 40px;
    }

    .lac-stat-number {
        font-size: 2rem;
    }

    .lac-hero-background::before,
    .lac-hero-background::after {
        border-left-width: 60px;
        border-right-width: 60px;
        border-top-width: 90px;
        border-bottom-width: 90px;
    }
}

@media (max-width: 480px) {
    .lac-hero-title {
        font-size: 2rem;
    }

    .lac-hero-title-accent {
        font-size: 2.3rem;
    }

    .lac-hero-cta {
        flex-direction: column;
    }

    .lac-btn {
        width: 100%;
        justify-content: center;
    }

    .lac-hero-background::before,
    .lac-hero-background::after {
        border-left-width: 40px;
        border-right-width: 40px;
        border-top-width: 60px;
        border-bottom-width: 60px;
    }
}

/* ==========================================================================
   Daily Quote Section
   ========================================================================== */
.lac-daily-quote {
    padding: 80px 20px;
    background: var(--lac-background-alt);
}

.lac-quote-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--lac-shadow);
    position: relative;
}

.lac-quote-icon {
    color: var(--lac-accent);
    opacity: 0.2;
    margin-bottom: 20px;
}

.lac-quote-text {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--lac-text);
    margin-bottom: 24px;
    font-style: italic;
}

.lac-quote-author {
    font-size: 1.1rem;
    color: var(--lac-text-light);
    font-style: normal;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.lac-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.lac-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--lac-text);
    margin-bottom: 16px;
}

.lac-section-subtitle {
    font-size: 1.2rem;
    color: var(--lac-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.lac-features {
    padding: 100px 20px;
    background: white;
}

.lac-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.lac-feature-card {
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--lac-border);
    transition: all 0.3s ease;
    text-align: center;
}

.lac-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--lac-shadow-lg);
    border-color: #d9b88f;
}

.lac-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d9b88f20, #c9a67a20);
    border-radius: 50%;
    color: #d9b88f;
}

.lac-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lac-text);
    margin-bottom: 16px;
}

.lac-feature-description {
    font-size: 1rem;
    color: var(--lac-text-light);
    line-height: 1.6;
}

/* ==========================================================================
   How It Works Section - Modern Timeline Design
   ========================================================================== */
.lac-how-it-works {
    padding: 100px 20px;
    background: linear-gradient(180deg, #faf7f4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.lac-how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #d9b88f 20%, #d9b88f 80%, transparent 100%);
    opacity: 0.3;
}

.lac-steps {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.lac-step-connector {
    display: none;
}

/* How It Works steps - Override plugin CSS conflicts */
/* Use specific selectors to avoid affecting modal steps */
.lac-landing-page .lac-how-it-works .lac-step,
.lac-landing-page .lac-how-it-works .lac-steps > .lac-step {
    display: grid !important;
    grid-template-columns: 1fr 120px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    min-height: 180px;
}

.lac-landing-page .lac-steps .lac-step {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    min-height: 180px;
}

.lac-landing-page .lac-steps .lac-step:last-child {
    margin-bottom: 0;
}

/* Alternate layout for odd/even steps */
.lac-landing-page .lac-steps .lac-step:nth-child(odd) .lac-step-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    align-self: center;
}

.lac-landing-page .lac-steps .lac-step:nth-child(odd) .lac-step-number {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.lac-landing-page .lac-steps .lac-step:nth-child(odd) .lac-step-visual {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
}

.lac-landing-page .lac-steps .lac-step:nth-child(even) .lac-step-content {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    align-self: center;
}

.lac-landing-page .lac-steps .lac-step:nth-child(even) .lac-step-number {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.lac-landing-page .lac-steps .lac-step:nth-child(even) .lac-step-visual {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
}

/* Step Number */
.lac-landing-page .lac-steps .lac-step-number {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 4px solid #d9b88f;
    border-radius: 50%;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(217, 184, 143, 0.2);
    transition: all 0.4s ease;
}

.lac-step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d9b88f, #c9a67a);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.lac-landing-page .lac-steps .lac-step:hover .lac-step-number::before {
    opacity: 0.15;
}

.lac-landing-page .lac-steps .lac-step-number span {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d9b88f, #c9a67a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Step Content */
.lac-landing-page .lac-steps .lac-step-content {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(107, 93, 82, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
}

.lac-landing-page .lac-steps .lac-step:hover .lac-step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(107, 93, 82, 0.15);
}

/* Arrow pointing to center */
.lac-landing-page .lac-steps .lac-step:nth-child(odd) .lac-step-content::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent white;
    filter: drop-shadow(2px 0 3px rgba(107, 93, 82, 0.05));
}

.lac-landing-page .lac-steps .lac-step:nth-child(even) .lac-step-content::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 20px 15px 0;
    border-color: transparent white transparent transparent;
    filter: drop-shadow(-2px 0 3px rgba(107, 93, 82, 0.05));
}

.lac-landing-page .lac-steps .lac-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lac-primary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.lac-landing-page .lac-steps .lac-step-description {
    font-size: 1rem;
    color: var(--lac-text-light);
    line-height: 1.7;
}

/* Step Visual - Icon Area */
.lac-step-visual {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0e5d8 0%, #faf7f4 100%);
    border-radius: 20px;
    font-size: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.lac-step-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d9b88f 0%, #c9a67a 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lac-step:hover .lac-step-visual::before {
    opacity: 0.1;
}

.lac-step-visual::after {
    position: relative;
    z-index: 1;
}

/* Icons for each step */
.lac-step:nth-child(1) .lac-step-visual::after {
    content: '\1F56F\FE0F';
    font-size: 3.5rem;
}

.lac-step:nth-child(2) .lac-step-visual::after {
    content: '\1F4D6';
    font-size: 3.5rem;
}

.lac-step:nth-child(3) .lac-step-visual::after {
    content: '\23F1\FE0F';
    font-size: 3.5rem;
}

.lac-step:nth-child(4) .lac-step-visual::after {
    content: '\2728';
    font-size: 3.5rem;
}

/* ==========================================================================
   Recent Candles Slider
   ========================================================================== */
.lac-recent-candles {
    padding: 100px 20px;
    background: white;
}

.lac-candles-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.lac-candles-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    overflow: hidden;
}

.lac-slider-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--lac-shadow);
    transition: all 0.3s ease;
}

.lac-slider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--lac-shadow-lg);
}

.lac-slider-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.lac-slider-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lac-slider-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.2);
}

.lac-slider-card-candle {
    position: absolute;
    bottom: 10px;
    right: 10px;
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.lac-slider-card-content {
    padding: 24px;
}

.lac-slider-card-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--lac-text);
    margin-bottom: 8px;
}

.lac-slider-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--lac-text-light);
    margin-bottom: 12px;
}

.lac-slider-card-message {
    font-size: 0.95rem;
    color: var(--lac-text-light);
    line-height: 1.5;
    font-style: italic;
}

.lac-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px var(--lac-shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lac-slider-nav:hover {
    background: #d9b88f;
    color: white;
    box-shadow: 0 4px 15px rgba(217, 184, 143, 0.3);
}

.lac-slider-prev {
    left: -25px;
}

.lac-slider-next {
    right: -25px;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.lac-testimonials {
    padding: 100px 20px;
    background: var(--lac-background-alt);
}

.lac-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.lac-testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--lac-shadow);
    text-align: center;
}

.lac-testimonial-stars {
    color: #d9b88f;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.lac-testimonial-text {
    font-size: 1.1rem;
    color: var(--lac-text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.lac-testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--lac-text-light);
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.lac-final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #d9b88f 0%, #c9a67a 100%);
    color: white;
    text-align: center;
}

.lac-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.lac-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lac-cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ==========================================================================
   All Candles Section
   ========================================================================== */
.lac-all-candles {
    padding: 100px 20px;
    background: white;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .lac-landing-page .lac-how-it-works::before {
        display: none;
    }

    .lac-landing-page .lac-steps .lac-step,
    .lac-landing-page .lac-how-it-works .lac-step {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-bottom: 60px !important;
        display: grid !important;
    }

    .lac-landing-page .lac-steps .lac-step:nth-child(odd) .lac-step-content,
    .lac-landing-page .lac-steps .lac-step:nth-child(even) .lac-step-content,
    .lac-landing-page .lac-how-it-works .lac-step:nth-child(odd) .lac-step-content,
    .lac-landing-page .lac-how-it-works .lac-step:nth-child(even) .lac-step-content {
        grid-column: 1;
        text-align: center;
        grid-row: 2;
    }

    .lac-landing-page .lac-steps .lac-step:nth-child(odd) .lac-step-number,
    .lac-landing-page .lac-steps .lac-step:nth-child(even) .lac-step-number,
    .lac-landing-page .lac-how-it-works .lac-step:nth-child(odd) .lac-step-number,
    .lac-landing-page .lac-how-it-works .lac-step:nth-child(even) .lac-step-number {
        grid-column: 1;
        grid-row: 1;
        margin: 0 auto;
    }

    .lac-landing-page .lac-steps .lac-step:nth-child(odd) .lac-step-visual,
    .lac-landing-page .lac-steps .lac-step:nth-child(even) .lac-step-visual,
    .lac-landing-page .lac-how-it-works .lac-step:nth-child(odd) .lac-step-visual,
    .lac-landing-page .lac-how-it-works .lac-step:nth-child(even) .lac-step-visual {
        grid-column: 1;
        grid-row: 3;
    }

    .lac-landing-page .lac-steps .lac-step:nth-child(odd) .lac-step-content::after,
    .lac-landing-page .lac-steps .lac-step:nth-child(even) .lac-step-content::after,
    .lac-landing-page .lac-how-it-works .lac-step:nth-child(odd) .lac-step-content::after,
    .lac-landing-page .lac-how-it-works .lac-step:nth-child(even) .lac-step-content::after {
        display: none;
    }

    .lac-slider-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .lac-hero-title {
        font-size: 2.5rem;
    }

    .lac-hero-subtitle {
        font-size: 1.1rem;
    }

    .lac-hero-stats {
        gap: 30px;
    }

    .lac-stat-number {
        font-size: 2rem;
    }

    .lac-section-title {
        font-size: 2rem;
    }

    .lac-section-subtitle {
        font-size: 1rem;
    }

    .lac-quote-text {
        font-size: 1.3rem;
    }

    .lac-step-number {
        width: 90px;
        height: 90px;
    }

    .lac-step-number span {
        font-size: 2rem;
    }

    .lac-step-title {
        font-size: 1.3rem;
    }

    .lac-step-description {
        font-size: 0.95rem;
    }

    .lac-step-visual {
        height: 100px;
    }

    .lac-features-grid {
        grid-template-columns: 1fr;
    }

    .lac-candles-slider {
        grid-template-columns: 1fr;
    }

    .lac-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .lac-cta-title {
        font-size: 2rem;
    }

    .lac-cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .lac-hero-title {
        font-size: 2rem;
    }

    .lac-hero-cta {
        flex-direction: column;
    }

    .lac-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Candles Carousel - All Lit Candles Section
   ========================================================================== */
.lac-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    width: 100%;
}

.lac-carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-width: 0;
}

.lac-carousel-track {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 15px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

/* Carousel items use plugin's candle card styles */
.lac-carousel-item.lac-candle-item {
    flex: 0 0 calc((100% - 45px) / 4);
    min-width: calc((100% - 45px) / 4);
    max-width: calc((100% - 45px) / 4);
    cursor: pointer;
    box-sizing: border-box;
}

/* Carousel navigation buttons */
.lac-carousel-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(217, 184, 143, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 93, 82, 0.1);
    color: #6b5d52;
}

.lac-carousel-btn:hover {
    background: linear-gradient(135deg, #d9b88f 0%, #c9a67a 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 6px 20px rgba(217, 184, 143, 0.4);
    transform: scale(1.05);
}

.lac-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.lac-carousel-btn:disabled:hover {
    background: white;
    color: #6b5d52;
    border-color: rgba(217, 184, 143, 0.3);
    box-shadow: 0 4px 15px rgba(107, 93, 82, 0.1);
}

.lac-carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Carousel dots indicator */
.lac-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.lac-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(217, 184, 143, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.lac-carousel-dot:hover {
    background: rgba(217, 184, 143, 0.5);
}

.lac-carousel-dot.active {
    background: #d9b88f;
    transform: scale(1.2);
}

/* View all button */
.lac-carousel-view-all {
    text-align: center;
    margin-top: 40px;
}

.lac-view-all-candles {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive carousel */
@media (max-width: 1024px) {
    .lac-carousel-item.lac-candle-item {
        flex: 0 0 calc((100% - 30px) / 3);
        min-width: calc((100% - 30px) / 3);
        max-width: calc((100% - 30px) / 3);
    }
}

@media (max-width: 768px) {
    .lac-carousel-item.lac-candle-item {
        flex: 0 0 calc((100% - 15px) / 2);
        min-width: calc((100% - 15px) / 2);
        max-width: calc((100% - 15px) / 2);
    }

    .lac-carousel-wrapper {
        gap: 10px;
    }

    .lac-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .lac-carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .lac-carousel-btn {
        display: none;
    }

    .lac-carousel-wrapper {
        padding: 20px 0;
    }

    .lac-carousel-track {
        gap: 12px;
    }

    .lac-carousel-item.lac-candle-item {
        flex: 0 0 calc((100% - 12px) / 2);
        min-width: calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
    }
}
