/* 
   Meditation 3.0 - Premium Spiritual Course Theme
   Colors: Deep Purple, Gold, Soft White, Dark Charcoal
*/

:root {
    --bg-main: #faf9f6;
    /* Warm Off-White */
    --bg-card: #ffffff;
    /* Pure White */
    --bg-overlay: rgba(250, 249, 246, 0.85);

    --accent-primary: #607d58;
    /* Sage Green */
    --accent-primary-light: #8ca388;
    --accent-secondary: #d4a373;
    /* Warm Earth Gold */
    --accent-glow: #e8f5e9;
    /* Very pale green glow */

    --text-primary: #2c2a25;
    /* Dark Warm Charcoal */
    --text-secondary: #5e5b55;
    /* Earthy Grey */
    --text-on-dark: #ffffff;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;

    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    --shadow-soft: 0 10px 30px rgba(96, 125, 88, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Button Component */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-light));
    color: var(--text-on-dark);
    box-shadow: 0 4px 20px rgba(96, 125, 88, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(96, 125, 88, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--accent-primary);
    color: var(--text-on-dark);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url('hero-bg.png');
    /* Ensure this matches your asset */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(250, 249, 242, 0.4),
            rgba(250, 249, 242, 0.8) 80%,
            var(--bg-main) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin-top: -50px;
    animation: fadeInUp 1.2s var(--ease-out);
}

.eyebrow {
    display: block;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(96, 125, 88, 0.3);
    animation: floatIn 1.5s ease-out;
    transform-origin: center;
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.highlight-text {
    background: linear-gradient(to right, var(--accent-secondary), #c0a062);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--bg-main);
}

/* Intro Description Text */
.intro-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-description p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.quote-section .section-header {
    margin-bottom: 3rem;
}

.feature-quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-primary);
}

.feature-quote footer {
    display: block;
    margin-top: 2rem;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--accent-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: #f2f7f2;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.section-header p {
    color: var(--text-secondary);
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    border: none;
    padding: 3rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(96, 125, 88, 0.15);
}

.icon-box {
    font-size: 2rem;
    color: var(--accent-secondary);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Course Modules Section */
.course-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-main);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.text-content p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.module-list {
    list-style: none;
}

.module-list li {
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 3px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.module-list li:hover {
    border-left-color: var(--accent-primary);
}

.module-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.module-desc {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.glowing-orb {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    margin: 0 auto;
    filter: blur(40px);
    opacity: 0.8;
    animation: pulse 6s infinite alternate;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f0f4f0;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.container--wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-slider-container {
    position: relative;
    width: 100%;
    margin-top: 3rem;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
    /* Default mobile: 1 slide */
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Responsive Slide Widths */
@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 50%;
        /* Tablet: 2 slides */
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 33.333%;
        /* Desktop: 3 slides */
    }
}

.testimonial-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    /* Equal height cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: 1px solid rgba(96, 125, 88, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.testimonial-card p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: var(--font-body);
    /* Using body font for readability in smaller cards */
}

.author {
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--accent-primary);
}

.slider-arrow:hover {
    background: var(--accent-primary);
    color: white;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.slider-arrow.prev {
    left: -15px;
}

.slider-arrow.next {
    right: -15px;
}

@media (max-width: 1440px) {
    .slider-arrow.prev {
        left: 5px;
    }

    .slider-arrow.next {
        right: 5px;
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cdd8cd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--accent-primary);
    width: 25px;
    border-radius: 5px;
}

/* Details & Register */
.details-section {
    padding: 8rem 0;
    background-color: var(--bg-main);
}

.details-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 20px 60px rgba(96, 125, 88, 0.15);
}

.details-card h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.details-grid {
    display: flex;
    justify-content: center;
    gap: 8rem;
    /* Increased Gap */
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-item .label {
    text-transform: uppercase;
    font-size: 1.2rem;
    /* Larger Font */
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    text-decoration: underline;
    /* Added Underline */
    text-underline-offset: 6px;
    text-decoration-color: var(--accent-primary);
}

.detail-item .value {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--accent-primary);
    font-weight: 600;
}

.price-tag {
    margin-bottom: 2rem;
}

.amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.crypto-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Footer */
.site-footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--text-on-dark);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-light));
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-on-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.social-icon {
    color: var(--text-on-dark);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .module-list li {
        padding-left: 0;
        border-left: none;
        border-bottom: 1px solid var(--accent-purple);
        padding-bottom: 1.5rem;
    }

    .details-grid {
        gap: 2rem;
        flex-direction: column;
    }

    .details-card {
        padding: 2rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Two Column Grid for Benefits */
.two-col-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    /* Force 2 columns */
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .two-col-grid {
        grid-template-columns: 1fr !important;
    }
}

.section-intro p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-intro strong {
    color: var(--text-primary);
}

.section-outro {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--accent-primary);
    font-style: italic;
    font-weight: 600;
}

/* Audience Section */
.audience-section {
    padding: 8rem 0;
    background-color: #f2f7f2;
    /* Light Sage Tint for distinction */
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.audience-card {
    background: #ffffff;
    padding: 2.5rem;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(96, 125, 88, 0.1);
}

.audience-card h3 {
    color: var(--accent-primary);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.audience-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Experience Section */
.experience-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
    text-align: center;
}

.experience-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.experience-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(96, 125, 88, 0.1);
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-primary);
}

.check-icon {
    color: var(--accent-primary);
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 1rem;
    background: rgba(96, 125, 88, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.experience-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: #f2f7f2;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(96, 125, 88, 0.1);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(96, 125, 88, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: #fff;
    z-index: 2;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
    padding-right: 2rem;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Hover State */
.faq-item:hover .faq-question .icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
    background-color: #fafaeb33;
    /* Very subtle tint */
}

/* Reveal on Hover */
.faq-item:hover .faq-content {
    max-height: 500px;
    /* Arbitrary large height to allow expansion */
    opacity: 1;
}

.faq-inner {
    padding: 1rem 2rem 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 0;
}

.faq-inner p {
    margin-bottom: 1rem;
}

.faq-inner ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.faq-inner ul li {
    margin-bottom: 0.5rem;
}

.faq-inner p:last-child {
    margin-bottom: 0;
}

/* Final CTA Section */
.cta-section {
    padding: 8rem 0;
    background-color: var(--bg-main);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

.cta-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-body p {
    margin-bottom: 1.5rem;
}

.cta-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.cta-benefits {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-light));
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(96, 125, 88, 0.2);
    color: var(--text-on-dark);
}

.cta-benefits p {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--text-on-dark);
    font-weight: 500;
}

.cta-benefits p strong {
    color: var(--text-on-dark);
}

.cta-tagline {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--accent-primary);
    font-style: italic;
    font-weight: 600;
    margin: 2.5rem 0 !important;
}

.cta-button-wrapper {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-body {
        font-size: 1rem;
    }

    .cta-tagline {
        font-size: 1.2rem;
    }
}


/* Secondary CTA - Lead Capture */
.secondary-cta-section {
    padding: 4rem 0;
    background-color: #f2f7f2;
    border-top: 1px solid rgba(96, 125, 88, 0.15);
    text-align: center;
}

.secondary-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.secondary-cta-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
    font-family: var(--font-heading);
}

.secondary-cta-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.secondary-cta-content .btn-secondary {
    font-size: 1rem;
    padding: 0.9rem 2rem;
}