﻿/* Base Styles */
:root {
    --primary-dark: #0f172a;
    --primary-light: #1e293b;
    --accent: #fbbf24;
    --accent-dark: #f59e0b;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Navigation */
.navbar {
    background: white !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark) !important;
}

    .navbar-brand span {
        color: var(--accent);
    }

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 30px;
}

    .nav-link:hover, .nav-link.active {
        background: var(--accent);
        color: var(--primary-dark) !important;
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    min-height: 100vh;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/pattern.svg') repeat;
    opacity: 0.1;
}

.hero-badge {
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 600;
}

.stat-card {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

    .stat-card:last-child {
        border-right: none;
    }

/* Service Cards */
.service-card {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(251, 191, 36, 0.1);
        border-color: var(--accent);
    }

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-mini-card {
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

    .service-mini-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent);
    }

/* Client Badges */
.client-logo {
    max-height: 60px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

    .client-logo:hover {
        filter: grayscale(0);
        transform: scale(1.05);
    }

.client-badge {
    background: white;
    border-radius: 50px;
    padding: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

    .client-badge:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--primary-dark);
        transform: scale(1.05);
    }

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e9eef2;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

/* Buttons */
.btn-warning {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-warning:hover {
        background: var(--accent-dark);
        border-color: var(--accent-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
    }

.btn-outline-warning {
    border: 2px solid var(--accent);
    color: var(--primary-dark);
    font-weight: 600;
}

    .btn-outline-warning:hover {
        background: var(--accent);
        color: var(--primary-dark);
        transform: translateY(-2px);
    }

/* Process Cards */
.process-card {
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.process-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-control, .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25);
    }

/* Footer */
footer {
    background: var(--primary-dark);
    color: #cbd5e1;
    padding: 4rem 0 2rem;
    border-top: 5px solid var(--accent);
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0;
}

    .footer-link:hover {
        color: var(--accent);
        transform: translateX(5px);
    }

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: var(--accent);
        color: var(--primary-dark);
        transform: translateY(-3px);
    }

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1rem 0;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

    [data-aos].aos-animate {
        pointer-events: auto;
    }


/* Additional CSS for missing components */

/* Client Page Styles */
.client-card {
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

    .client-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-color: var(--accent);
    }

.stat-circle {
    width: 120px;
    height: 120px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* About Page Styles */
.mission-card, .vision-card {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .mission-card:hover, .vision-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(251, 191, 36, 0.1);
    }

.stat-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .stat-box:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15);
    }

.team-card {
    background: white;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent), #fcd34d);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/images/pattern-light.svg') repeat;
        opacity: 0.1;
    }

/* Footer Social Icons */
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        background: var(--accent);
        color: var(--primary-dark);
        transform: translateY(-3px);
    }

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .footer-link:hover {
        color: var(--accent);
        transform: translateX(5px);
    }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/images/pattern.svg') repeat;
        opacity: 0.1;
    }

/* Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    padding: 0.5rem 0 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
    cursor: pointer;
    display: none;
    z-index: 99;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.3);
}

    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    }

/* Responsive Fixes */
@media (max-width: 768px) {
    .stat-circle {
        width: 100px;
        height: 100px;
    }

        .stat-circle .h2 {
            font-size: 1.5rem;
        }

    .mission-card, .vision-card {
        padding: 2rem !important;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* Gallery Styles */
.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .gallery-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.gallery-info {
    padding: 1.5rem;
}

/* Job Cards */
.job-card {
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .job-card:hover {
        border-color: var(--accent);
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.1);
    }

    .job-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--accent);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .job-card:hover::before {
        transform: scaleX(1);
    }

/* Contact Form */
.contact-form {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-info-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

    .contact-info-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent);
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.1);
    }

/* Filter Buttons */
.filter-btn {
    border-radius: 30px !important;
    padding: 8px 20px !important;
    margin: 0 3px;
}

    .filter-btn.active {
        background-color: var(--accent) !important;
        color: var(--primary-dark) !important;
        border-color: var(--accent) !important;
    }

/* Responsive Fixes */
@media (max-width: 768px) {
    .gallery-image {
        height: 200px;
    }

    .filter-btn {
        padding: 5px 12px !important;
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 2rem !important;
    }
}