/* Basic Reset and Variables (DARK PREMIUM THEME) */
:root {
    --color-primary: #15433A;   /* Deep Forest Green (Accent/Highlight) */
    --color-secondary: #C88E4C; /* Tactical Gold/Bronze (Accent/CTA, High-Contrast Headings) */
    --color-dark-bg: #1A1D20;   /* Deep Charcoal/Black (Primary Background) */
    --color-light-text: #F8F4F0;/* Warm Off-White (Primary Text Color) */
    --color-light-bg: #2A2F36;  /* Secondary Dark Background/Card Background */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-light-text); /* Text is now Light */
    background-color: var(--color-dark-bg); /* Background is now Dark */
    line-height: 1.6;
}

/* Global Typography Adjustments for Dark Theme */
h1, h2, h3, h4 {
    color: var(--color-light-text);
    font-family: var(--font-heading);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    background: var(--color-dark-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Deeper shadow on dark theme */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-light-text); /* Navigation links are light */
    padding: 10px 15px;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--color-secondary); /* Hover becomes Gold */
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section::before {
    /* Dark overlay for text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--color-light-text);
    max-width: 800px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: var(--color-secondary); /* Gold Headline */
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button.primary {
    background-color: var(--color-secondary); /* Gold */
    color: var(--color-dark-bg); /* Dark text on gold for high contrast */
}

.cta-button.primary:hover {
    background-color: #a87640; /* Darker Gold on hover */
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--color-light-text);
    border: 2px solid var(--color-secondary); /* Gold border */
}

.cta-button.secondary:hover {
    background-color: rgba(200, 142, 76, 0.1); /* Slight gold background hover */
    transform: translateY(-2px);
}

/* --- PRODUCTS SECTION --- */
.products-section {
    padding: 80px 20px;
    background-color: var(--color-dark-bg);
    text-align: center;
}

.products-section h2 {
    font-size: 2em;
    margin-bottom: 50px;
    color: var(--color-secondary); /* FIX: Gold heading for high contrast */
}

.product-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.product-card {
    flex-basis: 45%;
    max-width: 450px;
    background: var(--color-light-bg); /* Secondary Dark Card Background */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    margin: 15px 0 10px;
    color: var(--color-secondary); /* FIX: Gold for high contrast */
}

.product-card p {
    padding: 0 20px;
    margin-bottom: 15px;
    font-size: 0.95em;
    color: var(--color-light-text);
}

.details-link {
    display: block;
    padding: 10px 0 20px;
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}
/* --- SHOP SECTION SPECIFIC STYLES --- */

.section-subheading {
    margin-bottom: 30px;
    font-size: 1.1em;
    color: var(--color-light-text);
}

.product-card {
    /* Ensure the card can contain the button */
    padding-bottom: 10px; 
    position: relative;
}

.product-card h3 {
    margin-bottom: 5px; /* Tighten up spacing before the description */
}

/* Style for the WhatsApp Buy Button */
.whatsapp-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90%; /* Make it wide within the card */
    margin: 15px 5% 20px 5%;
    padding: 12px 20px;
    background-color: #25d366; /* WhatsApp Green */
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.whatsapp-buy i {
    margin-right: 8px;
    font-size: 1.2em;
}

.whatsapp-buy:hover {
    background-color: #128c7e; /* Darker WhatsApp Green on hover */
    text-decoration: none;
    transform: none; /* Override general CTA transform if needed */
}

/* --- PARTNERS SECTION --- */
.partners-section {
    background-color: var(--color-light-bg); /* Secondary Dark Background */
    padding: 60px 0;
    text-align: center;
    color: var(--color-light-text);
}

.partners-section h2 {
    margin-bottom: 10px;
    color: var(--color-light-text);
}

