/* --- 1. Base Setup & Variables --- */
:root {
    /* Colors */
    --primary-bg: #141414; /* Dark Black/Ash */
    --secondary-bg: #1f1f1f; /* Slightly lighter dark for contrast */
    --accent-color: #ffd700; /* Gold/Yellow for CTA and highlights */
    --text-color: #f0f0f0; /* Light text */
    --sub-text-color: #aaaaaa; /* Grey sub-text */
    --success-color: #28a745; /* Green for success */
    --error-color: #dc3545; /* Red for errors */

    /* Typography */
    --font-primary: 'Arial', sans-serif;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ffc107;
}

h1, h2, h3 {
    margin-bottom: 10px;
    font-weight: 700;
}

h2.section-title {
    text-align: center;
    font-size: 2.5rem;
    padding: 40px 0 30px;
    color: var(--accent-color);
}


/* --- 2. Header & Navigation (Improved) --- */
#header {
    background-color: var(--secondary-bg);
    border-bottom: 2px solid var(--accent-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: none; /* Override hover for main logo */
}

.logo-link h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-icon {
    height: 30px; /* Adjust size of the logo */
    margin-right: 10px;
}

#nav-menu a {
    margin: 0 15px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
}

#nav-menu a:hover {
    color: var(--accent-color);
}

.header-socials {
    display: flex;
    align-items: center;
}

.header-socials a {
    font-size: 1.2rem;
    margin-left: 15px;
    color: var(--text-color);
}

.header-socials a:hover {
    color: var(--accent-color);
}

.shop-btn {
    padding: 8px 15px !important;
    margin-left: 20px;
    font-size: 0.9rem !important;
    font-weight: 700;
    border-radius: 5px;
}

.hamburger {
    display: none; /* Hidden on desktop */
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-color);
}


/* --- 3. Hero Section (Banner Background) --- */
.hero-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* For paralax effect */
    color: var(--text-color);
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.cta-group a {
    margin: 0 10px;
}

/* --- 4. General Button Styling --- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.primary-cta {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

.primary-cta:hover {
    background-color: #ffc107;
    color: var(--primary-bg);
}

.secondary-cta {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.secondary-cta:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

/* --- 5. About Section --- */
.about-section {
    padding: 50px 0;
    background-color: var(--primary-bg);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 40px;
}

