/* Custom CSS Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, button, input {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-decoration: none;
    list-style: none;
}

/* Root Variables */
:root {
    --warm-orange: #F28C28;
    --soft-pink: #FFB6C1;
    --bright-pink: #c7759e;
    --burgundy: #800020;
    --dark-grey: #2C2C2C;
    --white: #FFFFFF;
    --light-bg: #F9F9F9;
}

/* Animated Background for Website */
.body-container {
    background: linear-gradient(-45deg, #fff0f5, #ffe4e1, #fff5ee, #fdf5e6);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}
.loader-circle {
    width: 60px; height: 60px;
    border: 6px solid var(--soft-pink);
    border-top: 6px solid var(--burgundy);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
.loader-text {
    color: var(--burgundy);
    font-size: 1.2rem;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Ad Banner */
.ad-banner {
    background-color: var(--warm-orange);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: bold;
}
.ad-text { display: block; }

/* Header */
.main-header {
    background-color: var(--bright-pink);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}
.animated-logo {
    display: inline-block;
    animation: pulse 3s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Nav */
.desktop-nav { display: block; }
.nav-list { display: flex; gap: 20px; }
.nav-link {
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s ease;
}
.nav-link:hover { color: var(--burgundy); }

/* Buttons */
.cta-button, .hero-cta {
    background-color: var(--burgundy);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s;
    display: inline-block;
    cursor: pointer;
}
.cta-button:hover, .hero-cta:hover {
    background-color: var(--dark-grey);
    transform: translateY(-2px);
}

/* Mobile Menu */
.hamburger-btn {
    display: none;
    background: transparent;
    cursor: pointer;
}
.hamburger-line {
    display: block; width: 25px; height: 3px;
    margin: 5px auto; background-color: var(--white);
}
.mobile-menu-overlay {
    position: fixed; top: 0; right: -100%;
    width: 75%; height: 100vh;
    background-color: var(--dark-grey);
    z-index: 2000;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}
.mobile-menu-overlay.active { right: 0; }
.mobile-menu-content { padding: 40px 20px; position: relative; }
.close-btn {
    position: absolute; top: 20px; right: 20px;
    font-size: 2rem; color: var(--white);
    background: transparent; cursor: pointer;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 25px; margin-top: 40px; }
.mobile-nav-link { color: var(--white); font-size: 1.2rem; display: block; }

/* Sections Common */
.section-container { max-width: 1200px; margin: 0 auto; padding: 60px 5%; text-align: center; }
.section-title { font-size: 2.2rem; color: var(--burgundy); margin-bottom: 20px; }

/* Hero */
.hero-section { padding: 80px 5%; }
.hero-inner {
    display: flex; align-items: center;
    max-width: 1200px; margin: 0 auto;
    gap: 40px;
}
.hero-image-container { flex: 1; }
.hero-image {
    width: 100%; border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.animated-hero-img {
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}
.hero-text-container { flex: 1; text-align: right; }
.hero-heading { font-size: 3rem; color: var(--burgundy); margin-bottom: 20px; line-height: 1.2; }
.hero-subheading { font-size: 1.2rem; color: var(--dark-grey); margin-bottom: 30px; }

/* About */
.about-section { background-color: var(--white); }
.section-description { font-size: 1.1rem; margin-bottom: 15px; }
.section-highlight { font-weight: bold; color: var(--warm-orange); font-size: 1.2rem; }

/* Why Us */
.features-grid { display: flex; gap: 30px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.feature-card {
    background: var(--white); padding: 30px; border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); flex: 1; min-width: 250px;
    transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-10px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 15px; }
.feature-title { color: var(--burgundy); margin-bottom: 10px; }

/* Testimonials */
.reviews-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.review-card {
    background-color: var(--soft-pink); padding: 25px; border-radius: 15px;
    flex: 1; min-width: 280px; text-align: left;
}
.reviewer-info { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.reviewer-avatar {
    width: 50px; height: 50px; background-color: var(--burgundy);
    color: var(--white); display: flex; align-items: center;
    justify-content: center; border-radius: 50%; font-weight: bold;
}
.reviewer-name { color: var(--dark-grey); }
.review-comment { font-style: italic; }

/* FAQs */
.faq-list { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item { margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #ccc; }
.faq-question { color: var(--burgundy); font-size: 1.1rem; margin-bottom: 10px; }
.faq-answer { color: var(--dark-grey); }

/* Footer */
.main-footer { background-color: var(--dark-grey); color: var(--white); padding: 60px 5% 20px; }
.footer-grid { display: flex; justify-content: space-between; max-width: 1200px; margin: 0 auto 40px; flex-wrap: wrap; gap: 30px; }
.footer-column { flex: 1; min-width: 200px; }
.footer-heading { color: var(--soft-pink); margin-bottom: 20px; font-size: 1.2rem; }
.footer-text { margin-bottom: 10px; color: #ccc; }
.footer-link, .footer-btn-link {
    display: block; color: #ccc; margin-bottom: 10px;
    background: none; cursor: pointer; text-align: left; font-size: 1rem;
    transition: color 0.3s;
}
.footer-link:hover, .footer-btn-link:hover { color: var(--warm-orange); }
.footer-disclaimer { max-width: 1200px; margin: 0 auto; border-top: 1px solid #555; padding-top: 20px; text-align: center; }
.disclaimer-text { font-size: 0.8rem; color: #aaa; margin-bottom: 15px; }
.footer-copyright { text-align: center; color: #888; font-size: 0.9rem; }

/* Modals */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7); display: none;
    justify-content: center; align-items: center; z-index: 3000;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background-color: var(--white); padding: 40px; border-radius: 10px;
    max-width: 500px; width: 90%; position: relative; color: var(--dark-grey);
}
.modal-close {
    position: absolute; top: 15px; right: 20px; font-size: 1.5rem;
    background: none; cursor: pointer; color: var(--burgundy);
}
.modal-title { color: var(--burgundy); margin-bottom: 20px; }
.modal-text { margin-bottom: 10px; }
.modal-link { color: var(--warm-orange); text-decoration: underline; }

/* Cookies */
.cookie-banner {
    position: fixed; bottom: -100%; left: 0; width: 100%;
    background-color: var(--white); box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 2500; transition: bottom 0.5s ease; padding: 20px 5%;
}
.cookie-banner.active { bottom: 0; }
.cookie-content {
    max-width: 1200px; margin: 0 auto; display: flex;
    justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.cookie-text { flex: 1; min-width: 300px; }
.cookie-actions { display: flex; gap: 15px; }
.cookie-btn {
    padding: 10px 20px; border-radius: 5px; cursor: pointer; font-weight: bold;
}
.btn-accept { background-color: var(--burgundy); color: var(--white); }
.btn-reject { background-color: #ddd; color: var(--dark-grey); }

/* Responsive */
@media (max-width: 900px) {
    .hero-inner { flex-direction: column-reverse; text-align: center; }
    .hero-text-container { text-align: center; }
}
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .header-actions .cta-button { display: none; }
    .hamburger-btn { display: block; }
}