/**
 * Op. Dr. Numan Duman Web Sitesi - Ana CSS Dosyası
 * Modern, Responsive, Medikal Tasarım
 */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    transition: var(--transition);
}

.top-bar-item:hover {
    opacity: 0.8;
}

.top-bar-item i {
    margin-right: 5px;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    margin-left: 15px;
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo a {
    text-decoration: none;
    color: var(--text-color);
}

.logo h1 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo .tagline {
    font-size: 14px;
    color: var(--text-light);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    order: 1;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
    padding-top: 150px;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-nav button {
    background-color: rgba(239, 68, 68, 0.8);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    position: relative;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
}

.slider-nav button:hover {
    background-color: rgba(239, 68, 68, 1);
    transform: scale(1.1);
}

.slider-nav button i {
    pointer-events: none;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--white);
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 20px;
}

.section-title {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: center;
}

/* Sayfa Başlıkları */
.page-section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 20px;
}

.page-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.page-section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
    font-weight: 400;
}

.page-intro {
    margin-bottom: 60px;
}

.page-intro-content {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.services-page-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.3;
}

.service-content p,
.service-content div {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-content-text {
    line-height: 1.8;
    color: var(--text-color);
}

.service-content-text p {
    margin-bottom: 15px;
}

.service-content-text ul,
.service-content-text ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.service-content-text li {
    margin-bottom: 8px;
}

.service-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

.service-card-large {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    margin-bottom: 30px;
    transition: var(--transition);
}

.service-card-large:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card-large .service-image {
    width: 40%;
    height: auto;
    min-height: 250px;
}

.service-card-large .service-content {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-large h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Testimonials Carousel - Hem Mobil Hem Masaüstü */
.testimonials-carousel-wrapper {
    display: block;
    position: relative;
    margin-top: 40px;
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-padding: 0;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Mobilde 1, masaüstünde 2 yorum görünsün */
.testimonial-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 0;
    scroll-snap-stop: always;
}

@media (min-width: 769px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 15px); /* 2 yorum için */
    }
}

@media (min-width: 769px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 15px); /* 2 yorum için */
    }
}

