/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-in-up {
    animation: slideInUp 1s ease-out;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    #navMenu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        padding: 1rem;
        gap: 1rem;
    }

    #navMenu.active {
        display: flex !important;
    }
}

/* Smooth Transitions */
a, button, input, textarea {
    transition: all 0.3s ease;
}

/* Glass Morphism Cards */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, #dc2626, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

/* Carousel Styling */
.carousel-container {
    position: relative;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

/* Form Styling */
input:focus,
textarea:focus {
    background-color: rgba(220, 38, 38, 0.1);
}

/* FAQ Styling */
.faq-toggle {
    transition: background-color 0.3s ease;
}

.faq-toggle .text-red-600 {
    transition: transform 0.3s ease;
}

.faq-toggle.active .text-red-600 {
    transform: rotate(45deg);
}

.faq-content {
    animation: slideInUp 0.3s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

/* Loading Spinner */
.spinner {
    border: 4px solid rgba(220, 38, 38, 0.1);
    border-top: 4px solid #dc2626;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Accent Color Enhancement */
.red-accent {
    color: #dc2626;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
}

/* Border Glow Effect on Hover */
.border-glow:hover {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}
