/* =============================================
   ANTALYA OMURGA MERKEZİ - ANA STİL DOSYASI
   Prof. Dr. Hasan Özgür Özdemir
   ============================================= */

/* =============================================
   İÇİNDEKİLER
   =============================================
   1. RESET VE TEMEL STİLLER
   2. UTILITY CLASS'LAR
   3. HEADER VE NAVİGASYON
   4. ANA SAYFA STİLLERİ
      - Hero Section
      - Uzmanlıklar
      - Güven Bölümü
      - Referanslar
      - Sertifikalar
      - Blog Bölümü
      - Galeri
      - İletişim
   5. HASTALIKLKR SAYFASI
   6. HAKKIMIZDA SAYFASI
   7. BLOG SAYFASI
   8. İLETİŞİM SAYFASI
   9. FOOTER
   10. RESPONSİVE STİLLER
   11. ANİMASYONLAR
   ============================================= */

/* =============================================
   1. RESET VE TEMEL STİLLER
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide menu close button by default (desktop) */
.menu-close-btn {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   2. UTILITY CLASS'LAR
   ============================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #be0b85, #a0096f);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a0096f, #8a0860);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(190, 11, 133, 0.4);
}

.btn-outline {
    background: transparent;
    color: #be0b85;
    border: 2px solid #be0b85;
}

.btn-outline:hover {
    background: #be0b85;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(190, 11, 133, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #be0b85, #a0096f);
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* =============================================
   3. HEADER VE NAVİGASYON
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.location-info {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.location-info i {
    margin-right: 8px;
    color: #be0b85;
}

.navbar {
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #be0b85;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #be0b85;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

/* =============================================
   4. ANA SAYFA STİLLERİ
   ============================================= */

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 100px 0 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    z-index: -2;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}



.hero-image .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}



/* Hero Content Section - Ayrı Section */
.hero-content-section {
    padding: 0;
    background: #f8f9fa;
    margin-top: -205px;
    position: relative;
    z-index: 10;
}

.hero-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px 20px;
}

