/* --- Global Styles & Variables --- */
:root {
    --primary-color: #eec437; /* Brighter, more distinct Gold */
    --primary-dark: #d99e0a; /* Darker Gold/Bronze */
    --secondary-color: #F8F4E9; /* Slightly warmer off-white */
    --accent-color: #FFC87C; /* Softer, warmer accent */
    --accent-light: #FFEBCD; /* Very light BlanchedAlmond for highlights */
    --text-color: #4A4A4A;
    --heading-color: #ec6f16; /* SaddleBrown - Deeper brown/gold */
    --dark-accent: #333333;
    --light-bg: #FCFBF7;
    --white: #ffffff;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    --border-radius: 12px;
    --shadow: 0 8px 25px rgba(184, 134, 11, 0.15);
    --gradient-border: linear-gradient(135deg, var(--accent-light), var(--primary-color), var(--primary-dark));
    --subtle-texture: linear-gradient(45deg, rgba(0,0,0,0.01) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.01) 75%, rgba(0,0,0,0.01)),
                       linear-gradient(45deg, rgba(0,0,0,0.01) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.01) 75%, rgba(0,0,0,0.01));
    --texture-size: 6px 6px;
}

/* --- Base Reset & Typography --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--body-font); color: var(--text-color);
    background-color: var(--light-bg); background-image: var(--subtle-texture);
    background-size: var(--texture-size); line-height: 1.7; font-weight: 400;
    overflow-x: hidden;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 30px; position: relative; z-index: 2; }
h1, h2, h3, h4 { font-family: var(--heading-font); color: var(--heading-color); margin-bottom: 1rem; font-weight: 700; line-height: 1.3; }
h2 { font-size: 2.6rem; }
h3 { font-size: 1.7rem; color: var(--primary-dark); font-weight: 600; }
h4 { font-size: 1.2rem; color: var(--primary-color); font-weight: 600; margin-bottom: 0.5rem; }
p { margin-bottom: 1.3rem; font-weight: 600; color: var(--text-color); font-size: 1.15rem; }
.section-intro, .pricing-intro, .contact-intro { font-size: 1.1rem; max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; margin-bottom: 3rem; color: #555; }
a { color: var(--primary-color); text-decoration: none; transition: color 0.3s ease, opacity 0.3s ease; }
a:hover { color: var(--primary-dark); opacity: 0.85; }
img { max-width: 100%; height: auto; display: block; }
section { padding: 100px 0; position: relative; overflow: hidden; }
.section-divider { border-top: 1px solid transparent; border-bottom: 1px solid transparent; border-image: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent) 1; padding-bottom: 100px; }
.section-title { position: relative; display: inline-block; margin-bottom: 1.5rem; padding: 0 20px; font-size: 2.6rem; color: var(--heading-color); text-align: center; }
.section-title::before, .section-title::after { content: ''; position: absolute; top: 50%; transform: translateY(-50%); height: 1px; width: 60px; background: linear-gradient(to right, transparent, var(--primary-color)); opacity: 0.7; }
.section-title::before { left: 100%; margin-left: 20px; }
.section-title::after { right: 100%; margin-right: 20px; background: linear-gradient(to left, var(--primary-color), transparent); }

/* --- Decorative Side Elements --- */
.decorative-section::before, .decorative-section::after {
    content: ''; position: absolute; top: 50%; transform: translateY(-50%);
    width: 150px; height: 300px; background-repeat: no-repeat;
    background-size: contain; z-index: 1; opacity: 0.08; pointer-events: none;
    transition: opacity 0.5s ease;
}
.decorative-section::before { left: 10px; background-image: url('ornament-left.png'); background-position: left center; } /* *** REPLACE FILENAME *** */
.decorative-section::after { right: 10px; background-image: url('ornament-right.png'); background-position: right center; } /* *** REPLACE FILENAME *** */

