/* Global Styles — stiller, renkler :root uzerinde theme.css icinde tanimli (--site-*) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    box-shadow: 0 1px 0 rgba(254, 208, 139, 0.15);
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.language-switcher .btn {
    margin: 0 2px;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--site-gold-soft) !important;
}

/* Menü alt çizgisi — detay: header.php içindeki kural baskın olmalı (tam genişlik) */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.65em;
    right: 0.65em;
    width: auto;
    transform: none;
    height: 2px;
    background-color: var(--site-gold-soft);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--site-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--site-ink-muted);
    text-align: center;
    margin-bottom: 3rem;
}

/* Practice Areas */
.practice-areas {
    background: transparent;
}

.practice-card {
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--site-line);
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--site-gold);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ecbf7c, var(--site-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.practice-card h4 {
    color: var(--site-navy);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.practice-card p {
    color: var(--site-ink-muted);
    line-height: 1.6;
}

/* About Summary */
.about-summary {
    background: var(--site-paper-soft);
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--site-gold);
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: var(--site-ink-muted);
    font-weight: 500;
}

.btn-outline-primary {
    border-color: var(--site-gold);
    color: var(--site-gold);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--site-gold);
    border-color: var(--site-gold);
    transform: translateY(-2px);
}

/* Team Section */
.team-section {
    background: transparent;
}

.team-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 0;
}

.team-card {
    margin-bottom: 24px;
    padding: 0 8px;
    background: transparent;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44,62,80,0.12), 0 1.5px 4px rgba(44,62,80,0.10);
    transition: transform 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.2s cubic-bezier(.4,0,.2,1);
    height: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(44,62,80,0.18), 0 2px 8px rgba(44,62,80,0.12);
}

.team-image {
    height: 220px;
    overflow: hidden;
    background: #f4f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image img {
    width: 100%;
    height: 100%;
    max-width: 220px;
    max-height: 220px;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    border-radius: 50%;
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-info {
    padding: 1.5rem 1rem 1.2rem 1rem;
    text-align: center;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h4 {
    color: var(--site-navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.position {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specialty {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--site-navy) !important;
}

.footer h5 {
    color: white;
    margin-bottom: 1rem;
}

.footer h6 {
    color: var(--site-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--site-gold);
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--site-gold);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--site-gold);
    color: white;
    transform: translateY(-3px);
}

.footer ul li {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

/* Language Switcher */
.tr-text, .en-text {
    transition: var(--transition);
}

.d-none {
    display: none !important;
}

/* Page Header */
.page-header {
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: white;
    text-align: center;
}

/* About Page Styles */
.about-content {
    background: transparent;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--site-navy);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content .lead {
    color: var(--site-ink);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-vision .card {
    border: none;
    transition: var(--transition);
    height: 100%;
    background: rgba(255,255,255,0.8);
}

.mission-vision .card:hover {
    transform: translateY(-5px);
}

.mission-vision .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ecbf7c, var(--site-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-card {
    background: transparent;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ecbf7c, var(--site-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h4 {
    color: var(--site-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--site-ink-muted);
    line-height: 1.6;
}

.team-detail-card {
    background: transparent;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44,62,80,0.12), 0 1.5px 4px rgba(44,62,80,0.10);
    transition: transform 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.2s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
}

.team-detail-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(44,62,80,0.18), 0 2px 8px rgba(44,62,80,0.12);
}

.team-detail-card img {
    object-fit: cover;
    width: 100%;
}

.team-detail-card h4 {
    color: var(--site-navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-detail-card .position {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.team-detail-card .specialty {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.team-detail-card .bio {
    line-height: 1.7;
    color: var(--site-ink-muted);
}

/* Contact Page Styles */
.contact-card {
    background: transparent;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ecbf7c, var(--site-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-card h4 {
    color: var(--site-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--site-ink-muted);
    line-height: 1.6;
}

.contact-card a {
    color: var(--site-gold);
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--site-gold);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
}

.working-day {
    padding: 1rem 0;
    border-bottom: 1px solid var(--site-line);
}

.working-day:last-child {
    border-bottom: none;
}

.working-day strong {
    color: var(--site-navy);
    font-weight: 600;
}

.working-day p {
    color: var(--site-ink-muted);
    margin: 0;
}

/* FAQ Styles */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: var(--site-navy);
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--site-gold);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    color: var(--site-ink);
    line-height: 1.6;
}

/* Form Styles */
.form-control, .form-select {
    border: 2px solid var(--site-line);
    border-radius: 10px;
    padding: 12px 15px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--site-gold);
    box-shadow: 0 0 0 0.2rem rgba(122, 88, 31, 0.22);
}

.form-label {
    font-weight: 600;
    color: var(--site-navy);
    margin-bottom: 0.5rem;
}

.invalid-feedback {
    color: var(--site-danger);
    font-size: 0.875rem;
}

/* Articles Page Styles */
.articles-filter {
    border-bottom: 1px solid var(--site-line);
}

.articles-filter .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: var(--transition);
}

.articles-filter .btn.active {
    background-color: var(--site-gold);
    color: white;
    box-shadow: 0 4px 12px rgba(19, 27, 46, 0.18);
}

.article-card {
    background: transparent;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44,62,80,0.12), 0 1.5px 4px rgba(44,62,80,0.10);
    transition: transform 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.2s cubic-bezier(.4,0,.2,1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(44,62,80,0.18), 0 2px 8px rgba(44,62,80,0.12);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.08);
}

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--site-gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.article-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    margin-bottom: 0.75rem;
    color: var(--site-ink-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-title {
    color: var(--site-navy);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    flex-grow: 1;
}

.article-excerpt {
    color: var(--site-ink-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.article-card .btn {
    align-self: flex-start;
    border-radius: 20px;
    padding: 8px 20px;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--site-paper-soft);
}

.newsletter-form .input-group {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .language-switcher {
        margin-right: 1rem !important;
    }
    
    .team-detail-card {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .practice-areas, .team-section, .about-summary, .values, .articles-filter, .newsletter-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .practice-card, .team-card, .value-card, .article-card, .contact-card, .team-detail-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 12px !important;
        padding: 1rem !important;
        box-sizing: border-box;
    }
    .team-section .row, .values .row, .practice-areas .row {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    .practice-card h4, .team-info h4, .value-card h4, .article-title {
        font-size: 1rem;
    }
    .practice-card p, .team-info p, .value-card p, .article-excerpt, .article-meta, .contact-card p {
        font-size: 0.92rem;
    }
    .custom-slider-btn, .btn, .btn-outline-primary {
        font-size: 0.9rem !important;
        padding: 0.5rem 1.2rem !important;
        border-radius: 20px !important;
    }
    .stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    .about-image img, .team-image img {
        max-width: 100px !important;
        max-height: 100px !important;
    }
    .article-image img {
        max-width: 100%;
        height: auto;
    }
    .footer {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

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

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.practice-card,
.team-card,
.about-image,
.value-card,
.contact-card,
.team-detail-card,
.article-card {
    animation: fadeInUp 0.6s ease-out;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--site-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--site-gold);
} 