/* --- CSS Variables & Theme --- */
:root {
    --color-sage: #9CAF88;
    --color-desert-mist: #D8C3A5;
    --color-sunset-peach: #FF9E80; /* Used as the "Bright Pink" accent */
    --color-terracotta: #E27D60;
    --color-charcoal: #333333;
    --color-white: #FFFFFF;
    --color-light-bg: #F9F9F9;
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition-speed: 0.3s;
}

/* --- Reset & Global Styles --- */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    background-color: var(--color-light-bg);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 60px 0;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-terracotta);
    margin-bottom: 40px;
}

/* --- Loader --- */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid var(--color-desert-mist);
    border-top: 5px solid var(--color-sunset-peach);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.loader-text {
    font-weight: bold;
    color: var(--color-charcoal);
    letter-spacing: 2px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Advertisement Notice --- */
.ad-notice {
    background-color: #f0f0f0;
    color: #666;
    font-size: 0.8rem;
    text-align: center;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

/* --- Header --- */
.main-header {
    background-color: var(--color-sunset-peach); /* Bright Pink/Peach shade */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-white);
    
    animation: logoPulse 2s infinite alternate;
}

@keyframes logoPulse {
    from { letter-spacing: 1px; }
    to { letter-spacing: 3px; }
}

.desktop-nav .nav-list {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-charcoal);
}

.btn-primary {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-terracotta);
    transform: scale(1.05);
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-desert-mist) 100%);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Animated background effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: bgMove 15s linear infinite;
    z-index: 1;
}

@keyframes bgMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    color: var(--color-charcoal);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--color-white);
    text-shadow: 2px 2px 0px var(--color-terracotta);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-large {
    display: inline-block;
    background-color: var(--color-terracotta);
    color: var(--color-white);
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(226, 125, 96, 0.4);
}

.btn-large:hover {
    background-color: var(--color-charcoal);
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.animated-visual-circle {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.5);
}

.visual-icon {
    font-size: 8rem;
    color: var(--color-white);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- About Us --- */
.about-section {
    background-color: var(--color-white);
}

.about-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* --- Why Choose Us --- */
.why-us-section {
    background-color: var(--color-light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-sage);
    margin-bottom: 20px;
}

.feature-title {
    margin-bottom: 15px;
    color: var(--color-charcoal);
}

/* --- Testimonials --- */
.testimonials-section {
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-light-bg);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    border-left: 5px solid var(--color-sunset-peach);
}

.avatar-circle {
    width: 50px;
    height: 50px;
    background-color: var(--color-terracotta);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.client-name {
    font-weight: bold;
    color: var(--color-terracotta);
}

/* --- FAQ --- */
.faq-section {
    background-color: #f4f4f4;
}

.accordion-item {
    background-color: var(--color-white);
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-charcoal);
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
}

.accordion-button:after {
    content: '+';
    font-weight: bold;
}

.accordion-button.active {
    background-color: var(--color-desert-mist);
}

.accordion-button.active:after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-content p {
    padding: 20px 0;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    color: var(--color-sunset-peach);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-info, .footer-link {
    color: #ccc;
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--color-sunset-peach);
}

.modal-trigger {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0;
    text-decoration: underline;
}

.footer-disclaimer {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

.footer-bottom {
    background-color: #1a1a1a;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}

/* --- Mobile Menu --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 75%; /* Requested 75% width */
    height: 100vh;
    background-color: var(--color-white);
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav-overlay.active {
    right: 0;
}

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-charcoal);
    margin-bottom: 30px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-charcoal);
}

/* --- Modals --- */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    color: var(--color-charcoal);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--color-white);
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    z-index: 9998;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border: 1px solid var(--color-sage);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-cookie.accept {
    background-color: var(--color-sage);
    color: white;
}

.btn-cookie.reject {
    background-color: #ddd;
    color: #333;
}

/* --- Media Queries --- */
@media (max-width: 768px) {
    .desktop-nav, .header-cta {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px auto;
    }
    
    .hero-visual {
        margin-top: 40px;
    }

    .animated-visual-circle {
        width: 200px;
        height: 200px;
    }

    .visual-icon {
        font-size: 5rem;
    }
}


/* Add this to style.css */
.hero-product-img {
    width: 100%;
    max-width: 900px; /* Adjust size as needed */
    height: auto;
    border-radius: 30px; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Update the container to remove the circle border if you want a clean image */
.animated-visual-circle {
    width: auto; 
    height: auto;
    background: transparent;
    border: none;
    backdrop-filter: none;
}