@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

html, body {
    overflow-x: hidden;
    background-color: #121212;  /* Dark background for the entire site */
}

section {
    scroll-margin-top: 100px;
    padding: 50px 10%;
}

:root {
    --primary-color: #ffffff;  /* White */
    --main-color: #ff0000;  /* Red */
    --secondary-color: #1a1a1a;  /* Dark Gray */
    --hover-btn: #cc0000;  /* Darker Red for hover effects */
    --dark-bg: #0a0a0a;  /* Very Dark Background */
    --text-light: #f0f0f0;  /* Light text */
    --text-gray: #b0b0b0;  /* Gray text */
}

/* Global Styles */
*::selection {
    color: #fff;
    background: var(--main-color);
}

img {
    width: 100%;
    max-width: 100%;
}

/* Navigation Bar */
header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--dark-bg);  /* Darker black for header */
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);  /* Red glow shadow */
    padding: 15px 10%;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.logo img {
    width: 100px;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));  /* Red glow for logo */
}

.navbar {
    display: flex;
    gap: 1rem;
    list-style: none;
    flex-grow: 1;
    justify-content: center;
}

.navbar a {
    font-size: 1rem;
    padding: 11px 20px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width 0.3s, left 0.3s;
}

.navbar a:hover {
    color: var(--main-color);
}

.navbar a:hover::after {
    width: 100%;
    left: 0;
}

/* Login Button */
.btn-login {
    background-color: var(--main-color);  /* Red button */
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 5px;  /* Sharper corners for an aggressive look */
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.4);  /* Red shadow */
    border: 1px solid var(--main-color);
}

.btn-login:hover {
    background-color: var(--hover-btn);
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}

.btn-login span {
    position: relative;
    z-index: 1;
}

#menu-icon {
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1001;
    display: none;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);  /* Semi-transparent dark background */
        position: fixed;
        top: 0;
        left: 0;
        text-align: center;
        height: 100vh;
        padding: 20px 0;
        box-shadow: 0 4px 41px rgba(255, 0, 0, 0.2);
        z-index: 999;
    }

    .navbar.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #menu-icon {
        display: block;
    }

    .navbar a {
        display: block;
        padding: 15px 0;
        color: var(--text-light);
        font-size: 1.2rem;
        font-weight: 600;
        margin: 10px 0;
    }

    .navbar a:hover {
        color: var(--main-color);
    }
}

/* Resellers Section */
#resellers {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

#resellers .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

#resellers h2 {
    font-size: 2.5rem;
    color: var(--main-color);  /* Red heading */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

#resellers p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reseller-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reseller-card {
    background-color: var(--secondary-color);
    border-radius: 8px;  /* Sharper corners */
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;  /* Subtle border */
}

.reseller-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);  /* Red glow on hover */
    border-color: var(--main-color);
}

.reseller-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: filter 0.3s ease;
}

.reseller-card:hover img {
    filter: brightness(1.1);
}

.reseller-card h3 {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.reseller-card .location {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-buttons a {
    display: block;
    padding: 10px 15px;
    border-radius: 4px;  /* Sharper corners */
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.whatsapp {
    background-color: #25d366;
    color: #fff;
}

.telegram {
    background-color: #0088cc;
    color: #fff;
}

.website {
    background-color: var(--main-color);  /* Red for website button */
    color: #fff;
}

.contact-buttons a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    #resellers h2 {
        font-size: 2rem;
    }

    .reseller-card h3 {
        font-size: 1.4rem;
    }

    .contact-buttons a {
        font-size: 0.9rem;
    }
}

/* Footer */
#professional-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #333;
}

#professional-footer .container {
    width: 90%;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-about {
    flex: 1;
    max-width: 300px;
    margin-right: 30px;
}

.footer-about img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));  /* Red glow for logo */
}

.footer-about p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 200px;
    margin-left: 30px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.4rem;
    color: var(--main-color);  /* Red headings */
    margin-bottom: 15px;
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul,
.footer-contact p,
.footer-social .social-icons {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-contact p {
    margin-bottom: 15px;
}

.footer-links ul li a,
.footer-contact p a,
.footer-social .social-icons a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact p a:hover,
.footer-social .social-icons a:hover {
    color: var(--main-color);  /* Red on hover */
}

.footer-contact i,
.footer-social .social-icons a {
    margin-right: 10px;
    font-size: 1.2rem;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons a {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: var(--main-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-legal a {
    color: var(--main-color);
    text-decoration: none;
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-social {
        margin: 0 0 20px;
    }

    .footer-about img {
        width: 120px;
    }

    .footer-links ul li a,
    .footer-contact p a,
    .footer-social .social-icons a {
        font-size: 1.1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}