.elementor-15222 .elementor-element.elementor-element-1d537fa{--display:flex;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS *//* CSS Variables for Easy Access */
:root {
    --main-color: #14452f;
    --main-bg-color: #f9f9f9;
    --accent-one: #61CE70;
    --accent-two: #929BD5;
    --primary-font: 'Lora', serif;
    --secondary-font: 'Cinzel', serif;
    --text-font: 'Arimo', sans-serif;
    --accent-font: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Text: Arimo - Most text to be main color */
    font-family: var(--text-font);
    line-height: 1.8;
    color: var(--main-color); 
    background-color: var(--main-bg-color); /* Main Background Color */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings & Special Text */
h1, h2, h3 {
    color: var(--main-color); /* Most text to be main color */
    font-family: var(--secondary-font); /* Secondary font: Cinzel */
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    font-weight: 400;
}

p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: var(--main-color); /* Most text to be main color */
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(20, 69, 47, 0.6), rgba(20, 69, 47, 0.6)), url('https://anandalodgecr.com/wp-content/uploads/2024/12/Huachuma-San-Pedro-New-Years-Community-Ceremony.jpeg'); /* Main color overlay */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--main-bg-color); /* White text for contrast */
}

.hero-content {
    max-width: 900px;
    padding: 40px;
}

.hero h1 {
    font-family: var(--primary-font); /* Primary font: Lora */
    font-size: 3.8rem;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--main-bg-color); /* White text for contrast */
}

.hero h2 {
    font-family: var(--secondary-font); /* Secondary font: Cinzel */
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 300;
    font-style: italic;
    color: var(--main-bg-color); /* White text for contrast */
}

.hero-date {
    font-family: var(--text-font); /* Text: Arimo */
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--main-bg-color); /* White text for contrast */
}

.hero p {
    font-family: var(--text-font); /* Text: Arimo */
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.9;
    color: var(--main-bg-color); /* White text for contrast */
}

/* CTA Button - Main Color BG, Main Background Color Text */
.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--main-color); /* Green (Main Color) */
    color: var(--main-bg-color); /* White Text (Main Background Color) */
    text-decoration: none;
    font-size: 1.15rem;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    font-family: var(--accent-font); /* Accent: Roboto */
    border: 2px solid var(--main-color); /* Ensure border matches */
}

.cta-button:hover {
    background-color: var(--accent-one); /* Accent one for hover */
    color: var(--main-color); /* Main color text on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border: 2px solid var(--accent-one);
}

.hero-secondary {
    margin-top: 25px;
    font-size: 1rem;
    opacity: 0.95;
    color: var(--main-bg-color);
}

/* Section Styles */
section {
    padding: 90px 0;
    background-color: var(--main-bg-color); /* Default to main background */
}

.section-dark {
    background-color: #14452f; /* Using main background color for this section as requested */
}


.section-dark h2,
.section-dark h3 {
    color: var(--main-bg-color);
}

.section-accent p {
     color: "white";
}


.section-accent {
    color: var(--main-bg-color);
}

.section-accent h2,
.section-accent h3 {
    color: var(--main-bg-color);
}

.section-accent p {
     color: var(--main-bg-color);
}

/* Invitation Section */
.invitation {
    background: var(--main-bg-color);
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    text-align: center;
    max-width: 100vh;
    margin: 0 auto;
    font-size: 1.35rem;
    line-height: 2;
}

.invitation-emphasis {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-one); /* Accent one for emphasis */
    margin: 30px 0;
}

/* Timing Section */
.timing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.timing-box {
    background: var(--main-bg-color);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid var(--accent-one);
}

.timing-box h3 {
    color: var(--main-color); /* Changed to main color */
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--accent-font); /* Accent: Roboto */
}

/* Is This For You */
.for-you-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.for-you-box {
    background: var(--main-bg-color);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.for-you-box h3 {
    color: var(--main-color); /* Changed to main color */
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

/* What Makes Different */
.different-grid {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    background: var(--main-bg-color);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-left: 5px solid var(--accent-one);
}

.different-item h3 {
    color: var(--main-color); /* Changed to main color */
    margin-bottom: 25px;
    font-size: 1.7rem;
    text-align: left;
}

.different-item ul li {
    color: var(--main-color);
}

/* Journey Timeline */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.journey-day {
    background: var(--main-bg-color);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-top: 4px solid var(--accent-two); /* Accent two color for border */
}

.journey-day h3 {
    color: var(--main-color); /* Changed to main color */
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: center;
    font-family: var(--accent-font); /* Accent: Roboto */
}

.journey-day p {
    color: var(--main-color);
}

.journey-day ul {
    list-style: none;
    padding: 0;
}

.journey-day li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: var(--main-color);
}

.journey-day li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent-one); /* Accent one for bullet */
    font-size: 0.9rem;
}

/* Included Grid */
.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.included-box {
    background: rgba(20, 69, 47, 0.6);
    padding: 30px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--main-color); /* Text should be white for contrast on accent background */
}

.included-box h3 {
    color: var(--main-bg-color); /* White text */
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--accent-font); /* Accent: Roboto */
}

.included-box ul {
    list-style: none;
    padding: 0;
}

.included-box li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    color: var(--main-bg-color); /* White text */
}

.included-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--accent-one); /* Accent one for checkmark */
}

/* Investment Section */
.investment-container {
    max-width: 900px;
    margin: 60px auto;
    background: var(--main-bg-color);
    padding: 70px 60px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    text-align: center;
}

.investment-container

.investment-price {
    font-family: var(--accent-font); /* Accent: Roboto */
    font-size: 3.5rem;
    color: var(--main-color); /* Main color for price */
    font-weight: 300;
    margin: 30px 0;
}

