/* MODERN CSS OVERRIDES 
   Bu dosya sadece PHP tarafından üretilen ve değiştirilemeyen HTML çıktılarını
   yeni tasarıma (Tailwind görünümüne) uydurmak için kullanılır.
*/

/* 1. PHP Generated Service Content Styling */
.service-article {
    margin-bottom: 2rem;
}

/* .service-intro-box -> Make it look like a modern callout */
.service-intro-box {
    background-color: #f8fafc; /* slate-50 */
    border-left: 4px solid #0ea5e9; /* sky-500 */
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 1.1rem;
    color: #334155; /* slate-700 */
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-body-text {
    font-size: 1rem;
    color: #475569; /* slate-600 */
    line-height: 1.8;
}

.internal-link {
    color: #0284c7; /* brand-600 */
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #bae6fd;
    text-underline-offset: 2px;
    transition: all 0.2s;
}
.internal-link:hover {
    color: #0369a1;
    text-decoration-color: #0284c7;
}

/* 2. Features Grid Output from PHP */
.why-us-section {
    margin-top: 3rem;
}
.section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
    margin-bottom: 1.5rem;
}

/* Grid Layout Override */
.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Card Styling Override */
.feature-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #bae6fd;
}

.feature-icon {
    font-size: 2rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
}
.feature-card h4 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 0.9rem;
    color: #64748b;
}

/* 3. Accordion (FAQ) Styling Override */
.accordion {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #e2e8f0;
    background-color: #fff;
}
.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.2s;
}
.accordion-header:hover {
    background-color: #f8fafc;
    color: #0284c7;
}
.accordion-header i {
    color: #94a3b8;
}
.accordion-item.active .accordion-header i {
    color: #0ea5e9;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.25rem;
    transition: max-height 0.3s ease-out, padding 0.3s;
    background-color: #fff;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-body {
    padding-bottom: 1.25rem;
}

/* Custom Scrollbar for Location Box */
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #f1f5f9; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* 4. Review Cards Styling */
.review-card {
    transition: all 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #bae6fd;
}