﻿/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation Bar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo span {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    font-size: 0.75rem;
    color: #64748b;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

    .nav-links li a {
        text-decoration: none;
        font-weight: 500;
        color: #334155;
        transition: 0.3s;
        position: relative;
    }

        .nav-links li a:hover,
        .nav-links li a.active {
            color: #f39c12;
        }

            .nav-links li a.active::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 100%;
                height: 3px;
                background: #f39c12;
                border-radius: 2px;
            }

.admin-link {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    padding: 8px 16px;
    border-radius: 40px;
    color: white !important;
}

    .admin-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    }

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #334155;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
    }

.btn-outline {
    background: transparent;
    border: 2px solid #f39c12;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    color: #f39c12;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
}

    .btn-outline:hover {
        background: #f39c12;
        color: white;
        transform: translateY(-2px);
    }

/* Footer */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: #f39c12;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: #f39c12;
                padding-left: 5px;
            }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background: #1e293b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        color: #f39c12;
    }

        .social-links a:hover {
            background: #f39c12;
            color: white;
            transform: translateY(-3px);
        }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    font-size: 0.9rem;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
    }

        .nav-links.show {
            display: flex;
        }

    .menu-icon {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .container {
        padding: 0 16px;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

/* Product Grid (Additional) */
.products-page {
    padding: 60px 0;
    background: #f8fafc;
}

.filter-section {
    margin-bottom: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

    .filter-btn:hover,
    .filter-btn.active {
        background: #f39c12;
        border-color: #f39c12;
        color: white;
    }

/* Contact Page */
.contact-page {
    padding: 60px 0;
    background: #f8fafc;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 15px;
}

    .contact-info-item i {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #f39c12, #e67e22);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #334155;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        font-size: 1rem;
        transition: 0.3s;
        font-family: inherit;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f39c12;
            box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
        }

/* Blog Page */
.blog-page {
    padding: 60px 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.blog-image {
    height: 220px;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #64748b;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #64748b;
    margin-bottom: 20px;
}

.read-more {
    color: #f39c12;
    font-weight: 600;
    text-decoration: none;
}

    .read-more:hover {
        text-decoration: underline;
    }

/* About Page */
.about-page {
    padding: 60px 0;
}

.about-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f39c12;
}

/* Projects Page */
.projects-page {
    padding: 60px 0;
    background: #f8fafc;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Solutions Page */
.solutions-page {
    padding: 60px 0;
}

.solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.solution-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.solution-content {
    padding: 30px;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

    .feature-list li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }

        .feature-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #f39c12;
            font-weight: bold;
        }

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* WhatsApp Button Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 999;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        background: #128C7E;
    }

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #f39c12;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 999;
}

    .scroll-top.show {
        display: flex;
    }

    .scroll-top:hover {
        background: #e67e22;
        transform: translateY(-3px);
    }