.investment-original {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 2rem;
}

.early-bird {
    background: var(--main-color); /* Main color */
    color: var(--main-bg-color);
    padding: 35px;
    border-radius: 10px;
    margin: 40px 0;
}

.early-bird h3 {
    color: var(--main-bg-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.early-bird p {
    color: var(--main-bg-color);
}

.bonus-box {
    background: var(--main-bg-color);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid var(--accent-one); /* Accent one for highlight */
}

.bonus-box h3 {
    color: var(--main-color) !important;
}

/* Guides Section */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.guide-card {
    background: var(--main-bg-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.guide-card h3 {
    color: var(--main-color);
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.guide-card .role {
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
    font-size: 1.05rem;
    font-family: var(--text-font);
}

.guide-card p {
    color: var(--main-color);
}

/* Schedule */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.schedule-day {
    background: var(--main-bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent-one);
}

.schedule-day h3 {
    color: var(--main-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: left;
}

.schedule-day ul {
    list-style: none;
    padding: 0;
}

.schedule-day li {
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--main-color);
}

.schedule-day li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonial {
    background: var(--main-bg-color);
    padding: 45px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    font-style: italic;
    font-size: 1.15rem;
    border-left: 5px solid var(--accent-one); /* Accent one for border */
}

.testimonial-author {
    margin-top: 25px;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    color: var(--main-color); /* Main color for author */
}

.testimonial p {
    color: var(--main-color);
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 120px 0;
    background: linear-gradient(var(--main--bg-color)); /* Main color to accent one */
    color: var(--main-bg-color);
}

.final-cta h2 {
    color: var(--main-color);
    font-size: 3.2rem;
    margin-bottom: 30px;
}

.final-cta p {
    color: var(--main-color);
}


.final-cta-button {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--accent-one); 
    color: white; /* White Text (Main Background Color) */
    text-decoration: none;
    font-size: 1.15rem;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    font-family: var(--accent-font); /* Accent: Roboto */
    border: 2px solid var(--main-color); /* Ensure border matches */
}

.final-cta-button:hover {
    background-color: var(--accent-one); /* Accent one for hover */
    color: var(--main-color); /* Main color text on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border: 2px solid var(--accent-one);
}


.trust-indicators {
    margin-top: 40px;
    font-size: 1.15rem;
}

.trust-indicators p {
    margin: 12px 0;
}

/* Blockquote */
blockquote {
    font-style: italic;
    font-size: 1.4rem;
    text-align: center;
    margin: 50px auto;
    padding: 35px;
    border-left: 5px solid var(--accent-two); /* Accent two for border */
    max-width: 800px;
    background: var(--main-bg-color);
    border-radius: 10px;
    color: var(--main-color);
}

/* Add-ons Table */
.addons-table {
    max-width: 800px;
    margin: 40px auto;
    background: var(--main-bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.addons-table table {
    width: 100%;
    border-collapse: collapse;
    color: var(--main-color);
}

.addons-table th {
    background: var(--main-color); /* Main color */
    color: var(--main-bg-color);
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-family: var(--accent-font);
}

.addons-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.addons-table tr:nth-child(even) {
    background-color: rgba(20, 69, 47, 0.05); /* Slight main color tint */
}

.addons-table tr:last-child td {
    border-bottom: none;
}

/* Pricing & Dates Banner adjustments */
.price-banner-box {
    text-align: center;
    padding: 30px;
    background: var(--main-bg-color);
    border-radius: 10px;
    border: 1px solid rgba(20, 69, 47, 0.2); /* Subtle border */
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.pricing-option {
    background: #f8f5f0;
    padding: 35px;
    border-radius: 10px;
    border: 3px solid #7a9d96;
}

.pricing-option h3 {
    color: #7a9d96;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
    color: #2f4f4f;
    font-weight: 600;
    margin: 15px 0;
        }

.price-banner-box-accent {
    text-align: center;
    padding: 30px;
    background: var(--main-color);
    border-radius: 10px;
    color: var(--main-bg-color);
}

.price-banner-box h3 {
    color: var(--main-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--accent-font);
}

.price-banner-box p {
    color: var(--main-color);
}

.price-banner-box-accent h3 {
    color: var(--main-bg-color);
}

.price-banner-box-accent p {
    color: var(--main-bg-color);
}

.price-banner-highlight {
     color: var(--accent-one) !important;
     font-family: var(--secondary-font) !important;
}

 /* Dates Grid */
        .dates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .date-card {
            background: white;
            padding: 35px 30px;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            border-top: 4px solid #7a9d96;
            text-align: center;
        }

        .date-card h3 {
            color: #7a9d96;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }



/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }

    .investment-price {
        font-size: 2.5rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 900px) {
    section[class="section-dark"] div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

.highlight-box {
    background: var(--main-color);
    color: var(--main-bg-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
    font-size: 1.2rem;
}

.highlight-box p {
     color: var(--main-bg-color);
}

/* Accordion FAQ Styles */
.faq-accordion {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: var(--main-color);
    color: var(--main-bg-color);
    padding: 20px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: var(--accent-font);
}

.faq-question:hover {
    background: var(--accent-one);
    color: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.faq-question:hover .faq-icon {
    color: var(--main-color);
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--main-bg-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--main-bg-color);
    border-radius: 0 0 8px 8px;
    margin-top: -8px;
    padding: 0 25px;
}

.faq-accordion.active .faq-answer {
    padding: 25px;
    border: 2px solid var(--accent-one);
    border-top: none;
}

.faq-answer p {
    margin: 0;
    color: var(--main-color);
    line-height: 1.8;
    font-size: 1.05rem;
}/* End custom CSS */