/* ==========================================================================
   Design System & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-cream: #FAF6EB;
    --text-dark: #000;
    --text-muted: #555555;
    --gold-accent: #B59A57;
    --gold-dark: #8E7538;
    --gold-light: #D1BE93;
    --border-color: rgba(181, 154, 87, 0.3);
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 40px 24px 80px 24px;
}

.hero-description {
    font-family: var(--font-serif);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.45;
    color: #000;
    text-align: left;
    text-justify: inter-word;
}

.hero-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    aspect-ratio: 9 / 13;
    background-color: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Custom Play Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
    cursor: pointer;
    z-index: 10;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(181, 154, 87, 0.9) 0%, rgba(142, 117, 56, 0.95) 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(181, 154, 87, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
    fill: #FAF6EB;
}

.video-overlay:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(181, 154, 87, 0.6);
}

/* ==========================================================================
   Second Section (Intro & CTA)
   ========================================================================== */
.intro-section {
    padding: 80px 24px;
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text-1 {
    font-size: 32px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.intro-text-2 {
    font-size: 32px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* CTA Metallic/Gold Button */
.cta-btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: #1a150a;
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8E7538 0%, #D1BE93 50%, #8E7538 100%);
    background-size: 200% auto;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(142, 117, 56, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(181, 154, 87, 0.5);
    text-align: center;
}

.cta-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 117, 56, 0.5);
}

.cta-btn:active {
    transform: translateY(1px);
}

.cta-subtext {
    font-size: 18px;
    color: var(--text-muted);
}

.cta-subtext a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.cta-subtext a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Third Section (Pain Points)
   ========================================================================== */
.points-section {
    padding: 80px 24px 120px 24px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.points-image-container {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.points-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Pain Points Grid styling */
.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 40px;
    text-align: left;
}

.point-item {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    min-height: 140px;
}

.point-text {
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.45;
    color: var(--text-dark);
}

.empty-item {
    border-top: none;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate-triggered {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 60px;
    }
    
    .hero-description {
        font-size: 22px;
        text-align: center;
    }
    
    .video-wrapper {
        aspect-ratio: 16 / 10;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .points-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 30px;
    }
    
    .empty-item {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 0;
    }
    
    .logo-img {
        height: 48px;
    }
    
    .hero-section {
        padding-top: 20px;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .video-wrapper {
        border-radius: 24px;
    }
    
    .intro-section {
        padding: 0px 24px;
    }
    
    .intro-text-1, .intro-text-2 {
        font-size: 1.05rem;
    }
    
    .cta-btn {
        padding: 14px 28px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 400px;
    }
    
    .points-section {
        padding: 50px 24px 80px 24px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .points-image-container {
        margin-bottom: 40px;
        border-radius: 16px;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .point-item {
        padding: 24px 0;
        min-height: auto;
    }
    
    .point-text {
        font-size: 1.2rem;
    }
}

.answers-section {
    padding: 100px 24px;
}

.answers-title {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.answers-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: flex-start;
}

.answers-img {
    width: 100%;
    height: auto;
    border-radius: 36px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: block;
}

.answers-subtitle {
    font-family: var(--font-serif);
    font-size: 40px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 400;
}

.mt-40 {
    margin-top: 40px;
}

.answers-list {
    list-style-type: square;
    padding-left: 20px;
}

.answers-list li {
    font-family: var(--font-sans);
    font-size: 26px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 15px;
}

.methodology-section {
    padding: 100px 24px;
}

.methodology-title {
    font-family: var(--font-serif);
    font-size: 50px;
    color: #000;
    margin-bottom: 60px;
    font-weight: 400;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.methodology-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(181, 154, 87, 0.15);
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 30px 24px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-text {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 100px 24px 120px 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 50px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 400;
}

.about-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text {
    font-family: var(--font-sans);
    font-size: 20px;
    line-height: 1.7;
    color: #333;
}

.about-text a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
}

.about-text a:hover {
    text-decoration: underline;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 36px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: block;
}

/* ==========================================================================
   Responsive Rules for New Sections
   ========================================================================== */
@media (max-width: 992px) {
    .answers-section, .methodology-section, .about-section {
        padding: 10px 24px;
    }

    .answers-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .answers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .answers-img {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-col {
        order: -1;
    }

    .about-img {
        max-width: 500px;
        margin: 0 auto;
    }

    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .answers-title {
        font-size: 24px;
    }

    .answers-subtitle {
        font-size: 28px;
    }

    .answers-list li {
        font-size: 16px;
    }

    .methodology-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-text {
        font-size: 16px;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 100px 24px 40px 24px;
}

.testimonials-title {
    font-family: var(--font-serif);
    font-size: 50px;
    color: #000;
    margin-bottom: 50px;
    font-weight: 400;
}

.testimonials-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 10px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 300%; /* 3 slides */
}

.testimonial-slide {
    width: 33.333%;
    flex-shrink: 0;
    padding: 10px 40px;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 34px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonial-author {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.testimonial-handle {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--gold-accent);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D3C5A5;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background: var(--gold-dark);
    transform: scale(1.3);
}

.divider {
    font-size: 32px;
    color: var(--gold-accent);
    margin-top: 80px;
    letter-spacing: 2px;
}

/* ==========================================================================
   Intro Offers Section
   ========================================================================== */
.offers-section-outer {
    background-color: #134B36; /* Deep forest green */
    padding: 100px 0;
    color: #fff;
    border-top: 1px solid var(--border-color);
}

.offers-title {
    font-family: var(--font-serif);
    font-size: 50px;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 400;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1350px;
    margin: 0 auto 50px auto;
}

.offer-card {
    background-color: #DFB465; /* Elegant mustard gold */
    border-radius: 4px;
    padding: 60px 40px;
    text-align: center;
    color: #000;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}



.offer-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-price {
    font-family: var(--font-sans);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.offer-details {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.4;
    color: #111;
}

.offers-cta-wrapper {
    margin-top: 40px;
}

.offers-cta-btn {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #8E7538 0%, #D1BE93 50%, #8E7538 100%);
    background-size: 200% auto;
    font-family: var(--font-sans);
    font-size: 22px;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.offers-cta-btn strong {
    font-weight: 700;
}

.offers-cta-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.offers-cta-subtext {
    margin-top: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

/* FAQ's Section*/
.faq-section {
    padding: 100px 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-family: var(--font-serif);
    font-size: 50px;
    color: #000;
    margin-bottom: 50px;
    font-weight: 400;
}

.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: #fff;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: #FCFAF5;
}

.faq-question {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 22px;
    color: #000;
    margin: 0;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.active .faq-body {
    /* Height will be set dynamically via JS, but fallback is max-height */
    max-height: 1000px;
}

.faq-answer {
    padding: 0 30px 24px 30px;
    font-family: var(--font-sans);
    font-size: 19px;
    color: #555;
    line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #134B36; /* Deep forest green */
    padding: 80px 0 0 0;
    color: #fff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 90px;
    width: auto;
    display: inline-block;
    filter: brightness(0) saturate(100%) invert(64%) sepia(35%) saturate(543%) hue-rotate(9deg) brightness(91%) contrast(87%);
}

.footer-accent-bar {
    height: 15px;
    background: linear-gradient(135deg, #8E7538 0%, #D1BE93 50%, #8E7538 100%);
    margin-top: 80px;
    width: 100%;
}

/* ==========================================================================
   Responsive Rules for Testimonials, Offers, FAQ & Footer
   ========================================================================== */
@media (max-width: 992px) {
    .testimonials-section, .offers-section-outer, .faq-section {
        padding: 60px 24px;
    }

    .testimonials-title, .offers-title, .faq-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .testimonial-quote {
        font-size: 26px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }

    .offer-card {
        padding: 45px 30px;
    }

    .offers-cta-btn {
        font-size: 18px;
        padding: 14px 30px;
    }

    .faq-header {
        padding: 20px 24px;
    }

    .faq-answer {
        padding: 0 24px 20px 24px;
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        padding: 10px 15px;
    }

    .testimonial-quote {
        font-size: 20px;
    }

    .offer-price {
        font-size: 38px;
    }

    .offer-details {
        font-size: 16px;
    }

    .faq-question {
        font-size: 16px;
    }

    .footer {
        padding: 60px 0 0 0;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-accent-bar {
        margin-top: 60px;
    }
}

/* ==========================================================================
   Read More / Read Less Toggles
   ========================================================================== */
.more-text-hidden {
    display: none;
}

.read-more-btn, .read-less-btn {
    background: none;
    border: none;
    color: var(--gold-dark);
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 0 4px;
    display: inline;
    font-size: inherit;
    transition: color 0.3s ease;
}

.read-more-btn:hover, .read-less-btn:hover {
    color: var(--gold-accent);
}