.hero-text {
    max-width: 700px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    position: relative;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #be0b85, #a0096f);
    border-radius: 2px;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-text h1 strong {
    color: #be0b85;
    background: linear-gradient(135deg, #be0b85, #a0096f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h2 {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-description {
    margin-bottom: 20px;
}

.hero-description p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #5a6c7d;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
}

/* Services Section */
/* Uzmanlıklar Bölümü */
.services {
    padding: 40px 0 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(190, 11, 133, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.service-btn {
    color: #be0b85;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-btn:hover {
    color: #9c0a6f;
    transform: translateX(5px);
}

.section-btn {
    text-align: center;
}

/* Trust Section */
/* Güven Bölümü */
.trust {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.trust-content {
    position: relative;
    z-index: 1;
}

.trust-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-style: italic;
}

.trust-description {
    margin-bottom: 60px;
}

.trust-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
/* Referanslar Bölümü */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.testimonials-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #be0b85;
    margin-bottom: 40px;
    font-weight: 600;
}

.testimonials-slider {
    position: relative;
    min-height: 200px;
}

.testimonial-item {
    display: none;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #be0b85;
    position: relative;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-item h4 {
    color: #be0b85;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-nav {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.testimonial-btn {
    background: #e9ecef;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #666;
}

.testimonial-btn.active,
.testimonial-btn:hover {
    background: #be0b85;
    color: white;
}

/* Sertifikalar Bölümü */
.certifications {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cert-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: #be0b85;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(190, 11, 133, 0.3);
}

.cert-icon {
    font-size: 3rem;
    color: #be0b85;
    margin-bottom: 20px;
}

.cert-item:hover .cert-icon {
    color: white;
}

.cert-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cert-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cert-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.cert-link {
    color: #be0b85;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cert-item:hover .cert-link {
    color: white;
}

/* Blog Bölümü (Faydalı Bilgiler) */
.blog {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.45)), 
                url('../images/bg-doctor-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: #333;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

#blog .blog-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.blog-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #be0b85;
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-description p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.blog-text .btn {
    background: linear-gradient(135deg, #be0b85, #a0096f);
    color: white;
    margin-top: 30px;
    border: 2px solid #be0b85;
    backdrop-filter: blur(10px);
}

.blog-text .btn:hover {
    background: white;
    color: #be0b85;
    border: 2px solid #be0b85;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(190, 11, 133, 0.3);
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.post-meta {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-link {
    color: #be0b85;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.post-link:hover {
    color: #a0096f;
    text-decoration: underline;
}

/* Galeri Bölümü */
.gallery-section {
    padding: 60px 0;
}

.gallery-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    width: 100%;
}

.gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 450px;
    display: none;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 850px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.gallery-prev,
.gallery-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #fff;
    transform: scale(1.1);
}

/* İletişim Bölümü */
.contact {
    padding: 100px 0 85px 0;
    background: linear-gradient(rgba(190, 11, 133, 0.3), rgba(160, 9, 111, 0.3)), 
                url('../images/bg-doctor-4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    margin-bottom: -5px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.phone-btn i {
    font-size: 2.5rem;
    color: #fff;
}

.phone-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.phone-text {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-form-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Force contact form input visibility */
.contact-form input,
.contact-form textarea {
    width: 100% !important;
    padding: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    font-size: 16px !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400 !important;
    backdrop-filter: blur(5px) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    font-family: 'Roboto', sans-serif !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 25px;
}



/* Footer Styles */
/* =============================================
   9. FOOTER
   ============================================= */

.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0 30px;
    color: #495057;
    border-top: 1px solid #dee2e6;
    margin-top: -15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 300px;
}

.footer-section .footer-link {
    margin-left: 0;
    margin-right: 0;
}

/* Special alignment for the last footer section (Dr. Hülya) */
.footer-section:last-child .footer-link {
    margin-top: auto;
}

.footer-icon {
    font-size: 3rem;
    color: #be0b85;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #343a40;
    font-weight: 600;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 8px;
    color: #6c757d;
}

.footer-link {
    display: inline-block;
    background: linear-gradient(135deg, #be0b85, #a0096f);
    color: white;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(190, 11, 133, 0.3);
    min-width: 90px;
    text-align: center;
}

.footer-link:hover {
    background: linear-gradient(135deg, #a0096f, #8a0860);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(190, 11, 133, 0.4);
    color: white;
    text-decoration: none;
}

/* Phone number styling */
.footer-section a[href^="tel:"] {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin: 6px 0;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    min-width: 120px;
    text-align: center;
}

.footer-section a[href^="tel:"]:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.4);
    color: white;
    text-decoration: none;
}

.footer-logo {
    width: 140px;
    height: 60px;
    margin: 0 0 20px 0;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #dee2e6;
    color: #6c757d;
}

.footer-bottom a {
    color: #be0b85;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #be0b85, #a0096f);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(190, 11, 133, 0.4);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #a0096f, #8a0860);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(190, 11, 133, 0.6);
}

.back-to-top.show {
    display: flex;
}

/* =============================================
   10. RESPONSİVE STİLLER
   ============================================= */

/* Tablet ve Küçük Masaüstü (768px altı) */
@media (max-width: 768px) {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    body {
        padding-top: 0px !important;
    }
    
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        margin: 0 !important;
    }
    
    .container {
        padding: 0 15px;
    }

    .header-top {
        display: block;
        padding: 5px 0;
    }
    
    .header-top-content {
        justify-content: flex-end;
    }
    
    .header-top .logo {
        display: none;
    }
    
    .location-info {
        font-size: 12px;
    }

    .mobile-logo {
        display: block;
    }

    .mobile-logo img {
        height: 35px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        z-index: 1000;
        gap: 30px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        font-size: 1.5rem;
        padding: 15px 20px;
        text-align: center;
        width: 200px;
    }
    
    .menu-close-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 2rem;
        color: #333;
        cursor: pointer;
        z-index: 1001;
    }
    
    .menu-close-btn:hover {
        color: #be0b85;
        transform: scale(1.1);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .whatsapp-btn span {
        display: none;
    }

    .whatsapp-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .hero {
        padding: 0 !important;
        min-height: auto;
        margin: 0 !important;
        position: relative !important;
        z-index: 1 !important;
        top: 0 !important;
    }
    
    .hero-image {
        height: 65vh;
        position: relative;
        z-index: 1;
        margin-top: 0;
        background-position: center 50% !important;
        background-size: cover !important;
    }

    .hero-content-section {
        padding: 0;
        margin-top: -150px;
    }

    .hero-content {
        padding: 30px 20px;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }
    

    .hero-text {
        padding: 35px 25px;
        border-radius: 20px;
        max-width: 95%;
        margin-top: 0;
        position: relative;
        z-index: 1;
        margin-bottom: 20px;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-text h2 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-description {
        margin-bottom: 25px;
    }

    .hero-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
        text-align: center;
        border-radius: 25px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .testimonials-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .testimonials-text {
        order: 2;
    }
    
    .testimonial-nav {
        justify-content: center;
        margin-top: 20px;
    }
    
    .certifications {
        order: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .cert-item {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 250px;
    }
    
    .cert-link {
        margin-top: auto;
    }



    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
    }

    .map {
        display: flex;
        flex-direction: column;
        margin-bottom: 80px;
    }
    
    .map-container {
        order: 1;
        height: 300px;
    }
    
    .map-info {
        order: 2;
        position: static !important;
        background: rgba(255, 255, 255, 0.95);
        margin: 25px auto 140px auto;
        border-radius: 15px;
        padding: 30px 20px;
        text-align: center;
        max-width: 85%;
        width: 85%;
        transform: none !important;
        left: 50% !important;
        top: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        z-index: 1;
        display: block;
    }
    
    .map-info .container {
        padding: 0;
        max-width: 100%;
    }



    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        min-height: 250px;
        text-align: left;
        align-items: flex-start;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-section a[href^="tel:"] {
        padding: 4px 8px;
        font-size: 0.75rem;
        min-width: 100px;
    }

    .footer-link {
        padding: 6px 12px;
        font-size: 0.85rem;
        margin-top: auto;
        margin-bottom: 15px;
        min-width: 80px;
    }

    .footer-section:last-child .footer-link {
        margin-top: auto;
    }

    .gallery-item {
        flex: 0 0 90%;
        min-width: 280px;
    }

    .gallery-nav {
        gap: 10px;
    }

    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Mobile (480px altı) */
@media (max-width: 480px) {
    .hero-text {
        padding: 30px 20px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .trust-text h2,
    .blog-text h2,
    .contact-form-section h2 {
        font-size: 2rem;
    }

    .phone-btn {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .footer-section {
        min-height: 200px;
        text-align: left;
        align-items: flex-start;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-section a[href^="tel:"] {
        padding: 3px 6px;
        font-size: 0.7rem;
        margin: 4px 0;
        min-width: 80px;
    }

    .footer-link {
        padding: 5px 10px;
        font-size: 0.8rem;
        margin-top: auto;
        margin-bottom: 10px;
        min-width: 70px;
    }

    .footer-section:last-child .footer-link {
        margin-top: auto;
    }
    
    .cert-item {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 200px;
    }
    
    .cert-link {
        margin-top: auto;
    }
    
    .testimonial-nav {
        justify-content: center;
        margin-top: 15px;
        gap: 8px;
    }
    
    .testimonial-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Mobil harita düzeni - 480px altı */
    .map {
        display: flex;
        flex-direction: column;
        margin-bottom: 90px;
    }
    
    .map-container {
        order: 1;
        height: 250px;
    }
    
    .map-info {
        order: 2;
        position: static !important;
        background: rgba(255, 255, 255, 0.95);
        margin: 20px auto 120px auto;
        border-radius: 15px;
        padding: 25px 15px;
        text-align: center;
        max-width: 90%;
        width: 90%;
        transform: none !important;
        left: 50% !important;
        top: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        z-index: 1;
        display: block;
    }
}

/* =============================================
   11. ANİMASYONLAR
   ============================================= */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* =============================================
   PAGE HEADER STYLES
   ============================================= */
.page-header {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}



.page-header-content {
    position: relative;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Navigation active state */
.nav a.active {
    color: #be0b85;
    font-weight: 600;
}

/* =============================================
   5. HASTALIKLAR SAYFASI
   ============================================= */
.diseases-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.diseases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.disease-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(190, 11, 133, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(190, 11, 133, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.disease-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #be0b85, #d63384);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.disease-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(190, 11, 133, 0.2);
}

.disease-card:hover::before {
    opacity: 1;
}

.disease-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.disease-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.disease-card:hover .disease-image img {
    transform: scale(1.08);
}

.disease-number {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: linear-gradient(45deg, #be0b85, #d63384);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(190, 11, 133, 0.3);
    z-index: 2;
}

.disease-content {
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.disease-content h3 {
    color: #be0b85;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.disease-content > p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex: 1;
}

.disease-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #be0b85;
    color: #be0b85;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    align-self: flex-start;
}

.disease-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #be0b85, #d63384);
    transition: left 0.3s ease;
    z-index: -1;
}

.disease-btn:hover {
    color: white;
    transform: translateX(5px);
}

.disease-btn:hover::before {
    left: 0;
}

.disease-btn::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.disease-btn:hover::after {
    transform: translateX(3px);
}

/* =============================================
   6. HAKKIMIZDA SAYFASI
   ============================================= */
.about-page {
    padding: 4rem 0;
}

.doctor-intro {
    margin-bottom: 4rem;
}

.doctor-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.doctor-intro-text h2 {
    color: #be0b85;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.doctor-intro-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.doctor-intro-image {
    text-align: center;
}

.doctor-intro-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Timeline Styles */
.timeline-section {
    margin-bottom: 4rem;
}

.timeline-section h2 {
    color: #be0b85;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.timeline-subtitle {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #be0b85, #d63384);
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 100px;
    background: linear-gradient(45deg, #be0b85, #d63384);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 2rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
}

.timeline-content h3 {
    color: #be0b85;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Specialties Section */
.specialties-section {
    margin-bottom: 4rem;
}

.specialties-section h2 {
    color: #be0b85;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.specialty-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-5px);
}

.specialty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.specialty-item h3 {
    color: #be0b85;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.specialty-item p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
}

.gallery-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 450px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1;
}

.gallery-prev,
.gallery-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(190, 11, 133, 0.9);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #9c0a6f;
    transform: scale(1.1);
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: #be0b85;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .gallery-slide {
        height: 400px;
    }
    
    .gallery-nav {
        padding: 0 15px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-slide {
        height: 300px;
    }
    
    .gallery-dots {
        bottom: 10px;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
}

/* Image Modal Styles */
.image-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
        justify-content: center;
        align-items: center;
    }
    
.image-modal-overlay.active {
        display: flex;
    }
    
.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.image-modal-close {
        position: absolute;
    top: -40px;
    right: 0;
        background: none;
        border: none;
    color: white;
    font-size: 24px;
        cursor: pointer;
    padding: 8px;
}

.image-modal-close:hover {
    color: #ddd;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Certificates Section */
.certificates-section {
    padding: 60px 0;
}

.certificates-section h2 {
    color: #be0b85;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.certificates-section > p {
        text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.certificates-grid {
        display: grid;
    grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    padding: 0 15px;
}

.certificate-item {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid transparent;
}

.certificate-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(190, 11, 133, 0.15);
    border-top-color: #be0b85;
}

.certificate-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}



/* =============================================
   BLOG PAGE STYLES
   ============================================= */
/* =============================================
   7. BLOG SAYFASI
   ============================================= */

.blog-page {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-page .container {
    max-width: 1200px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(190, 11, 133, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(190, 11, 133, 0.15);
}

.blog-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.blog-category {
    background: linear-gradient(45deg, #be0b85, #d63384);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    align-self: flex-start;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(190, 11, 133, 0.3);
}

.blog-content h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.blog-content p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.blog-read-more {
    align-self: flex-start;
    margin-top: auto;
    font-size: 0.9rem;
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 2px solid #be0b85;
    color: #be0b85;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more:hover {
    background: linear-gradient(45deg, #be0b85, #d63384);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(190, 11, 133, 0.3);
}



/* Health Tips Section */
.health-tips {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.health-tips h2 {
    color: #be0b85;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-item {
    text-align: center;
    padding: 1.5rem;
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-item h3 {
    color: #be0b85;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */
/* =============================================
   8. İLETİŞİM SAYFASI
   ============================================= */

.contact-page {
    padding: 4rem 0;
    background-color: #f8f9fa;
    min-height: 60vh;
}

/* İletişim Bilgileri Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 800px;
}

.contact-info-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #be0b85, #d63384);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
        font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info-item h4 {
        color: #be0b85;
        font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.contact-info-item p {
    color: #666;
        font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
        text-align: center;
}

.contact-phone,
.contact-email {
    color: #be0b85;
    text-decoration: none;
    font-weight: 500;
}

.contact-phone:hover,
.contact-email:hover {
    color: #a0096f;
}

.contact-info-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section h2,
    .contact-form-section h2 {
    color: #be0b85;
        font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-section p,
.contact-form-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Simple Contact Form */
.simple-contact-form {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-row-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.simple-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.form-row-inline .form-group {
    margin-bottom: 0;
}

.simple-contact-form input,
.simple-contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background-color: #fff;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus {
    outline: none;
    border-color: #be0b85;
}

.simple-contact-form input::placeholder,
.simple-contact-form textarea::placeholder {
    color: #666;
    opacity: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

.contact-submit-btn {
    background: linear-gradient(45deg, #be0b85, #d63384);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(190, 11, 133, 0.3);
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex: 0 0 50px;
    height: 50px;
    background: linear-gradient(45deg, #be0b85, #d63384);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-phone {
    color: #be0b85;
    text-decoration: none;
    font-weight: 600;
}

.contact-phone:hover {
    color: #d63384;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
    font-size: 0.95rem;
    opacity: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #333;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #be0b85;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(190, 11, 133, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.4;
    color: #333;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-label a {
    color: #be0b85;
    text-decoration: none;
}

.checkbox-label a:hover {
    color: #a0096f;
    text-decoration: underline;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.form-group select option {
    background-color: #fff;
    color: #333;
}

.submit-btn {
    background: linear-gradient(45deg, #be0b85, #d63384);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 16px !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(190, 11, 133, 0.3);
}



/* Map Section */
.map {
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
    margin-bottom: -10px;
    margin-top: -2px;
}

.map-container {
    height: 400px;
    margin: 0;
    padding: 0;
    display: block;
    border-radius: 0 !important;
    overflow: hidden;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    display: block;
    border-radius: 0;
}

.map-info {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 400px;
    margin: 0;
}

.map-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.map-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.working-hours h3 {
    color: #be0b85;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
}

/* Emergency Contact */
.emergency-contact {
    text-align: center;
}

.emergency-card {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    padding: 2rem;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
}

.emergency-icon {
    color: #d63384;
}

.emergency-content h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.emergency-content p {
    color: #666;
    margin-bottom: 1rem;
}

.emergency-phone {
    background: linear-gradient(45deg, #be0b85, #d63384);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* =============================================
   RESPONSIVE STYLES FOR NEW PAGES
   ============================================= */
@media (max-width: 1024px) {
    .diseases-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    
    .doctor-intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto;
        max-width: 800px;
        padding: 0 1rem;
    }
    
    .contact-info-section {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .form-row-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .form-row-inline .form-group:last-child {
        grid-column: 1 / -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .diseases-page {
        padding: 2rem 0;
    }
    
    .diseases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .disease-card {
        margin: 0 0.5rem;
    }
    
    .disease-image {
        height: 180px;
    }
    
    .disease-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        top: 1rem;
        left: 1rem;
    }
    
    .disease-content {
        padding: 1.5rem;
    }
    
    .disease-content h3 {
        font-size: 1.2rem;
    }
    
    .disease-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .page-header {
        height: 250px;
    }
    
    .page-header-content {
        transform: translateY(30px);
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        margin: 0;
        width: 80px;
        height: 80px;
    display: flex;
    align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 1rem;
    }
    
    .specialties-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-slider-container {
        max-width: 600px;
    }
    
    .gallery-slide {
        height: 300px;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certificate-item img {
        height: 250px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .blog-content {
        padding: 1.8rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .blog-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .blog-read-more {
        font-size: 0.85rem;
        padding: 0.7rem 1.4rem;
    }
    
    .emergency-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .diseases-page {
        padding: 1.5rem 0;
    }
    
    .diseases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .disease-card {
        margin: 0;
        border-radius: 15px;
    }
    
    .disease-image {
        height: 160px;
    }
    
    .disease-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .disease-content {
        padding: 1rem;
    }
    
    .disease-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .disease-content > p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .disease-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    border-radius: 20px;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-slider-container {
        max-width: 350px;
    }
    
    .gallery-slide {
        height: 250px;
    }
    
    .gallery-nav {
        padding: 0 10px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
    }
    
    .certificate-item img {
        height: 220px;
    }
    
    .page-header-content {
        transform: translateY(40px);
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    #blog .blog-content {
        padding: 1rem;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-page {
        padding: 3rem 0;
    }
    
    .blog-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
        grid-template-columns: 1fr;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-category {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .blog-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .blog-read-more {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem auto;
        max-width: 800px;
        padding: 0 1rem;
    }
    
    .contact-info-section {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .contact-info-item h4 {
        font-size: 1rem;
    }
    
    .contact-info-item p {
        font-size: 0.9rem;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .simple-contact-form {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .simple-contact-form input,
    .simple-contact-form textarea {
        padding: 0.6rem;
        font-size: 0.95rem;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
    }
    
    .simple-contact-form input::placeholder,
    .simple-contact-form textarea::placeholder {
        font-size: 0.95rem;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
    }
    
    .contact-submit-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
    }
    
    .form-row-inline {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-row-inline .form-group {
        margin-bottom: 1.2rem;
    }
}

/* =============================================
   CERTIFICATES MODAL
   ============================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    background: linear-gradient(45deg, #be0b85, #d63384);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body .certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.modal-body .certificate-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.modal-body .certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(190, 11, 133, 0.2);
}

.modal-body .certificate-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-body .certificate-item:hover img {
    transform: scale(1.05);
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: 75vh;
    }
    
    .modal-body .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .modal-body .certificate-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 100vw;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    
    .modal-body .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-body .certificate-item img {
        height: 250px;
    }
}

/* =============================================
   DISEASE DETAIL PAGE
   ============================================= */

/* Page Header */
/* Disease Detail Section */
.disease-detail {
    padding: 5rem 0;
    background: #f8f9fa;
}

.disease-detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #be0b85;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #a0096f;
}

.breadcrumb span {
    margin: 0 8px;
    color: #6c757d;
}

/* Disease Info Layout */
.disease-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.disease-image-section {
    position: sticky;
    top: 200px;
    height: fit-content;
}

.disease-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.disease-content-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.disease-content-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    border-bottom: 3px solid #be0b85;
    padding-bottom: 1rem;
}

/* Content Blocks */
.content-block {
    margin-bottom: 2.5rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #be0b85;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-block h3 i {
    color: #be0b85;
    font-size: 1.2rem;
}

.content-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.content-block p.lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    border-left: 4px solid #be0b85;
    padding-left: 1rem;
    background: rgba(190, 11, 133, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

/* Symptom List */
.symptom-list {
    list-style: none;
    padding: 0;
}

.symptom-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 1rem;
    color: #555;
}

.symptom-list li i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Treatment Highlight */
.treatment-highlight {
    background: linear-gradient(135deg, #be0b85, #a0096f);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
}

.treatment-highlight i {
    font-size: 2rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

.treatment-highlight h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.treatment-highlight p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: white;
    opacity: 1;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    border: 2px solid rgba(190, 11, 133, 0.1);
}

.contact-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-buttons .btn-primary {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.cta-buttons .btn-primary:hover {
    background: #128c7e;
    border-color: #128c7e;
    transform: translateY(-2px);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: #be0b85;
    border: 2px solid #be0b85;
}

.cta-buttons .btn-outline:hover {
    background: #be0b85;
    color: white;
    transform: translateY(-2px);
}

/* Skolyoz Gallery */
.skolyoz-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.skolyoz-gallery .gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f8f9fa;
    position: relative;
    height: 250px;
    width: 100%;
}

.skolyoz-gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(190, 11, 133, 0.2);
}

.skolyoz-gallery .gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.skolyoz-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

/* Image Modal */
.image-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-modal-overlay.active {
    display: flex;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.image-modal-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Related Diseases */
.related-diseases {
    margin-top: 3rem;
}

.related-diseases h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.related-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    padding: 1rem;
    margin: 0;
    text-align: center;
}

/* Disease Detail Responsive Design */
@media (max-width: 768px) {
    .page-header {
        height: 250px;
    }
    
    .page-header-content {
        transform: translateY(30px);
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .disease-detail {
        padding: 3rem 0;
    }
    
    .disease-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .disease-image-section {
        position: static;
    }
    
    .disease-content-section {
        padding: 1.5rem;
    }
    
    .disease-content-section h2 {
        font-size: 2rem;
    }
    
    .treatment-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .skolyoz-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .skolyoz-gallery .gallery-item {
        height: 220px;
    }
    
    .skolyoz-gallery .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 220px;
    }
    
    .page-header-content {
        transform: translateY(40px);
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .disease-content-section {
        padding: 1rem;
    }
    
    .disease-content-section h2 {
        font-size: 1.8rem;
    }
    
    .content-block p.lead {
        padding: 0.8rem;
    }
    
    .treatment-highlight {
        padding: 1rem;
    }
    
    .skolyoz-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* =============================================
   YENİ GLASS TELEFON KUTUSU
   ============================================= */
.phone-glass-container {
    width: 100%;
    max-width: 450px;
}

.phone-glass-btn {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.phone-glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.phone-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.phone-icon-wrapper i {
    font-size: 2.2rem;
    color: white;
}

.phone-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.phone-main-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    display: block;
}

.phone-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .phone-glass-btn {
        padding: 35px 25px;
        gap: 20px;
    }
    
    .phone-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .phone-icon-wrapper i {
        font-size: 2rem;
    }
    
    .phone-main-number {
        font-size: 1.6rem;
    }
    
    .phone-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .phone-glass-btn {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .phone-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .phone-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .phone-main-number {
        font-size: 1.5rem;
    }
    
    .phone-description {
        font-size: 0.85rem;
    }
}

/* TMS Treatment Areas */
.treatment-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.treatment-area {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.treatment-area:hover {
    transform: translateY(-5px);
}

.treatment-area h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.treatment-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treatment-area ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.treatment-area ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* TMS Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.treatment-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.treatment-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.treatment-list li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.25rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .treatment-areas {
        grid-template-columns: 1fr;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .treatment-area {
        padding: 1rem;
    }
}

/* Galeri Bölümü */
.gallery-section h2 {
    color: #be0b85;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 600;
}

/* Ana Sayfa Galerisi */
.main-gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.main-gallery .section-header h2 {
    color: #be0b85;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 600;
}

.main-gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.main-gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 20px 0;
    will-change: transform;
}

.main-gallery-item {
    flex: 0 0 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.main-gallery-prev,
.main-gallery-next {
    background: rgba(190, 11, 133, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.main-gallery-prev:hover,
.main-gallery-next:hover {
    background: #9c0a6f;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .main-gallery-item {
        flex: 0 0 250px;
        height: 350px;
    }
}

/* =============================================
   HARITA MOBİL DÜZEN - ÖNCELİKLİ KURALLAR
   ============================================= */

/* Mobil harita düzeni - Tüm mobil cihazlar için */
@media screen and (max-width: 768px) {
    .map {
        display: flex !important;
        flex-direction: column !important;
        margin-bottom: 40px !important;
    }
    
    .map-container {
        order: 1 !important;
        height: 300px !important;
    }
    
    .map-info {
        order: 2 !important;
        position: static !important;
        background: rgba(255, 255, 255, 0.95) !important;
        margin: 25px auto 40px auto !important;
        border-radius: 15px !important;
        padding: 30px 20px !important;
        text-align: center !important;
        max-width: 85% !important;
        width: 85% !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        z-index: 1 !important;
        display: block !important;
    }
}

/* Küçük mobil cihazlar için */
@media screen and (max-width: 480px) {
    .map {
        display: flex !important;
        flex-direction: column !important;
        margin-bottom: 30px !important;
    }
    
    .map-container {
        order: 1 !important;
        height: 250px !important;
    }
    
    .map-info {
        order: 2 !important;
        position: static !important;
        background: rgba(255, 255, 255, 0.95) !important;
        margin: 20px auto 30px auto !important;
        border-radius: 15px !important;
        padding: 25px 15px !important;
        text-align: center !important;
        max-width: 90% !important;
        width: 90% !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
        z-index: 1 !important;
        display: block !important;
    }
}


