/* Beylik Kombi - Custom Styles */

/* Navigation Link */
.nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: #374151;
    transition: color 0.2s;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #f97316;
}

/* Modern Navigation Link */
.nav-link-modern {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #374151;
    transition: all 0.2s;
    padding: 0.375rem 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border-radius: 0.5rem;
}

.nav-link-modern:hover {
    color: #f97316;
}

.nav-link-modern svg {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.nav-link-modern:hover svg {
    opacity: 1;
}

/* Floating Buttons */
.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s;
    animation: pulse-float 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse-float {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(249, 115, 22, 0);
    }
}

.floating-btn.bg-green-500 {
    animation-name: pulse-green;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }
}

/* Hero Gradient */
.hero-gradient {
    background: linear-gradient(135deg, #1e3a5f 0%, #0c1a30 50%, #1e3a5f 100%);
}

/* Card hover effect */
.service-card {
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #f97316;
}

/* District card */
.district-card {
    transition: all 0.3s;
}

.district-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* FAQ Accordion */
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #f97316;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    font-weight: 600;
    background: #f9fafb;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #fff7ed;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.25rem;
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 1.25rem 1rem;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Stats counter animation */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f97316;
    line-height: 1;
}

/* Breadcrumb */
.breadcrumb {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

/* Process Steps */
.process-step {
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}