/* MuxWorks Theme - Indigo and Yellow */
:root {
    --primary-indigo: #4F46E5;
    --primary-indigo-dark: #3730A3;
    --primary-indigo-light: #6366F1;
    --primary-yellow: #FFC107;
    --primary-yellow-dark: #FFA000;
    --primary-yellow-light: #FFCA28;
    --dark-bg: #1E1B4B;
    --light-bg: #F8F9FA;
    --text-dark: #333333;
    --text-light: #6B7280;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
}

.text-warning {
    color: var(--primary-yellow) !important;
}

.btn-warning {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: var(--primary-yellow-dark);
    border-color: var(--primary-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Navigation */
.mux-navbar {
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-indigo-dark) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.mux-navbar .navbar-brand {
    font-size: 1.5rem;
    color: white !important;
    transition: all 0.3s ease;
}

.mux-navbar .navbar-brand:hover {
    color: var(--primary-yellow) !important;
}

.mux-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.mux-navbar .nav-link:hover {
    color: var(--primary-yellow) !important;
}

.mux-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: width 0.3s ease;
}

.mux-navbar .nav-link:hover::after {
    width: 80%;
}

.nav-cta {
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--dark-bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -76px;
    padding-top: 76px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,122.7C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-icon {
    font-size: 15rem;
    color: var(--primary-yellow);
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services-section {
    background-color: var(--light-bg);
    position: relative;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-indigo) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-indigo-light) 0%, var(--primary-indigo) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-dark) 100%);
    transform: scale(1.1);
}

.service-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-link {
    color: var(--primary-indigo);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-yellow-dark);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-indigo-dark) 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-card p {
    margin: 0;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-section h2 {
    color: var(--dark-bg) !important;
}

.cta-section p {
    color: var(--dark-bg) !important;
    opacity: 0.9;
}

.cta-section .btn {
    background-color: var(--primary-indigo);
    border-color: var(--primary-indigo);
    color: white;
}

.cta-section .btn:hover {
    background-color: var(--primary-indigo-dark);
    border-color: var(--primary-indigo-dark);
}

/* Contact Section */
.contact-section {
    background-color: var(--light-bg);
}

.contact-info {
    text-align: center;
}

.contact-item i {
    font-size: 2rem;
    display: block;
}

.contact-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-indigo);
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
}

/* Footer */
.mux-footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-indigo-dark) 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.mux-footer h5, .mux-footer h6 {
    color: var(--primary-yellow) !important;
}

.text-light-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.mux-footer a.text-light-muted:hover {
    color: var(--primary-yellow) !important;
    text-decoration: none;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Privacy Page */
.privacy-page {
    min-height: calc(100vh - 76px);
    padding-top: 2rem;
}

.privacy-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.privacy-content h2 {
    border-left: 4px solid var(--primary-yellow);
    padding-left: 1rem;
}

.privacy-content section {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-content section:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-icon {
        font-size: 8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .mux-navbar .navbar-brand {
        font-size: 1.2rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-yellow) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-indigo-dark) 0%, var(--primary-yellow-dark) 100%);
}
