/* --- Variables & Reset --- */
:root {
    --primary-color: #970747; /* Dark Pink */
    --secondary-color: #580328; /* Burgundy */
    --accent-color: #ffffff;
    --text-color: #f0f0f0;
    --dark-bg: #1a050f;
    --overlay-bg: rgba(255, 255, 255, 0.1);
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    /* Animated Gradient Background */
    background: linear-gradient(-45deg, #2c0314, #580328, #970747, #3e0e1e);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- Loader --- */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color);
    animation: pulse 1.5s infinite;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid var(--accent-color);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

/* --- Advertisement Top Bar --- */
.top-disclaimer {
    background-color: #000;
    color: #ccc;
    text-align: center;
    padding: 8px 10px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* --- Header & Nav --- */
.main-header {
    background: rgba(88, 3, 40, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
  
    letter-spacing: 2px;
    animation: logoAnim 3s infinite alternate;
}

@keyframes logoAnim {
    0% { text-shadow: 0 0 5px rgba(255,255,255,0.2); }
    100% { text-shadow: 0 0 20px rgba(151, 7, 71, 0.8); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(151, 7, 71, 0.4);
}

.cta-button:hover {
    background-color: #b30956;
    transform: translateY(-2px);
}

.hamburger-menu, .mobile-header {
    display: none;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 50px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: row-reverse; /* Image Left (via visual swap), Text Right as requested by design but code logic suggests flex manipulation */
    /* Wait, prompt said "image animation of the original product image in left side". */
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

/* Re-ordering for visual Layout: Image Left, Text Right */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-left: 20px;
}

.animated-shield {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float 4s ease-in-out infinite;
    text-shadow: 0 0 30px var(--primary-color);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

.hero-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

/* --- General Sections --- */
.section {
    padding: 80px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

/* --- About --- */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--overlay-bg);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffb6d3;
    font-style: italic;
}

/* --- Why Choose Us --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--overlay-bg);
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.client-name {
    font-weight: 600;
    text-align: right;
    color: #ddd;
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.faq-answer {
    color: #ccc;
    line-height: 1.5;
}

/* --- Footer --- */
.main-footer {
    background-color: #111;
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-info {
    margin-bottom: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-link-contact {
    color: #fff;
    text-decoration: underline;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link, .modal-trigger {
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    text-align: left;
    padding: 0;
}

.footer-link:hover, .modal-trigger:hover {
    color: var(--primary-color);
}

.footer-disclaimer {
    background-color: #000;
    padding: 20px;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    border-top: 1px solid #333;
}

.footer-bottom {
    background-color: #0a0a0a;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: #555;
}

/* --- Modals & Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex; /* Shown by default via JS check */
}

.cookie-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: #fff;
}

.cookie-btn.reject {
    background-color: #ddd;
    color: #333;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none; /* Hidden */
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

.modal-content {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: bold;
}

/* --- Keyframes --- */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%; /* 75% Width as requested */
        height: 100vh;
        background-color: #2c0314; /* Dark bg */
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px;
        background: rgba(0,0,0,0.2);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-title {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .close-menu-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }

    .nav-cta {
        margin: 20px;
        display: inline-block;
        text-align: center;
    }

    .hero-container {
        flex-direction: column-reverse; /* Stack image on top of text on mobile? or below? usually image top */
        /* But prompt asked for image left. in Flex column reverse, first element in HTML goes bottom */
        text-align: center;
        padding-top: 20px;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .animated-shield {
        font-size: 10rem;
    }
}

.hero-product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    animation: float 4s ease-in-out infinite; /* This keeps the floating effect */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}