/* Additional styles beyond Tailwind CSS */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom animations and effects */
.hover-lift {
    transition: transform 0.3s ease;
}

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

/* Custom gradient backgrounds */
.bg-hero-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f5f5 100%);
}

/* Custom button effects */
.btn-glow:hover {
    box-shadow: 0 0 15px rgba(239, 60, 66, 0.5);
}

/* Utility classes */
.text-shadow {
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Custom card styling */
.feature-card {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #EF3C42;
}

/* Custom header effects */
.header-scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.95);
}

/* Custom highlight for text */
.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(239, 60, 66, 0.15);
    z-index: -1;
    transform: skewX(-12deg);
}

/* Responsive images */
.img-responsive {
    transition: transform 0.5s ease;
}

.img-hover:hover {
    transform: scale(1.03);
}

/* Custom animations for page elements */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

/* Hero section enhancements */
.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M1200 120L0 16.48V0h1200v120z' fill='%23FFFFFF'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    z-index: 1;
}

/* FAQ Section Styles */
.faq-question {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #EF3C42;
}

.faq-question.active {
    color: #EF3C42;
    border-bottom: 1px solid rgba(239, 60, 66, 0.1);
}

.faq-answer {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.faq-answer:not(.hidden) {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

/* Custom animation for FAQ accordion */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer:not(.hidden) {
    animation: slideDown 0.3s ease forwards;
} 