/* --- Header --- */
.site-header {  padding: 20px 0; position: absolute; width: 100%; top: 0; left: 0; z-index: 10; transition: background-color 0.3s ease; }
.header-container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo-link { display: inline-block; flex-shrink: 0; }
.logo-image { max-height: 55px; width: auto; }
.header-text { text-align: right; flex-grow: 1; }
.logo-text { font-size: 2.2rem; color: var(--heading-color); margin-bottom: 0; }
.tagline { font-size: 0.95rem; color: #ffffff; letter-spacing: 1.8px; margin-bottom: 0; }

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
    padding: 140px 30px 80px 30px; color: var(--white);
    /* *** REPLACE 'your-hero-image.png' *** */
    background-image: url('hero.jpg');
    background-size: cover; background-position: center center; background-repeat: no-repeat;
}
.hero-section::before { /* Overlay */
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
    z-index: 1;
}
.hero-container {
    z-index: 2; /* Above overlay */
    position: relative; /* For positioning mandalas */
    max-width: 800px; /* Limit content width */
}
.hero-content {
    max-width: 750px; margin: 0 auto;
    position: relative; /* Needed for z-index */
    z-index: 4; /* Ensure text is above mandalas */
     /* Animation state handled by JS */
}
.hero-content h2 { font-size: 3.5rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); }
.hero-content p { font-size: 1.2rem; margin-bottom: 3rem; color: rgba(255, 255, 255, 0.9); text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); font-weight: 300; }
.cta-button { display: inline-block; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--white); padding: 18px 45px; border-radius: 30px; font-weight: 600; font-family: var(--body-font); text-transform: uppercase; letter-spacing: 1.8px; transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); border: none; position: relative; z-index: 1; cursor: pointer; overflow: hidden; }
.cta-button::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1); }
.cta-button:hover::before { left: 100%; }
.cta-button:hover { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); transform: translateY(-4px) scale(1.03); background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); }
.cta-button span { position: relative; z-index: 2; }

