/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Garamond', 'Times New Roman', serif;
    color: #0a2d4d;
}

/* Header */
.header {
    background: #fff;
    color: #333;
    padding: 1rem 0;
    border-bottom: 3px solid #bda06d;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0a2d4d;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.logo i {
    color: #bda06d;
    margin-right: 10px;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    padding: 0 1rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover, .nav-menu .dropdown:hover .nav-link {
    color: #bda06d;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0.5rem 1rem;
}

/* Hero Section */
.hero {
    background: url('anasayfa.png') no-repeat center center/cover;
    height: 90vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 45, 77, 0.7);
}

.hero-content {
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #bda06d;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background: #bda06d;
}

.btn-primary:hover {
    background: #a88c5a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #25D366;
    color: #fff;
}

.btn-secondary:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-content img {
    width: 100%;
    border-radius: 10px;
}

/* Birleşik Hakkımızda + Avukat Stili */
.about-with-lawyer {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.about-lawyer-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    position: sticky;
    top: 100px;
}

.about-lawyer-card .lawyer-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    margin-bottom: 1rem;
}

.about-lawyer-card h3 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.about-lawyer-card .title {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-lawyer-card .lawyer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.about-lawyer-card .lawyer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a365d;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-lawyer-card .lawyer-social a i {
    color: #ffffff !important;
    font-size: 1rem;
}

.about-lawyer-card .lawyer-social a:hover {
    background: #c49b61;
    transform: translateY(-3px);
}

.about-text h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.expertise-tags .tag {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expertise-tags .tag i {
    font-size: 0.8rem;
}

/* Responsive - Birleşik Hakkımızda */
@media (max-width: 768px) {
    .about-with-lawyer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-lawyer-card {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Team/Avukat Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Tek avukat için özel stil */
.team-grid.single-lawyer {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.team-grid.single-lawyer .team-card {
    width: 100%;
    max-width: 400px;
}

.team-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-card h3 {
    margin-bottom: 0.5rem;
}

.team-card .title {
    color: #bda06d;
    font-weight: bold;
}

.team-social {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #666;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.team-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* LinkedIn rengi */
.team-social a[href*="linkedin"] {
    background: #0077b5;
}

.team-social a[href*="linkedin"]:hover {
    background: #005885;
}

/* E-posta rengi */
.team-social a[href^="mailto"] {
    background: #ea4335;
}

.team-social a[href^="mailto"]:hover {
    background: #c23321;
}

/* WhatsApp rengi */
.team-social a[href*="wa.me"] {
    background: #25d366;
}

.team-social a[href*="wa.me"]:hover {
    background: #20ba5a;
}

/* Specialties Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    background: #fff;
    padding: 2rem 1.8rem;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 260px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon {
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background: rgba(189, 160, 109, 0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2.2rem;
    color: #bda06d;
}

.service-card:hover .service-icon {
    background: rgba(189, 160, 109, 0.2);
    transform: scale(1.05);
}

.service-card h3 {
    margin: 0 0 1rem 0;
    color: #1a365d;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(189, 160, 109, 0.12);
    border-color: #bda06d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #bda06d, #d4b574);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

/* Articles Section */
.articles {
    background-color: #fff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: #f4f7f6;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.article-icon {
    font-size: 2.5rem;
    color: #bda06d;
    margin-bottom: 1rem;
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.article-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 50px; /* Kartların aynı hizada durması için */
}

/* Competition Updates Section */
.competition-updates {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 90, 135, 0.9) 100%), url('rekabet.png') center/cover no-repeat;
    color: #fff;
    padding: 4rem 0;
    position: relative;
}

.competition-updates .section-header h2,
.competition-updates .section-header p {
    color: #fff;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.update-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.update-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.update-icon {
    font-size: 3rem;
    color: #c49b61;
    margin-bottom: 1.5rem;
}

.update-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.update-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-outline {
    background: transparent;
    border: 2px solid #c49b61;
    color: #c49b61;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-outline:hover {
    background: #c49b61;
    color: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 155, 97, 0.3);
}

/* Contact Section */
.contact {
    background: #0a2d4d;
    color: #fff;
}

.contact h2, .contact p {
    color: #fff;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #bda06d;
    margin-top: 0.2rem;
    min-width: 30px;
}

.contact-item h4 {
    margin: 0 0 0.5rem 0;
    color: #fff;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

.contact-item a {
    color: #bda06d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(189, 160, 109, 0.1);
    border: 1px solid #bda06d;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #bda06d;
    color: #0a2d4d !important;
}

.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    color: #333;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Map Section */
.map-section {
    background: #f4f7f6;
    padding: 4rem 0;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    max-width: 300px;
}

.map-info h3 {
    margin: 0 0 0.5rem 0;
    color: #0a2d4d;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-info h3 i {
    color: #bda06d;
}

.map-info p {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.map-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #bda06d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: #0a2d4d;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.map-btn i {
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-bottom: 2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}
.footer-section a:hover {
    color: #bda06d;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
}

@media(max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #fff;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .about-content, .team-grid, .services-grid, .articles-grid, .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form {
        max-width: 100%;
        padding: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .map-overlay {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.98);
    }

    .map-container iframe {
        height: 300px;
    }

    .map-buttons {
        justify-content: center;
    }

    .map-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }
}

/* Online Randevu Section */
.appointment-section {
    padding: 60px 0;
    background: #f4f7f6;
    min-height: auto;
}

.appointment-wizard {
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    min-height: 500px;
}

/* Sol Sidebar */
.appointment-sidebar {
    width: 300px;
    background: #0a2d4d;
    color: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step.active {
    background: rgba(189,160,109,0.2);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step.active .step-icon {
    background: #bda06d;
    border-color: #bda06d;
}

.contact-sidebar h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Garamond', 'Times New Roman', serif;
}

.contact-sidebar p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

.expand-btn {
    background: transparent;
    border: 1px solid rgba(189,160,109,0.5);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: rgba(189,160,109,0.2);
    border-color: #bda06d;
}

/* Ana İçerik */
.appointment-content {
    flex: 1;
    padding: 1.5rem;
    position: relative;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.appointment-content h3 {
    color: #0a2d4d;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: 'Garamond', 'Times New Roman', serif;
}

/* Hizmet Seçimi */
.service-selection {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-option {
    cursor: pointer;
}

.appointment-content .service-card {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    height: auto;
    min-height: 40px;
    max-height: 45px;
    position: relative;
    font-size: 0.9rem;
}

.appointment-content .service-card:hover {
    border-color: #bda06d;
    background: #f7fafc;
    transform: none;
    box-shadow: 0 2px 8px rgba(189, 160, 109, 0.1);
}

.dropdown-arrow {
    color: #718096;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.appointment-content .service-card:hover .dropdown-arrow {
    color: #bda06d;
    transform: rotate(180deg);
}

.appointment-content .service-option input:checked + .service-card {
    border-color: #bda06d;
    background: #fdf7f0;
}

.dropdown-content {
    display: none;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.dropdown-content.show {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.lawyer-option, .service-item {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lawyer-option:last-child, .service-item:last-child {
    border-bottom: none;
}

.lawyer-option:hover, .service-item:hover {
    background: #fdf7f0;
}

.lawyer-option img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.lawyer-option h4, .service-item h4 {
    margin: 0;
    color: #0a2d4d;
    font-family: 'Garamond', 'Times New Roman', serif;
}

.lawyer-option p, .service-item p {
    margin: 0;
    color: #718096;
    font-size: 0.9rem;
}

.service-item {
    justify-content: space-between;
}

.price {
    font-weight: 600;
    color: #bda06d;
}

/* Tarih & Saat Seçimi */
.selected-info {
    background: #fdf7f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(189,160,109,0.3);
    font-size: 0.9rem;
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bda06d;
    font-weight: 600;
    font-size: 0.9rem;
}

.selected-lawyer {
    color: #0a2d4d;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.datetime-selection {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.6rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
}

.btn-nav {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 0.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0a2d4d;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background: #fdf7f0;
    border-color: #bda06d;
}

.month-year {
    display: flex;
    gap: 0.5rem;
}

.month-year select {
    padding: 0.3rem 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #fff;
    color: #0a2d4d;
    font-size: 0.85rem;
}

.duration-selection {
    margin-bottom: 0.7rem;
}

.duration-selection select {
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #fff;
    width: 100%;
    color: #0a2d4d;
    font-size: 0.85rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.4rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-weekdays span {
    text-align: center;
    padding: 0.2rem;
    font-weight: 600;
    color: #0a2d4d;
    font-size: 0.8rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    max-width: 280px;
    margin: 0 auto;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
    position: relative;
    color: #0a2d4d;
    font-size: 0.8rem;
    min-height: 25px;
    max-height: 30px;
}

.calendar-day:hover {
    background: #fdf7f0;
}

.calendar-day.available {
    background: #f0f9ff;
    color: #0a2d4d;
}

.calendar-day.selected {
    background: #bda06d;
    color: #fff;
}

.calendar-day.disabled {
    color: #cbd5e0;
    cursor: not-allowed;
}

/* Bilgiler Formu */
.back-button button {
    background: transparent;
    border: none;
    color: #0a2d4d;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.appointment-summary {
    background: #fdf7f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(189,160,109,0.3);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-item .label {
    font-weight: 600;
    color: #0a2d4d;
}

.user-info-form {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0a2d4d;
}

.required {
    color: #e53e3e;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #bda06d;
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    min-width: 80px;
}

/* Ödeme Sayfası */
.final-summary {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
}

.order-summary {
    margin-bottom: 2rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    background: #fdf7f0;
    border-radius: 8px;
}

.item-details h5 {
    margin: 0 0 0.5rem 0;
    color: #0a2d4d;
    font-family: 'Garamond', 'Times New Roman', serif;
}

.item-details p {
    margin: 0;
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.4;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a2d4d;
}

.payment-summary {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #0a2d4d;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    border-top: 1px solid #e2e8f0;
    padding-top: 0.5rem;
    margin-top: 1rem;
}

/* Saat Seçimi Modal */
.time-slots-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,45,77,0.5);
    z-index: 2000;
}

.time-slots-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header h4 {
    margin: 0 0 1.5rem 0;
    color: #0a2d4d;
    font-family: 'Garamond', 'Times New Roman', serif;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    color: #718096;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f0f0f0;
    color: #0a2d4d;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.time-slot {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #0a2d4d;
}

.time-slot:hover {
    border-color: #bda06d;
    background: #fdf7f0;
}

.time-slot.active {
    background: #bda06d;
    color: #fff;
    border-color: #bda06d;
}

/* Butonlar */
.btn-next, .btn-confirm-time, .btn-payment {
    background: #bda06d;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-next:hover, .btn-confirm-time:hover, .btn-payment:hover {
    background: #a88c5a;
}

.btn-next:disabled {
    background: #cbd5e0 !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
    color: #718096 !important;
    transform: none !important;
}

.btn-next:disabled:hover {
    background: #cbd5e0 !important;
    transform: none !important;
    cursor: not-allowed !important;
}

.btn-appointment {
    background: #bda06d !important;
    color: #fff !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-appointment:hover {
    background: #a88c5a !important;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .appointment-wizard {
        flex-direction: column;
    }
    
    .appointment-sidebar {
        width: 100%;
        padding: 1rem;
    }
    
    .step-indicator {
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1rem;
    }
    
    .step {
        min-width: 120px;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-sidebar {
        display: none;
    }
    
    .appointment-content {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .time-slots-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        font-size: 0.9rem;
    }
}

/* Makaleler Kategorisi */
.articles-category {
    margin-bottom: 3rem;
}

.category-title {
    color: #0a2d4d;
    font-family: 'Garamond', 'Times New Roman', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #bda06d;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title i {
    color: #bda06d;
}

.articles-grid h4 {
    color: #0a2d4d;
    font-family: 'Garamond', 'Times New Roman', serif;
    margin: 1rem 0;
}

/* Rekabet Kurumu Bülteni */
.bulletin-section {
    padding: 80px 0;
    background: #fff;
}

.bulletin-content {
    max-width: 1200px;
    margin: 0 auto;
}

.bulletin-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.bulletin-card.featured {
    background: linear-gradient(135deg, #0a2d4d 0%, #1a4b7a 100%);
    color: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.bulletin-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(189,160,109,0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.bulletin-date {
    background: #bda06d;
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.bulletin-date .date {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.bulletin-date .year {
    font-size: 0.9rem;
    opacity: 0.9;
}

.bulletin-content-text h3 {
    color: #fff;
    font-family: 'Garamond', 'Times New Roman', serif;
    margin-bottom: 1rem;
}

.bulletin-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.bulletin-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.bulletin-highlights li::before {
    content: '▸';
    color: #bda06d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.bulletin-sidebar {
    background: #f4f7f6;
    border-radius: 10px;
    padding: 1.5rem;
}

.bulletin-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e6ed;
}

.bulletin-item:last-child {
    border-bottom: none;
}

.bulletin-icon {
    width: 40px;
    height: 40px;
    background: #bda06d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bulletin-text h4 {
    color: #0a2d4d;
    font-family: 'Garamond', 'Times New Roman', serif;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.bulletin-text p {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bulletin-date-small {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 500;
}

.bulletin-archive {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.bulletin-archive h3 {
    color: #0a2d4d;
    font-family: 'Garamond', 'Times New Roman', serif;
    margin-bottom: 1.5rem;
}

.archive-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.archive-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f4f7f6;
    border-radius: 8px;
    text-decoration: none;
    color: #0a2d4d;
    transition: all 0.3s ease;
}

.archive-link:hover {
    background: #bda06d;
    color: #fff;
    transform: translateY(-2px);
}

/* Ödeme Sayfası */
.payment-section {
    padding: 80px 0;
    background: #f4f7f6;
    min-height: 100vh;
}

.payment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #0a2d4d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #bda06d;
}

.payment-header h1 {
    color: #0a2d4d;
    font-family: 'Garamond', 'Times New Roman', serif;
    margin-bottom: 0.5rem;
}

.payment-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-form-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.payment-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e6ed;
}

.payment-steps .step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.9rem;
}

.payment-steps .step.completed {
    color: #28a745;
}

.payment-steps .step.active {
    color: #bda06d;
    font-weight: 600;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    cursor: pointer;
}

.method-card {
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method.active .method-card,
.payment-method input:checked + .method-card {
    border-color: #bda06d;
    background: #fdf7f0;
}

.method-card i {
    font-size: 1.5rem;
    color: #bda06d;
}

.method-card span {
    font-weight: 600;
    color: #0a2d4d;
}

.card-icons {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
}

.card-icons i {
    font-size: 1.2rem;
    color: #718096;
}

.payment-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.card-input {
    position: relative;
}

.card-input .card-type {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
}

.bank-info {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    padding: 1.5rem;
}

.bank-details {
    margin: 1rem 0;
}

.bank-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.bank-item:last-child {
    border-bottom: none;
}

.transfer-note {
    background: #e3f2fd;
    border: 1px solid #bda06d;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.transfer-note i {
    color: #bda06d;
    margin-top: 0.2rem;
}

.security-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.order-summary-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.order-summary h3 {
    color: #0a2d4d;
    font-family: 'Garamond', 'Times New Roman', serif;
    margin-bottom: 1.5rem;
}

.appointment-details {
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.appointment-item h4 {
    color: #0a2d4d;
    font-family: 'Garamond', 'Times New Roman', serif;
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.info-row .label {
    color: #718096;
    font-weight: 500;
}

.info-row .value {
    color: #0a2d4d;
    font-weight: 600;
}

.price-breakdown {
    border-top: 1px solid #e0e6ed;
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #0a2d4d;
}

.price-row.total {
    font-size: 1.2rem;
    font-weight: bold;
    border-top: 1px solid #e0e6ed;
    padding-top: 0.5rem;
    margin-top: 1rem;
}

.customer-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.customer-info h4 {
    color: #0a2d4d;
    font-family: 'Garamond', 'Times New Roman', serif;
    margin-bottom: 0.5rem;
}

.customer-details p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.terms-conditions {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e6ed;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #bda06d;
    border-color: #bda06d;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.terms-link, .privacy-link {
    color: #bda06d;
    text-decoration: none;
}

.terms-link:hover, .privacy-link:hover {
    text-decoration: underline;
}

.btn-payment {
    width: 100%;
    background: #bda06d;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-payment:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
}

.btn-payment:not(:disabled):hover {
    background: #a88c5a;
    transform: translateY(-2px);
}

.payment-security {
    text-align: center;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #718096;
}

.security-badge i {
    color: #28a745;
}

/* Responsive - Ödeme Sayfası */
@media (max-width: 768px) {
    .payment-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .card-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .bulletin-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .archive-links {
        grid-template-columns: 1fr;
    }
}

/* Policy Pages Styles */
.main-content {
    padding: 2rem 0;
    background: #f8f9fc;
    min-height: 100vh;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #0a2d4d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2d5a87;
}

.breadcrumb i {
    margin-right: 0.5rem;
}

.policy-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.policy-content h1 {
    color: #0a2d4d;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 3px solid #bda06d;
    padding-bottom: 1rem;
}

.policy-date {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fc;
    border-left: 4px solid #bda06d;
    border-radius: 0 8px 8px 0;
}

.policy-intro {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #0a2d4d;
}

.policy-intro p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: #0a2d4d;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.policy-section h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #bda06d;
    border-radius: 2px;
}

.policy-section h3 {
    color: #2d5a87;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.policy-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
}

.policy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #333;
}

.contact-info {
    background: #f8f9fc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #0a2d4d;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: #2d5a87;
    text-decoration: underline;
}

.policy-footer {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid #dadce0;
}

.policy-footer p {
    margin: 0;
    font-style: italic;
    color: #666;
}

/* Cookie Table Styles */
.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cookie-table th {
    background: #0a2d4d;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table td {
    color: #333;
    font-size: 0.9rem;
}

.cookie-table tr:hover {
    background: #f8f9fc;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .cookie-table {
        font-size: 0.8rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

/* ==========================================
   REKABET KURUMU HABER AKIŞI STİLLERİ
   ========================================== */

.last-refresh {
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.last-refresh.updated {
    color: #4CAF50 !important;
    animation: none;
}

/* Haber kartlarına hover efekti */
.bulletin-sidebar .bulletin-item {
    transition: all 0.3s ease;
    cursor: default;
}

.bulletin-sidebar .bulletin-item:hover {
    background-color: #f0f8ff;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 3px solid #bda06d;
    padding-left: 1rem;
}

.bulletin-sidebar .bulletin-item.clickable {
    cursor: pointer;
}

/* Loading state */
.bulletin-content.loading {
    opacity: 0.7;
    pointer-events: none;
}

.bulletin-content.loading::after {
    content: "📡 Güncelleniyor...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.95);
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #bda06d;
    font-weight: bold;
    color: #0a2d4d;
    z-index: 100;
}

/* Haber güncelleme başarı animasyonu */
@keyframes newsUpdate {
    0% { 
        background-color: transparent; 
        transform: scale(1);
    }
    50% { 
        background-color: #e8f5e8; 
        transform: scale(1.02);
    }
    100% { 
        background-color: transparent; 
        transform: scale(1);
    }
}

.bulletin-card.updated {
    animation: newsUpdate 1s ease-in-out;
}

/* Responsive haber akışı */
@media (max-width: 768px) {
    .last-refresh {
        font-size: 0.75em;
        text-align: center;
    }
    
    .bulletin-sidebar .bulletin-item:hover {
        transform: none;
        padding-left: 0.5rem;
    }
}
