/* ==========================================
   Genel Ayarlar
   ========================================== */
:root {
    --primary-color: #0066cc;
    --secondary-color: #00a8ff;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --white: #ffffff;
    --gray: #95a5a6;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --font-main: 'Poppins', sans-serif;
}

/* Font Display Optimization */
@font-face {
    font-family: 'Poppins';
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Lazy Loading Image Placeholder */
img[loading="lazy"] {
    background: var(--light-color);
    min-height: 200px;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: nowrap;
    gap: 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
}

.logo i {
    font-size: 2rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid var(--primary-color);
    background: #ffffff;
    padding: 2px;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-translate {
    display: flex;
    align-items: center;
}

.nav-translate #google_translate_element {
    padding: 0;
}

/* Google Translate widget stillerini özelleştir */
.goog-te-gadget {
    font-family: var(--font-main) !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0.5rem 0.8rem !important;
    border-radius: 5px !important;
    transition: background-color 0.3s !important;
    font-size: 0.9rem !important;
}

.goog-te-gadget-simple:hover {
    background-color: var(--light-color) !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

/* Google Translate bar'ını gizle */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

body > .skiptranslate {
    display: none !important;
}

iframe.skiptranslate {
    display: none !important;
}

#google_translate_element {
    display: none !important;
}

/* Özel Dil Seçici */
.custom-lang-selector {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background-color: transparent;
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn .fi,
.lang-option .fi {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    display: inline-block;
}

.lang-btn:hover {
    background-color: var(--light-color);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 120px;
    z-index: 1000;
    margin-top: 0.5rem;
}

.lang-dropdown.show {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.lang-option:hover {
    background-color: var(--light-color);
}

.lang-option.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.lang-option.active:hover {
    background-color: var(--primary-color);
}

/* Görüntü Yüklemeden Önce Varsayılan Metin */
.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu-header {
    display: none;
}

.mobile-menu-close {
    display: none;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    color: var(--white);
    padding: 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding: 4rem 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .btn {
    margin: 0 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 250px;
    }
}

/* ==========================================
   Hero Slider
   ========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    background: #f0f0f0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 102, 204, 0.7), rgba(0, 168, 255, 0.7));
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease-out;
}

.slide-content .btn {
    margin: 0 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.4s ease-out;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    padding: 1rem 1.2rem;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.3s;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-container {
        height: 250px;
    }
    
    .slide-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .slide-content .btn {
        display: inline-block;
        margin: 0.3rem 0.2rem;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .slider-nav {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        padding: 0;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 280px;
    }
    
    .slide-content {
        padding: 1.2rem 1rem;
        max-width: 90%;
        text-align: center;
        position: absolute;
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        font-weight: 700;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .slide-content .btn {
        display: inline-block;
        margin: 0.3rem 0.2rem;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        min-width: 120px;
        width: auto;
    }
    
    .slider-nav {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        padding: 0;
    }
    
    .slider-nav.prev {
        left: 5px;
    }
    
    .slider-nav.next {
        right: 5px;
    }
}

/* iPhone 6,7,8 için özel ayarlar */
@media (max-width: 375px) {
    .slider-container {
        height: 260px;
    }
    
    .slide-content {
        padding: 1rem 0.8rem;
        max-width: 85%;
        position: absolute;
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .slide-content h1 {
        font-size: 1.4rem;
        margin-bottom: 0.7rem;
        line-height: 1.2;
    }
    
    .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 1.3rem;
        line-height: 1.3;
    }
    
    .slide-content .btn {
        display: inline-block;
        margin: 0.25rem 0.15rem;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        min-width: 110px;
    }
    
    .slider-nav {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
        padding: 0;
    }
    
    .slider-nav.prev {
        left: 3px;
    }
    
    .slider-nav.next {
        right: 3px;
    }
}

@media (max-width: 360px) {
    .slider-container {
        height: 240px;
    }
    
    .slide-content {
        padding: 0.9rem 0.7rem;
        max-width: 80%;
        position: absolute;
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .slide-content h1 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }
    
    .slide-content p {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    
    .slide-content .btn {
        display: inline-block;
        margin: 0.2rem 0.1rem;
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        min-width: 100px;
    }
    
    .slider-nav {
        width: 18px;
        height: 18px;
        font-size: 0.55rem;
        padding: 0;
    }
    
    .slider-nav.prev {
        left: 2px;
    }
    
    .slider-nav.next {
        right: 2px;
    }
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

/* ==========================================
   Section Styles
   ========================================== */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

/* ==========================================
   Cards & Grid
   ========================================== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.card-text {
    color: var(--gray);
}

/* ==========================================
   Blog Cards
   ========================================== */
.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.blog-card-meta {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.blog-card-excerpt {
    color: var(--gray);
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card .btn {
    margin-top: auto;
    align-self: center;
}

/* ==========================================
   Forms
   ========================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-color);
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.error-message {
    color: var(--danger);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.success-message {
    background: var(--success);
    color: var(--white);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

/* ==========================================
   Timeline (About Page)
   ========================================== */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--white);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================
   Admin Panel
   ========================================== */
.admin-header {
    background: var(--dark-color);
    color: var(--white);
    padding: 1rem 0;
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.admin-nav-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.admin-nav-link:hover {
    color: var(--secondary-color);
}

.admin-dashboard {
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
}

.admin-table {
    width: 100%;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-color);
}

.admin-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.admin-table tr:hover {
    background: var(--light-color);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-success {
    background: var(--success);
    color: var(--white);
}

.badge-warning {
    background: var(--warning);
    color: var(--white);
}

.badge-danger {
    background: var(--danger);
    color: var(--white);
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.login-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.login-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* ==========================================
   Pagination
   ========================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.pagination a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.pagination .active {
    background: var(--primary-color);
    color: var(--white);
}

/* ==========================================
   Google Maps
   ========================================== */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================
   Responsive Design
   ========================================== */
/* ==========================================
   Blog Detail
   ========================================== */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.blog-detail-card {
    padding: 40px;
}

.blog-sidebar-card {
    padding: 25px;
    margin-bottom: 25px;
}

.blog-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ==========================================
   Appointment Form
   ========================================== */
.appointment-card {
    padding: 40px;
}

.appointment-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.appointment-form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-detail-card {
        padding: 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-share-buttons {
        gap: 8px;
    }
    
    .blog-share-buttons a {
        flex: 1;
        min-width: 0;
    }
    
    .blog-sidebar-card {
        padding: 20px;
    }
    
    /* Profil resmi mobil uyumu */
    .blog-sidebar-card > div[style*="width: 100px"] {
        width: 150px !important;
        height: 150px !important;
    }
    
    .blog-sidebar-card img[style*="object-fit"] {
        object-fit: contain !important;
    }
    
    .appointment-card {
        padding: 25px;
    }
    
    .appointment-form-row-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .appointment-form-row-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .header-content {
        justify-content: space-between;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .nav {
        display: none;
        width: 100%;
        order: 4;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 9999;
        overflow-y: auto;
        padding: 0;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 2rem;
        background: var(--primary-color);
        color: var(--white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .mobile-menu-header h2 {
        margin: 0;
        font-size: 1.5rem;
        color: var(--white);
    }
    
    .mobile-menu-close {
        display: block;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 0.5rem;
        transition: transform 0.3s;
    }
    
    .mobile-menu-close:hover {
        transform: rotate(90deg);
    }
    
    .nav.active {
        display: flex;
        flex-direction: column;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid var(--light-color);
        text-align: left;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .nav-link:hover {
        background-color: var(--light-color);
    }
    
    .nav-translate {
        width: 100%;
        justify-content: center;
        padding: 1.5rem 0;
        border-top: 2px solid var(--light-color);
        margin-top: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .translate-widget {
        order: 3;
        margin-right: auto;
    }
    
    /* About Section Responsive */
    .about-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .about-image-container {
        order: 1 !important;
        text-align: center !important;
        width: 100% !important;
        grid-row: 1;
    }
    
    .about-image-container h2 {
        display: none !important;
    }
    
    .profile-image {
        width: 180px !important;
        height: 180px !important;
        border-radius: 50% !important;
        object-fit: contain !important;
        object-position: center !important;
        margin: 0 auto !important;
    }
    
    .about-text {
        padding-left: 0 !important;
        border-left: none !important;
        width: 100% !important;
        order: 2 !important;
        grid-row: 2 !important;
    }
    
    .about-text p {
        text-align: justify !important;
        margin-bottom: 1rem !important;
    }
    
    /* About Page Responsive */
    .about-profile-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-profile-image img,
    .about-profile-image-placeholder {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        object-fit: contain;
        object-position: center;
    }
    
    /* Services CTA */
    .services-cta-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .profile-image {
        width: 180px;
        height: 135px;
        border-radius: 50%;
        object-fit: contain;
        object-position: center;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* About Page */
    .about-profile-image img,
    .about-profile-image-placeholder {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: contain;
        object-position: center;
    }
    
    /* Blog Share Buttons */
    .blog-share-buttons {
        gap: 5px !important;
    }
    
    .blog-share-buttons a {
        flex: 1;
        min-width: 0;
        padding: 0.6rem 0.8rem !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Blog sidebar profil resmi - mobil */
    .blog-sidebar-card > div[style*="width: 100px"] {
        width: 140px !important;
        height: 140px !important;
    }
    
    .blog-sidebar-card img[style*="object-fit: cover"] {
        object-fit: contain !important;
    }
    
    /* Services CTA */
    .services-cta-box {
        padding: 1.5rem;
    }
    
    .services-cta-box h3 {
        font-size: 1.3rem;
    }
    
    /* Blog Card Button Mobile */
    .blog-card .btn {
        align-self: center !important;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* ==========================================
   About Section
   ========================================== */
.about-section {
    background: var(--white);
    border-bottom: 3px solid var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7f8c8d;
}

.about-image-container {
    text-align: center;
}

.about-image-container h2 {
    display: block;
    text-align: center;
    margin-top: 1rem;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 6px solid #d0d0d0;
    max-width: 100%;
    background: #ffffff !important;
    padding: 10px;
}

/* About Page Layout */
.about-profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-profile-image {
    text-align: center;
}

.about-profile-image img,
.about-profile-image-placeholder {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #ffffff !important;
    padding: 10px;
    border: 3px solid #d0d0d0;
}

.about-profile-image-placeholder {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-profile-name {
    margin-top: 2rem;
    color: var(--primary-color);
}

.about-profile-specialty {
    color: var(--gray);
}

.about-profile-bio h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-weight: 700;
}

.about-profile-bio p {
    font-size: 1.1rem;
    line-height: 2.2;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-weight: 400;
    color: #555;
    text-align: left;
}

/* Services CTA Box */
.services-cta-box {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.services-cta-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-cta-box p {
    color: var(--gray);
    margin-bottom: 2rem;
}

/* ==========================================
   Blog Content Styling
   ========================================== */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #333;
    margin: 25px 0 15px 0;
    line-height: 1.4;
    font-weight: 600;
}

.blog-content h1 { font-size: 2rem; }
.blog-content h2 { font-size: 1.75rem; }
.blog-content h3 { font-size: 1.5rem; }
.blog-content h4 { font-size: 1.25rem; }
.blog-content h5 { font-size: 1.1rem; }
.blog-content h6 { font-size: 1rem; }

.blog-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.blog-content ul,
.blog-content ol {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content strong {
    font-weight: 700;
    color: #222;
}

.blog-content em {
    font-style: italic;
}

.blog-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.blog-content a:hover {
    color: var(--secondary-color);
}

.blog-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    background: #f9f9f9;
    font-style: italic;
    color: #555;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

.blog-content pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    margin: 20px 0;
}

.blog-content code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
}

.blog-content pre code {
    background: none;
    padding: 0;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.blog-content table th,
.blog-content table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.blog-content table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.blog-content hr {
    border: none;
    border-top: 2px solid #eee;
    margin: 30px 0;
}

/* ==========================================
   Image Upload Component
   ========================================== */
.image-upload-container {
    margin-top: 0.5rem;
}

.image-upload-area {
    border: 2px dashed var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-upload-area:hover {
    border-color: var(--primary-color);
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
}

.image-upload-area.dragover {
    border-color: var(--primary-color);
    background: #e6f3ff;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.image-upload-area.has-image {
    padding: 0;
    border: 2px solid var(--success);
    background: transparent;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.upload-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.image-upload-area:hover .upload-icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.upload-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 0;
    font-weight: 600;
}

.upload-content p {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

.upload-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.upload-link:hover {
    color: var(--secondary-color);
}

.upload-content small {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

.image-preview {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.image-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-preview:hover .preview-overlay {
    opacity: 1;
}

.remove-image {
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-image:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-upload-area {
        padding: 1.5rem;
        min-height: 150px;
    }
    
    .upload-icon {
        font-size: 2.5rem;
    }
    
    .upload-content h3 {
        font-size: 1.3rem;
    }
    
    .upload-content p {
        font-size: 0.9rem;
    }
}
