/* Main Custom Style File */

/* Editörden gelen bold (kalın) yazıların görünmesi için */
.prose strong,
.prose b {
    font-weight: 700 !important;
    color: #111827;
    /* Gray-900 */
}

/* Editörden gelen başlıklar için özelleştirmeler */
.prose h1 {
    font-size: 2.25em !important;
    font-weight: 800 !important;
    margin-top: 0.8em !important;
    margin-bottom: 0.4em !important;
    line-height: 1.1 !important;
    color: #111827;
}

.prose h2 {
    font-size: 1.75em !important;
    font-weight: 700 !important;
    margin-top: 1.2em !important;
    margin-bottom: 0.6em !important;
    line-height: 1.3 !important;
    color: #111827;
}

.prose h3 {
    font-size: 1.5em !important;
    font-weight: 600 !important;
    margin-top: 1em !important;
    margin-bottom: 0.5em !important;
    color: #1f2937;
}

.prose h4 {
    font-size: 1.25em !important;
    font-weight: 600 !important;
    margin-top: 0.8em !important;
    color: #374151;
}

/* Editör için liste stilleri */
.prose ul {
    list-style-type: disc !important;
    padding-left: 1.6em !important;
}

.prose ol {
    list-style-type: decimal !important;
    padding-left: 1.6em !important;
}

.prose li {
    margin-top: 0.4em !important;
    margin-bottom: 0.4em !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float i {
    margin-top: 0;
}

/* Mobile responsive positioning */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* --- Styles moved from header.php --- */
body {
    font-family: 'Inter', system-ui, sans-serif;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #004274;
    border-radius: 4px;
}

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

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #004274 0%, #0066b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button hover effects */
.btn-primary {
    background: linear-gradient(135deg, #004274 0%, #0066b3 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 66, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 66, 116, 0.4);
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Hero overlay */
.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 66, 116, 0.85) 0%, rgba(0, 49, 89, 0.9) 100%);
}

/* FAQ Accordion */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

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

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

/* Mobile menu */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Stats counter animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: pulse 2s infinite;
}