/* Mandala Styling */
@keyframes rotateMandala {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* Common Mandala Styles */
.mandala-left, .mandala-right {
    position: absolute;
    width: 380px; /* Adjust size as needed */
    height: auto;
    opacity: 0.2; /* Adjust transparency */
    z-index: 3; /* Below content, above overlay */
    pointer-events: none; /* Allow clicks through */
    animation: rotateMandala 40s linear infinite; /* Adjust speed (40s) */
}

/* Desktop Positioning (Default) */
.mandala-left {
    top: 10%;
    left: -75%; /* Position left of the container */
    transform: translateY(-50%);
    animation-direction: normal; /* Clockwise */
}
.mandala-right {
    top: 10%;
    right: -75%; /* Position right of the container */
    transform: translateY(-50%);
    animation-direction: reverse; /* Counter-clockwise */
}


/* --- How It Works Section --- */
/* (Keep existing styles from previous version) */
.how-it-works-section { background-color: rgba(255, 255, 255, 0.7); }
.steps-container { display: flex; justify-content: space-around; gap: 30px; text-align: center; flex-wrap: wrap; margin-top: 3rem; }
.step { flex-basis: calc(33.333% - 25px); min-width: 250px; padding: 30px; background: rgba(255, 255, 255, 0.6); border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.step-icon { font-size: 2.8rem; color: var(--white); background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); width: 85px; height: 85px; line-height: 85px; border-radius: 50%; margin: 0 auto 1.8rem auto; box-shadow: 0 4px 10px rgba(184, 134, 11, 0.3); display: inline-flex; justify-content: center; align-items: center; transition: all 0.4s ease; }
.step:hover .step-icon { transform: scale(1.1) rotate(-10deg); box-shadow: 0 6px 15px rgba(184, 134, 11, 0.4); }
.step h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--primary-dark); }
.step p { font-size: 1rem; color: #555; line-height: 1.6; }


/* --- Areas of Guidance Section --- */
/* (Keep existing styles from previous version) */
.areas-guidance-section { background-color: var(--secondary-color); }
.guidance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 35px; margin-top: 3rem; }
.guidance-item { text-align: center; padding: 30px 25px; background: var(--white); border-radius: var(--border-radius); box-shadow: 0 5px 20px rgba(0,0,0,0.07); border: 1px solid var(--secondary-color); transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; }
.guidance-item:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--accent-light); }
.guidance-item i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1.5rem; display: inline-block; transition: transform 0.3s ease; }
.guidance-item:hover i { transform: scale(1.1); }
.guidance-item h4 { margin-bottom: 0.8rem; font-size: 1.3rem; color: var(--heading-color); }
.guidance-item p { font-size: 0.95rem; color: #666; margin-bottom: 0; line-height: 1.6; }


/* --- Pricing Section --- */
/* (Keep existing styles from previous version) */
.pricing-section { background-color: rgba(248, 244, 233, 0.8); }
.pricing-options { display: flex; justify-content: center; gap: 45px; flex-wrap: wrap; margin-top: 1rem; }
.price-card { background: linear-gradient(150deg, var(--white) 0%, var(--secondary-color) 100%); padding: 40px; border-radius: var(--border-radius); box-shadow: 0 5px 20px rgba(0,0,0,0.08); text-align: center; flex: 1; min-width: 280px; max-width: 430px; position: relative; border: 1px solid transparent; border-image: linear-gradient(160deg, var(--accent-light), var(--primary-color) 50%, var(--accent-light)) 1; background-clip: padding-box; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.price-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(184, 134, 11, 0.2); }
.price-card.advanced { border-image: linear-gradient(160deg, var(--primary-color), var(--primary-dark) 50%, var(--primary-color)) 1; }
.price-card h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--heading-color); }
.price-card p { color: var(--text-color); margin-bottom: 1rem; font-size: 1rem; }
.contribution { font-weight: 600; margin-bottom: 0.8rem; color: var(--text-color); font-size: 1.1rem; }
.suggested-amounts { margin-bottom: 1.8rem; }
.suggested-amounts span { display: inline-block; background-color: var(--white); border: 1px solid var(--accent-light); padding: 8px 18px; border-radius: 20px; margin: 6px; font-size: 1rem; font-weight: 400; color: var(--primary-dark); cursor: pointer; transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease; }
.suggested-amounts span:hover { background-color: var(--accent-light); border-color: var(--primary-color); transform: scale(1.05); }
.contribution-note { font-size: 0.95rem; color: #777; margin-top: 1.5rem; }
.cta-button-small { display: inline-block; background: transparent; color: var(--primary-dark); padding: 12px 30px; border-radius: 25px; font-weight: 600; margin-top: 1rem; font-family: var(--body-font); transition: all 0.3s ease; border: 1px solid var(--primary-color); }
.cta-button-small:hover { background: var(--primary-color); color: var(--white); transform: scale(1.03); border-color: var(--primary-color); }
.payment-note { text-align: center; margin-top: 2.5rem; font-size: 0.95rem; color: #777; }


/* --- Contact Section --- */
/* (Keep existing styles from previous version) */
.contact-section { background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), var(--light-bg)); padding-bottom: 120px; }
.contact-buttons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 1rem; }
.contact-button { display: inline-flex; align-items: center; gap: 15px; padding: 18px 40px; border-radius: 30px; font-weight: 600; transition: all 0.4s ease; min-width: 240px; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); border: none; position: relative; overflow: hidden; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; font-size: 0.95rem; font-family: var(--body-font); }
.contact-button.whatsapp { background: #25D366; color: var(--white); }
.contact-button.email { background: #777; color: var(--white); }
.contact-button.call { background: var(--primary-color); color: var(--white); }
.contact-button::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255, 255, 255, 0.2); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease; opacity: 0; z-index: 1; }
.contact-button:hover::before { width: 280%; height: 280%; opacity: 1; }
.contact-button:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 7px 18px rgba(0,0,0,0.15); }
.contact-button.whatsapp:hover { background-color: #1DAE54; box-shadow: 0 7px 18px rgba(29, 174, 84, 0.3); }
.contact-button.email:hover { background-color: #555; box-shadow: 0 7px 18px rgba(85, 85, 85, 0.3); }
.contact-button.call:hover { background-color: var(--primary-dark); box-shadow: 0 7px 18px rgba(184, 134, 11, 0.3); }
.contact-button i, .contact-button span { position: relative; z-index: 2; }
.contact-button i { font-size: 1.4rem; }


/* --- Footer --- */
/* (Keep existing styles from previous version) */
.site-footer { background-color: var(--dark-accent); color: #aaa; text-align: center; padding: 50px 20px; font-size: 0.9rem; margin-top: 0; border-top: 4px solid var(--primary-color); }
.site-footer p { color: #bbb; margin-bottom: 0.5rem; line-height: 1.6; }
.site-footer a { color: var(--accent-light); }
.site-footer a:hover { color: var(--white); }


/* --- Responsiveness --- */
@media (max-width: 1200px) {
    .decorative-section::before { left: 5px; width: 120px; opacity: 0.06; }
    .decorative-section::after { right: 5px; width: 120px; opacity: 0.06;}
     /* Adjust mandala positions earlier if needed */
    .mandala-left { left: -80px; width: 150px; }
    .mandala-right { right: -80px; width: 150px; }
}
@media (max-width: 992px) {
     .section-title::before, .section-title::after { width: 40px; margin-left: 15px; margin-right: 15px;}
     .step { flex-basis: calc(50% - 20px); }
     .guidance-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px;}
     .decorative-section::before, .decorative-section::after { display: none; }
     /* Move mandalas closer or hide one */
     .mandala-left { left: -50px; width: 130px; opacity: 0.15; }
     .mandala-right { right: -50px; width: 130px; opacity: 0.15; }
}
@media (max-width: 768px) {
    /* Header Mobile */
    .header-container { flex-direction: column; gap: 8px; }
    .header-text { text-align: center; }
    .logo-text { font-size: 1.9rem; }
    .tagline { font-size: 0.9rem; }
    .site-header { padding: 15px 0; }
    .hero-section { padding-top: 150px; background-attachment: scroll; }
    /* General Mobile Styles */
    h2, .section-title { font-size: 2.2rem; }
    .hero-content h2 { font-size: 2.8rem; }
    section { padding: 80px 0; }
    .container { padding: 0 20px; }
    .steps-container { flex-direction: column; align-items: center; gap: 25px;}
    .step { flex-basis: 90%; max-width: 400px; }
    .guidance-grid { grid-template-columns: 1fr; gap: 20px;}
    .guidance-item { padding: 25px 20px; }
    .pricing-options { flex-direction: column; align-items: center; gap: 30px;}
    .price-card { width: 90%; max-width: 450px; padding: 30px; }
    .contact-buttons { flex-direction: column; align-items: center; gap: 20px; }
    .contact-button { width: 90%; max-width: 340px; padding: 16px 30px; }
    .section-title::before, .section-title::after { display: none; }
    .section-title { padding: 0; }

    /* Mobile Mandala Positioning */
    .mandala-right {
        display: none; /* Hide the right mandala */
    }
    .mandala-left {
        left: 10%; /* Center horizontally */
        top: 50%; /* Center vertically */
        width: 380px; /* Make it larger */
        opacity: 0.1; /* Adjust opacity for behind-text effect */
        transform: translate(-50%, -50%); /* Precise centering */
        animation-name: rotateMandala; /* Ensure animation applies */
        animation-direction: normal;
    }
    /* Ensure hero content has enough padding/margin if mandala overlaps too much */
    .hero-content { padding: 20px 0; } /* Add some padding to content */

}
@media (max-width: 480px) {
    html { font-size: 15px; }
    .logo-image { max-height: 45px; }
    .logo-text { font-size: 1.7rem; }
    .tagline { font-size: 0.85rem; }
    .hero-content h2 { font-size: 2.3rem; }
    .hero-content p { font-size: 1.1rem; }
    .cta-button { padding: 16px 35px; font-size: 0.9rem; }
    h2, .section-title { font-size: 2rem; margin-bottom: 1rem; }
    .section-intro, .pricing-intro, .contact-intro { font-size: 1rem; margin-bottom: 2rem;}
    section { padding: 60px 0; }
    .step-icon { width: 75px; height: 75px; font-size: 2.5rem; }
    .price-card h3 { font-size: 1.6rem; }
    .contact-button { padding: 15px 25px; font-size: 0.9rem; width: 95%; }
    .footer { padding: 40px 15px; }
    /* Adjust mobile mandala size */
    .mandala-left { top:60%;left:1%; width: 340px; opacity: 0.12; }
    
}

/* --- Animation Visibility (Using JS to add .visible class) --- */
/* Initial hidden state */
.hero-content, .step, .guidance-item, .pricing-intro, .price-card, .payment-note, .contact-intro, .contact-button {
    opacity: 0;
    transform: translateY(30px);
}
/* Visible state */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* Staggered delays */
.hero-content.visible { transition-delay: 0.2s; }
.step:nth-child(1).visible { transition-delay: 0.1s; }
.step:nth-child(2).visible { transition-delay: 0.25s; }
.step:nth-child(3).visible { transition-delay: 0.4s; }
.guidance-item:nth-child(1).visible { transition-delay: 0.1s; }
.guidance-item:nth-child(2).visible { transition-delay: 0.2s; }
.guidance-item:nth-child(3).visible { transition-delay: 0.3s; }
.guidance-item:nth-child(4).visible { transition-delay: 0.4s; }
.guidance-item:nth-child(5).visible { transition-delay: 0.5s; }
.guidance-item:nth-child(6).visible { transition-delay: 0.6s; }
.pricing-intro.visible { transition-delay: 0.1s; }
.price-card:nth-of-type(1).visible { transition-delay: 0.25s; }
.price-card:nth-of-type(2).visible { transition-delay: 0.4s; }
.payment-note.visible { transition-delay: 0.5s; }
.contact-intro.visible { transition-delay: 0.1s; }
.contact-button.whatsapp.visible { transition-delay: 0.25s; }
.contact-button.email.visible { transition-delay: 0.4s; }
.contact-button.call.visible { transition-delay: 0.55s; }