.testimonials-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-prev,
.testimonial-next {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 16px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.testimonial-prev i,
.testimonial-next i {
    pointer-events: none; /* Icon tıklamayı engellemesin */
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.testimonials-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.blog-content h2,
.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-content h2 a,
.blog-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-content h2 a:hover,
.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.read-more:hover {
    margin-left: 5px;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-item {
    padding: 10px 20px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.category-item:hover,
.category-item.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-header h1 {
    font-size: 36px;
    margin: 15px 0;
}

.blog-detail-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

.blog-detail-content h2 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: var(--text-color);
}

.blog-detail-content p {
    margin-bottom: 20px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ===== ABOUT PAGE ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
}

.about-main {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.doctor-photo {
    flex: 0 0 300px;
}

.doctor-photo img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.doctor-bio {
    flex: 1;
}

.doctor-bio h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.doctor-bio h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.bio-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

/* Desktop'ta 3 sütun, tablet'te 2 sütun */
@media (min-width: 769px) and (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.expertise-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.expertise-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.expertise-item h3 {
    font-size: 18px;
}

.hospitals-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hospital-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.hospital-item.current {
    border: 2px solid var(--primary-color);
}

.hospital-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.hospital-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.hospital-dates {
    color: var(--text-light);
    font-size: 14px;
}

.current-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 10px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.document-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.document-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links-contact .social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links-contact .social-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Contact form layout (2 columns on desktop, stacked on mobile) */
.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form .form-row .form-group {
    margin-bottom: 20px;
}

.contact-form .form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.contact-form .form-actions.no-captcha {
    justify-content: flex-end;
}

.contact-form .form-captcha {
    display: flex;
    align-items: center;
}

.contact-form .form-actions .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form .form-actions .btn {
        width: 100%;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.appointment-section-contact,
.map-section {
    margin-top: 60px;
}

.appointment-section-contact h2,
.map-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: #1f2937;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column:first-child {
    text-align: left;
}

.footer-column:nth-child(4) {
    text-align: left;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.8;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-link {
    padding: 10px 15px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.pagination-link:hover,
.pagination-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--white);
}

/* ===== ERROR PAGE ===== */
.error-page {
    text-align: center;
    padding: 100px 0;
}

.error-content h1 {
    font-size: 120px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.error-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        order: 1;
    }
    
    .logo {
        order: 2;
        flex: 1;
        text-align: center;
    }
    
    .header-actions {
        order: 3;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        z-index: 1000;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: space-between;
    }
    
    .logo {
        order: 2;
        flex: 1;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 16px;
        margin: 0;
    }
    
    .logo .tagline {
        font-size: 11px;
        margin: 0;
    }
    
    .header-actions {
        order: 3;
        flex-shrink: 0;
    }
    
    .header-actions .btn {
        padding: 6px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    /* Hizmetler anasayfada 2 sütun */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .services-grid .service-card {
        min-height: auto;
    }
    
    .services-grid .service-image {
        height: 120px !important;
    }
    
    .services-grid .service-content {
        padding: 15px !important;
    }
    
    .services-grid .service-content h3 {
        font-size: 16px !important;
        margin-bottom: 8px;
    }
    
    .services-grid .service-content p,
    .services-grid .service-content div {
        font-size: 12px !important;
        margin-bottom: 10px;
    }
    
    .services-grid .service-content .btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
    
    /* Hizmetler sayfası mobilde 2 sütun */
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .services-page-grid .service-card {
        min-height: auto;
    }
    
    .services-page-grid .service-image {
        height: 120px !important;
    }
    
    .services-page-grid .service-content {
        padding: 15px !important;
    }
    
    .services-page-grid .service-content h3 {
        font-size: 16px !important;
    }
    
    .services-page-grid .service-content p,
    .services-page-grid .service-content div {
        font-size: 12px !important;
    }
    
    .services-page-grid .service-content .btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
    
    /* Hasta yorumları carousel - Mobilde 1 yorum */
    .testimonial-slide {
        flex: 0 0 100% !important;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-large {
        flex-direction: column;
    }
    
    .service-card-large .service-image,
    .service-card-large .service-content {
        width: 100%;
    }
    
    .page-section-title {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .about-main {
        flex-direction: column;
    }
    
    /* Uzmanlık alanları 2 sütun */
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    /* Footer mobil düzenlemesi */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column:first-child {
        text-align: center;
    }
    
    .footer-column:first-child h3 {
        text-align: center;
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .footer-column:first-child p {
        text-align: center;
    }
    
    .footer-column:nth-child(2) {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    
    .footer-column:nth-child(3) {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    
    .footer-column:nth-child(4) {
        text-align: center !important;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero-slider {
        height: 200px !important;
    }
    
    .slider-container {
        height: 200px !important;
    }
    
    .slide {
        height: 200px !important;
    }
    
    .slide-image {
        height: 200px !important;
    }
    
    .slide-content {
        padding-top: 30px !important;
    }
    
    .slide-content h2 {
        font-size: 16px !important;
        margin-bottom: 5px;
    }
    
    .slide-content p {
        font-size: 12px !important;
        margin-bottom: 10px;
    }
    
    .slide-content .btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
    
    /* Desktop'ta carousel göster - 2 yorum */
    .testimonial-slide {
        flex: 0 0 calc(50% - 15px) !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-section-title {
        font-size: 28px;
    }
    
    .page-section-subtitle {
        font-size: 16px;
    }
    
    .page-intro-content {
        font-size: 16px;
    }
    
    .services-grid,
    .services-page-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        grid-template-columns: 1fr !important;
    }
    
    .hero-slider {
        height: 180px !important;
    }
    
    .slider-container {
        height: 180px !important;
    }
    
    .slide {
        height: 180px !important;
    }
    
    .slide-image {
        height: 180px !important;
    }
    
    .slide-content {
        padding-top: 20px !important;
    }
    
    .slide-content h2 {
        font-size: 14px !important;
    }
    
    .slide-content p {
        font-size: 11px !important;
    }
    
    .slide-content .btn {
        padding: 5px 10px !important;
        font-size: 11px !important;
    }
    
    .services-grid,
    .services-page-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   Service Detail Page Styles
   ======================================== */

.service-detail {
    background: #f8f9fa;
}

.service-detail-hero {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-detail-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-detail-description {
    flex: 1;
}

.service-detail-description h2,
.service-suitable h2,
.service-process h2,
.service-faq h2 {
    color: #1e3a5f;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #4a90e2;
}

.service-detail-image-single {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-detail-image-single img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-detail-description-single {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.service-detail-description-single h2 {
    color: #1e3a5f;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #4a90e2;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-suitable,
.service-process {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-suitable:hover,
.service-process:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.service-faq {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.service-cta {
    background: linear-gradient(135deg, #4a90e2 0%, #50c878 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(74, 144, 226, 0.3);
    margin-top: 50px;
}

.service-cta .cta-content h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-cta .btn {
    background: white;
    color: #4a90e2;
    font-weight: 700;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-cta .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.service-content-text {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.service-content-text p {
    margin-bottom: 15px;
}

.service-content-text ul,
.service-content-text ol {
    margin: 15px 0;
    padding-left: 25px;
}

.service-content-text li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.service-content-text strong {
    color: #1e3a5f;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-detail-hero {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .service-detail-image {
        flex: 1;
        max-width: 100%;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-suitable,
    .service-process,
    .service-faq,
    .service-detail-image-single,
    .service-detail-description-single {
        padding: 25px;
    }
    
    .service-detail-description h2,
    .service-suitable h2,
    .service-process h2,
    .service-faq h2 {
        font-size: 22px;
    }
    
    .service-cta {
        padding: 40px 25px;
    }
    
    .service-cta .cta-content h3 {
        font-size: 22px;
    }
    
    .service-cta .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}
