/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e31837;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #666;
    --white: #fff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--accent-color);
}

.whatsapp-btn {
    background: #25d366;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 1.2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo svg {
    width: 50px;
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    animation: slideBackground 10s infinite;
}

@keyframes slideBackground {
    0%, 45% {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero1.jpg');
        background-size: cover;
        background-position: center;
    }
    55%, 100% {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero2.jpg');
        background-size: cover;
        background-position: center;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 50px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.primary-btn, .secondary-btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--white);
}

.secondary-btn {
    background: #25d366;
    color: var(--white);
}

.primary-btn:hover {
    background: #c41830;
}

.secondary-btn:hover {
    background: #128c7e;
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 50px 0;
    margin-top: -50px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--dark-gray);
    font-weight: 500;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--light-gray);
}

.categories h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

.category-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    margin-bottom: 0;
}

.category-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.category-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.category-card ul {
    list-style: none;
    text-align: left;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.category-card li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.2rem;
}

.category-card li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive adjustments for category cards */
@media screen and (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 15px;
    }

    .category-card img {
        height: 160px;
    }

    .category-card h3 {
        font-size: 1.2rem;
    }

    .category-card ul {
        padding: 0 1rem 1rem;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background: var(--light-gray);
}

.brands h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

.brand-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.brand-card img {
    height: 60px;
    max-width: 100%;
    width: auto;
    margin: 1rem auto 1.5rem;
    object-fit: contain;
    filter: grayscale(0);
    transition: all 0.3s ease;
    display: block;
}

.brand-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.brand-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.brand-card p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(255, 71, 87, 0.3);
}

.badge.mainstream {
    background: #2ed573;
    box-shadow: 0 2px 5px rgba(46, 213, 115, 0.3);
}

/* Responsive adjustments for brand cards */
@media screen and (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        padding: 0 15px;
    }

    .brand-card {
        padding: 20px;
    }

    .brand-card img {
        height: 60px;
    }

    .brand-card h3 {
        font-size: 1.2rem;
    }

    .brand-card p {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 10px;
}

.working-hours {
    margin-top: 2rem;
}

.contact-form {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #c41830;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-nav h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 0.5rem;
}

.footer-nav ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--primary-color);
}

.footer-certifications {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cert-badge i {
    font-size: 1.5rem;
    color: var(--white);
}

.cert-badge span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: var(--secondary-color);
        padding: 80px 20px;
        transition: right 0.3s ease;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--white);
        font-size: 1.2rem;
        width: 200px;
        text-align: center;
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .nav-links a::after {
        display: none;
    }

    .burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        cursor: pointer;
        z-index: 1001;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .burger .line1,
    .burger .line2,
    .burger .line3 {
        width: 25px;
        height: 3px;
        background: var(--secondary-color);
        margin: 2px;
        transition: all 0.3s ease;
    }

    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: var(--white);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background: var(--white);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: var(--secondary-color);
        padding: 100px 40px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .footer-nav {
        margin: 1.5rem 0;
        display: block;
    }
    
    .footer-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-nav ul li {
        margin: 0;
    }
    
    .footer-nav ul li a {
        font-size: 1.1rem;
        padding: 8px 15px;
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        width: 200px;
        text-align: center;
    }
    
    .footer-nav ul li a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: var(--primary-color);
    }
    
    .footer-certifications {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cert-badge {
        width: 200px;
        justify-content: center;
    }
}

.certifications {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cert-item i {
    font-size: 24px;
    color: var(--white);
}

.cert-item span {
    color: var(--white);
    font-weight: 500;
}

@media (max-width: 768px) {
    .certifications {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cert-item {
        width: 100%;
    }
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* About Stats Section */
.about-stats {
    margin-top: -50px;
}

/* About Content Section */
.about-content {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.header-line {
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-box, .vision-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-5px);
}

.mission-box h3, .vision-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Timeline Section */
.timeline {
    padding: 80px 0;
    background: var(--light-gray);
}

.timeline-items {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: calc(50% - 30px);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    right: -37px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -37px;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero2.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Contact Info Cards */
.contact-info-cards {
    padding: 80px 0;
    margin-top: -50px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--secondary-color);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Live Support Buttons */
.live-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.call-btn {
    background: var(--primary-color);
}

.call-btn:hover {
    background: #c41830;
    transform: translateY(-2px);
}

.whatsapp-support-btn {
    background: #25d366;
}

.whatsapp-support-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .timeline-items::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 22px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: 22px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .live-support {
        bottom: 20px;
        right: 20px;
    }

    .support-btn {
        padding: 10px 20px;
    }
} 