.partners-section p {
    margin-bottom: 40px;
    color: var(--color-secondary); /* Gold sub-heading */
    font-size: 1.1em;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logos img {
    height: 60px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.partner-logos img:hover {
    opacity: 1;
}

/* --- TESTIMONIALS (Carousel/Slider Placeholder) --- */
.testimonials-section {
    padding: 80px 20px;
    background: var(--color-light-bg); /* Secondary dark background */
    text-align: center;
}

.testimonials-section h2 {
    color: var(--color-secondary); /* FIX: Gold heading for high contrast */
    margin-bottom: 40px;
}

.testimonial-carousel {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    max-width: 700px;
    background: var(--color-dark-bg); /* Primary Dark Card Background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    color: var(--color-light-text);
}

.user-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--color-secondary);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    color: var(--color-primary); /* Green name (on dark-bg, good contrast) */
}

/* --- 6. TECHNOLOGY SECTION STYLING --- */
.tech-section {
    padding: 80px 20px;
    background-color: var(--color-dark-bg);
}

.tech-section h2 {
    text-align: center;
    color: var(--color-secondary); /* FIX: Gold heading for high contrast */
    margin-bottom: 50px;
}

.tech-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.tech-usp {
    flex: 1;
}

.tech-usp h3 {
    color: var(--color-secondary); /* Gold sub-heading (on dark-bg) */
    margin-bottom: 20px;
}

.tech-usp ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.tech-usp ul li {
    background: var(--color-light-bg); /* Darker gray list items */
    margin-bottom: 10px;
    padding: 10px 15px;
    border-left: 4px solid var(--color-secondary);
    font-weight: 500;
}

.tech-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* --- 7. ABOUT US SECTION STYLING --- */
.about-section {
    padding: 80px 20px;
    background-color: var(--color-light-bg); /* Secondary dark background */
}

.about-section h2 {
    text-align: center;
    color: var(--color-secondary); /* FIX: Gold heading for high contrast */
    margin-bottom: 50px;
}

.about-grid {
    display: flex;
    gap: 30px;
}

.about-block {
    flex: 1;
    background: var(--color-dark-bg); /* Primary Dark Card Background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    color: var(--color-light-text);
}

.about-block h3 {
    color: var(--color-secondary); /* FIX: Gold for high contrast */
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-secondary);
    display: inline-block;
    padding-bottom: 5px;
}

.team-member p {
    margin-bottom: 10px;
    font-size: 0.95em;
}

/* --- 8. CONTACT SECTION STYLING --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--color-dark-bg);
}

.contact-section h2 {
    text-align: center;
    color: var(--color-light-text);
    margin-bottom: 40px;
}

.contact-flex {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.contact-info {
    flex: 1;
    max-width: 400px;
    padding: 20px;
}

.contact-info h3 {
    color: var(--color-secondary); /* FIX: Gold for high contrast */
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--color-secondary); /* Gold link */
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--color-light-text);
}

.contact-form {
    flex: 1;
    max-width: 400px;
    background: var(--color-light-bg); /* Secondary Dark Form Background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.contact-form h3 {
    color: var(--color-light-text);
    margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: var(--color-dark-bg); /* Input fields are very dark */
    color: var(--color-light-text); /* Text input is light */
    border: 1px solid var(--color-light-bg);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button.primary {
    width: 100%;
    padding: 15px;
}

/* --- FLOATING SOCIAL ICONS --- */
.social-float-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-float-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.social-float-icons a:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    background-color: #25d366;
}

.instagram-icon {
    /* Instagram Gradient */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

/* --- FOOTER STYLING --- */
.main-footer {
    background-color: var(--color-light-bg); /* Secondary Dark Background */
    color: var(--color-light-text);
    padding-top: 50px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h4 {
    color: var(--color-secondary); /* Gold/Bronze for section titles */
    font-size: 1.1em;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--color-light-text);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95em;
}

.footer-col a:hover {
    color: var(--color-secondary);
}

/* Styling for branding column */
.footer-branding .brand-name {
    color: var(--color-secondary); /* Make the brand name Gold in the footer */
}

.footer-branding a {
    margin-bottom: 15px;
}

.footer-branding .tagline {
    font-size: 0.9em;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Social Icons */
.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    font-size: 1.5em;
    color: var(--color-light-text);
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Adjustments for footer */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .footer-branding {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-social {
        justify-content: center;
    }
}

/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        padding-bottom: 10px;
    }

    nav ul {
        gap: 5px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .product-list {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        flex-basis: 90%;
        max-width: 90%;
    }

    .partner-logos img {
        height: 50px;
    }

    .tech-content, .about-grid, .contact-flex {
        flex-direction: column;
    }

    .tech-image {
        max-width: 100%;
    }
}


/* --- PARTNER DATA GRID STYLING --- */
.partner-data-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.partner-data-card {
    flex-basis: calc(50% - 15px); /* Two cards per row on large screens */
    max-width: 500px;
    background: var(--color-dark-bg); /* Primary Dark Background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border-top: 3px solid var(--color-secondary); /* Premium Gold Accent Line */
    text-align: left;
}

.partner-data-card h3 {
    color: var(--color-secondary); /* Gold Heading */
    margin-bottom: 10px;
    font-size: 1.3em;
}

.partner-data-card p {
    color: var(--color-light-text);
    margin-bottom: 0;
}

/* Responsive adjustment for the partner data grid */
@media (max-width: 900px) {
    .partner-data-card {
        flex-basis: 90%; /* Single column layout on smaller screens */
    }
}


/* --- HEADER/LOGO STYLING FOR CLICKABLE LINK --- */
.logo a {
    display: flex; /* Allows the logo and text to sit side-by-side */
    align-items: center;
    text-decoration: none; /* Removes underline */
    color: var(--color-light-text); /* Uses the warm off-white text color */
}

.brand-name {
    margin-left: 10px;
    font-family: var(--font-heading);
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-light-text);
}

.logo a:hover .brand-name {
    color: var(--color-secondary); /* Gold hover effect */
}