/* Red&White - Clean Responsive Styles */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Navigation */
#navbar {
    background: white; /* Başlangıçta da beyaz */
}

#navbar.scrolled {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* Form Focus */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* Reduce padding on mobile */
    section {
        padding: 3rem 1.5rem !important;
    }
    
    .grid {
        gap: 2rem !important;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    /* Stack form inputs */
    .grid.md\:grid-cols-2 {
        grid-template-columns: 1fr !important;
    }
    
    /* Adjust contact section spacing */
    #contact .grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 640px) {
    /* Hero section padding */
    .relative.min-h-screen {
        padding: 5rem 1rem 2rem !important;
    }
    
    /* Stats grid adjustment */
    .grid.grid-cols-2.md\:grid-cols-4 {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    /* Smaller font on mobile */
    .text-3xl {
        font-size: 1.75rem !important;
    }
    
    .text-lg {
        font-size: 1rem !important;
    }
    
    /* Form spacing */
    form {
        padding: 1.5rem !important;
    }
}

/* FAQ Accordion */
.faq-toggle {
    cursor: pointer;
}

.faq-toggle i {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.bg-white.active .faq-toggle i {
    transform: rotate(180deg);
}

.bg-white.active p {
    display: block !important;
}