.mv-card {
    background-color: var(--secondary-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.mv-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.our-promise {
    background-color: var(--secondary-bg);
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.our-promise h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.our-promise ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 1.1rem;
}


/* --- 6. Founders Section (New) --- */
.founders-title {
    margin-top: 50px;
}

.founders-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

.founder-card {
    background-color: var(--secondary-bg);
    padding: 20px;
    border-radius: 8px;
    width: 45%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid var(--accent-color);
}

.founder-card img {
    width: 100px; /* Small size for professional look */
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    margin-bottom: 15px;
}

.founder-card h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.founder-card .role {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.founder-card p {
    font-size: 0.9rem;
    color: var(--sub-text-color);
    line-height: 1.4;
}


/* --- 7. Product Catalog --- */
.catalog-section {
    padding: 50px 0;
    background-color: var(--secondary-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 20px;
}

.product-card {
    background-color: var(--primary-bg);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer; /* Clickable */
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--secondary-bg);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    min-height: 50px; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-info .price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.product-info .features {
    color: var(--sub-text-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* --- 8. Modal (Pop-up) Styling --- */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000; /* Above everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
    padding-top: 60px;
}

.modal-content {
    background-color: var(--secondary-bg);
    margin: 5% auto; /* 5% from the top and centered */
    padding: 30px;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    width: 80%; /* Could be responsive */
    max-width: 900px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.close-btn {
    color: var(--accent-color);
    float: right;
    font-size: 40px;
    font-weight: bold;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: #ffc107;
    text-decoration: none;
    cursor: pointer;
}

#modal-body h3 {
    font-size: 2rem;
    color: var(--accent-color);
    border-bottom: 2px solid var(--sub-text-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#modal-body .modal-product-image {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.modal-details h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-top: 15px;
}

.modal-details p, .modal-details ul {
    color: var(--sub-text-color);
    margin-bottom: 10px;
}

.modal-details ul {
    list-style: none;
    padding-left: 0;
}

.modal-details ul li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.modal-cta-group {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed var(--sub-text-color);
}
.modal-cta-group .btn {
    margin: 0 10px;
}

/* --- 9. FAQ / Trust Section --- */
.faq-section {
    padding: 50px 0;
    background-color: var(--primary-bg);
}

.authenticity-mandate {
    text-align: center;
    background-color: #2e2e2e;
    border: 2px solid var(--accent-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto 40px;
    max-width: 800px;
}

.authenticity-mandate h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.faq-item {
    background-color: var(--secondary-bg);
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    border-left: 4px solid transparent;
    transition: border-left-color 0.3s;
}

.faq-item.active {
    border-left-color: var(--accent-color);
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    transform: rotate(0deg);
    transition: transform 0.3s;
    color: var(--accent-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #2e2e2e;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on max content height */
    padding: 15px 20px;
}


/* --- 10. Testimonials Section (Background Added) --- */
.testimonials-section {
    padding: 50px 0;
    background-color: var(--secondary-bg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 1;
}

.testimonials-section > .container {
    position: relative;
    z-index: 2;
}

.testimonial-slider-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    min-height: 150px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-card {
    background-color: rgba(31, 31, 31, 0.9);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-card cite {
    display: block;
    font-weight: 600;
    color: var(--accent-color);
}

.slider-controls {
    text-align: center;
    margin-top: 170px; /* Push controls down */
}

.slider-controls button {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border: none;
    padding: 10px 15px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    transition: background-color 0.3s;
}

.slider-controls button:hover {
    background-color: #ffc107;
}


/* --- 11. Contact Section --- */
.contact-section {
    padding: 50px 0;
    background-color: var(--primary-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    padding-top: 20px;
}

.contact-card, .contact-form-container, .map-placeholder {
    background-color: var(--secondary-bg);
    padding: 25px;
    border-radius: 8px;
}

.contact-card h3, .contact-form-container h3 {
    color: var(--accent-color);
    border-bottom: 1px solid var(--sub-text-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact-card p {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1rem;
}

.contact-card p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.whatsapp-cta {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    background-color: var(--success-color); /* Green WhatsApp color */
    color: white;
}
.whatsapp-cta:hover {
    background-color: #218838;
}

#contact-form input[type="text"],
#contact-form input[type="tel"],
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--sub-text-color);
    border-radius: 4px;
    background-color: var(--primary-bg);
    color: var(--text-color);
    font-size: 1rem;
    resize: vertical;
}

#contact-form button {
    width: 100%;
}

.map-placeholder {
    grid-column: 1 / 3; /* Span across both columns */
    padding: 0;
    overflow: hidden;
}


/* --- 12. Footer --- */
#footer {
    background-color: #111;
    padding: 30px 0 10px;
    text-align: center;
    border-top: 2px solid var(--accent-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sub-text-color);
    margin-bottom: 10px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-links strong a {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--sub-text-color);
    margin-bottom: 5px;
}

.social-hashtags {
    text-align: right;
}

.social-hashtags p {
    margin: 5px 0;
    color: var(--sub-text-color);
}

.emotional-hook {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-top: 15px !important;
}

.copyright {
    color: var(--sub-text-color);
    font-size: 0.9rem;
    padding-top: 10px;
}


/* --- 13. Reusable Classes (Fade-in) --- */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- 14. MOBILE / RESPONSIVE Design (Media Query) --- */
@media (max-width: 900px) {
    /* Header Changes */
    #nav-menu {
        display: none; /* Hide desktop menu */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Below header */
        left: 0;
        background-color: var(--secondary-bg);
        border-top: 1px solid var(--accent-color);
        padding: 10px 0;
    }
    #nav-menu.active {
        display: flex; /* Show menu when active */
    }
    #nav-menu a {
        margin: 10px 20px;
        text-align: center;
        width: auto;
    }
    .header-socials .shop-btn {
        display: none; /* Hide big shop button on mobile */
    }
    .hamburger {
        display: block; /* Show hamburger icon */
    }

    /* Hero Section */
    .hero-content h2 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* About & Founders */
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .our-promise ul {
        grid-template-columns: 1fr;
    }
    .founders-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .founder-card {
        width: 90%;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .map-placeholder {
        grid-column: 1 / 2; /* Full width again */
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-links {
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-links div {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .footer-links a {
        margin: 0 10px;
    }
    .social-hashtags {
        text-align: center;
    }
}

/* --- Small Mobile Adjustment --- */
@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}