/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* GLOBAL RENK DEĞİŞTİRME KURALLARI - TURKUVAZ-BEYAZ TEMA */

/* Tüm #20B2AA renklerini #20B2AA ile değiştir */
*[style*="#20B2AA"],
*[class*="primary"],
.bg-primary {
    background-color: #20B2AA !important;
    border-color: #20B2AA !important;
}

/* Tüm #27A0B0 renklerini #48D1CC ile değiştir */
*[style*="#27A0B0"],
*[class*="secondary"],
.bg-secondary {
    background-color: #48D1CC !important;
    border-color: #48D1CC !important;
}

/* Tüm linear-gradient'leri turkuvaz-beyaz gradyan ile değiştir */
*[style*="linear-gradient(135deg, #20B2AA, #27A0B0)"] {
    background: linear-gradient(135deg, #20B2AA, #E0F6FF) !important;
}

/* Spesifik CSS sınıfları için renk değişiklikleri */
.hero-section,
.page-header,
.media-section,
.calendar-section,
.contact-cta-section,
.blog-cta-section,
.treatment-hero,
.quick-appointment-section,
.devices-cta-section,
.exercises-cta-section,
.corporate-cta-section,
.media-cta-section,
.diseases-cta-section,
.newsletter-section,
.stats-section {
    background: linear-gradient(135deg, #20B2AA, #E0F6FF) !important;
}

/* Buton ve ikon renkleri */
.feature-icon,
.treatment-icon,
.contact-icon,
.info-icon,
.rule-icon,
.area-icon,
.tip-icon,
.mission-icon,
.stat-icon,
.platform-icon,
.disease-icon {
    background: linear-gradient(135deg, #20B2AA, #48D1CC) !important;
}

/* Hover efektleri */
.body-region:hover,
.treatment-category-link:hover,
.category-item:hover,
.category-item.active,
.media-category-item:hover,
.media-category-item.active,
.blog-category-item:hover,
.blog-category-item.active,
.disease-category-item:hover,
.disease-category-item.active {
    background: linear-gradient(135deg, #20B2AA, #E0F6FF) !important;
}

/* CSS Değişkenleri - Turkuvaz-Beyaz Tema */
:root {
    --primary-color: #20B2AA;
    --secondary-color: #48D1CC;
    --accent-color: #40E0D0;
    --light-turquoise: #AFEEEE;
    --very-light-turquoise: #E0F6FF;
    --white: #FFFFFF;
    --dark-text: #2F4F4F;
    --light-text: #708090;
    --gradient-primary: linear-gradient(135deg, #20B2AA, #E0F6FF);
    --gradient-secondary: linear-gradient(135deg, #48D1CC, #FFFFFF);
    --gradient-accent: linear-gradient(135deg, #40E0D0, #F0FFFF);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.preloader-content img {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.preloader-content p {
    font-size: 20px;
    font-weight: 600;
    animation: pulse 1.5s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Üst İletişim Çubuğu */
.top-bar {
    background: linear-gradient(135deg, #20B2AA, #9AC3E3);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info .material-icons {
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    color: white;
    text-decoration: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(30, 144, 255, 0.1); /* Cornflower Blue */
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link .material-icons {
    font-size: 16px;
}

/* Ana Header */
.main-header {
    background: 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: 15px 0;
}

.logo a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo h1 {
    color: #20B2AA;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    transition: all 0.3s ease;
}

.logo a:hover h1 {
    color: #48D1CC;
}

.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav .nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav .nav-menu li a:hover,
.main-nav .nav-menu li a.active {
    color: #2038B2;
}

.main-nav .nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #20B2AA;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    color: #333;
}

.mobile-menu-toggle .material-icons {
    font-size: 28px;
}

/* Dropdown Menu - Genel */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 18px !important;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* MASAÜSTÜ MEGA MENU - Sadece masaüstü için */
.desktop-only {
    display: block;
}

.mega-dropdown .mega-menu.desktop-only {
    position: absolute;
    top: 100%;
    left: -400px;
    background: white;
    min-width: 1400px;
    width: 1400px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    overflow: hidden;
}

.mega-dropdown:hover .mega-menu.desktop-only {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    padding: 30px 40px;
}

.body-regions-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.body-region {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.body-region:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
    border-color: transparent;
}

.region-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.body-region:hover .region-icon {
    transform: scale(1.1);
}

.region-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.body-region:hover .region-icon img {
    filter: brightness(1.2);
}

.body-region h4 {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.body-region:hover h4 {
    color: white;
}

.body-region ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.body-region ul li {
    margin-bottom: 3px;
}

.body-region ul li a {
    color: #666;
    text-decoration: none;
    font-size: 9px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 2px 0;
    border-radius: 3px;
}

.body-region:hover ul li a {
    color: rgba(255, 255, 255, 0.9);
}

.body-region ul li a:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 5px;
}

.mega-menu-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 25px;
}

.all-treatments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.treatment-category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.treatment-category-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
}

.treatment-category-link .material-icons {
    font-size: 20px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.treatment-category-link:hover .material-icons {
    color: white;
}

/* MOBİL DROPDOWN MENU - Sadece mobil için */
.mobile-only {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    margin-top: 10px;
    border-radius: 15px;
    padding: 0;
    list-style: none;
    width: auto;
    min-width: auto;
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.4s ease;
}

.mobile-only.show {
    max-height: 80vh;
    padding: 20px;
}

.mobile-mega-content {
    width: 100%;
}

.mobile-body-regions {
    margin-bottom: 20px;
}

.mobile-body-region {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 8px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.mobile-body-region:hover {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.2);
}

.mobile-region-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mobile-body-region:hover .mobile-region-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-region-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.mobile-body-region:hover .mobile-region-icon img {
    filter: brightness(1.2);
}

.mobile-body-region h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.mobile-body-region:hover h4 {
    color: white;
}

.mobile-treatment-categories {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.mobile-treatment-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 8px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.mobile-treatment-link:hover {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.2);
}

.mobile-treatment-link .material-icons {
    font-size: 20px;
    color: #20B2AA;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-treatment-link:hover .material-icons {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.05);
}

.mobile-treatment-link span {
    flex: 1;
    transition: color 0.3s ease;
}

.mobile-treatment-link:hover span {
    color: white;
}


/* Page Header */
.page-header {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 300px;
    padding: 60px 0;
    position: relative;
}

/* Treatment Hero Content - Sadece tedavi sayfaları için */
.treatment-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-text {
    flex: 1;
    color: white;
    position: relative;
    z-index: 4;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    letter-spacing: 2px;
    text-align: center;
}

.animated-title {
    transition: all 0.5s ease-in-out;
    transform: translateY(0);
    opacity: 1;
}

.hero-character {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 300px;
}

.hero-image {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50px);
}

.character-img {
    max-width: 120%;
    max-height: 105%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.character-img:hover {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
    transform: translateX(1px);
}

.hero-wave .wave-animation {
    /* Animasyon kaldırıldı - sabit dalga efekti */
}

/* Responsive dalga yüksekliği */
@media (max-width: 768px) {
    .hero-wave {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .hero-wave {
        height: 60px;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title.animate-slide-left {
    animation: slideInLeft 0.6s ease-out;
}

.hero-title.animate-slide-right {
    animation: slideInRight 0.6s ease-out;
}

.hero-title.animate-zoom {
    animation: zoomIn 0.6s ease-out;
}

.hero-title.animate-fade-up {
    animation: fadeInUp 0.6s ease-out;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #20B2AA;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(32, 178, 170, 0.3);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(32, 178, 170, 0.3);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-image {
    flex: 1;
    text-align: right;
    position: relative;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 5;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon .material-icons {
    color: white;
    font-size: 32px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Media Section */
.media-section {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 0px 0;
    color: white;
}

.media-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.media-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
}

.media-text p {
    color: white;
    white-space: nowrap;
}

.media-images {
    display: flex;
    gap: 20px;
}

.media-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 200px;
    height: 150px;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Treatment Methods Section */
.treatment-methods-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.treatment-item {
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.treatment-item:hover {
    border-left-color: #20B2AA;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.treatment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.treatment-icon .material-icons {
    color: white;
    font-size: 24px;
}

.treatment-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.treatment-item p {
    color: #666;
    line-height: 1.6;
}

/* Calendar Section */
.calendar-section {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 60px 0;
    color: white;
}

.calendar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.calendar-text h2 {
    font-size: 2rem;
    font-weight: 600;
}

.btn-calendar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #20B2AA;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-calendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.blog-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-item.active {
    display: flex;
}

.blog-item:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    flex: 1;
    padding: 30px;
}

.blog-category {
    background: #20B2AA;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-date {
    color: #666;
    font-size: 14px;
    margin-left: 15px;
}

.blog-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 15px 0;
    color: #333;
    line-height: 1.3;
}

.blog-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #20B2AA;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
}

.blog-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #20B2AA;
    transform: scale(1.2);
}

.blog-view-all {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #20B2AA, #20B2AA);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Buton Stilleri */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #48D1CC, #20B2AA);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    background: linear-gradient(135deg, #20B2AA, #20B2AA);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-view-all:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-view-all .material-icons {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover .material-icons {
    transform: translateX(3px);
}

/* Responsive Buton Stilleri */
@media (max-width: 768px) {
    .btn-view-all {
        padding: 12px 24px;
        font-size: 14px;
        gap: 8px;
    }
    
    .btn-view-all .material-icons {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .btn-view-all {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
        max-width: 250px;
        margin: 0 auto;
    }
}

.no-blog-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-blog-posts .material-icons {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-blog-posts h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.no-blog-posts p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 60px 0;
    color: white;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 600;
}

.btn-contact {
    color: #20B2AA !important; /* Yazı rengi turkuaz */
    background: white !important; /* Arka plan beyaz */
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #20B2AA;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1.8fr 2fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.footer-brand p {
    color: #bdc3c7;
    font-size: 14px;
    opacity: 0.9;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bdc3c7;
    font-size: 14px;
}

.contact-item .material-icons {
    color: white;
    font-size: 18px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.link-group h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.link-group a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.link-group a:hover {
    color: #20B2AA;
    padding-left: 5px;
}

.footer-social h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #95a5a6;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #20B2AA;
}

.footer-legal span {
    color: #7f8c8d;
}

/* Sabit İletişim Butonları */
.fixed-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.phone-btn {
    background: #2196F3;
}

.whatsapp-btn {
    background: #25D366;
}

.close-btn {
    background: #95a5a6;
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.fixed-contact-buttons.minimized .phone-btn,
.fixed-contact-buttons.minimized .whatsapp-btn {
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
        padding: 40px 0;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-character {
        height: 280px;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 10px;
    }
    
    .hero-image {
        width: 350px;
        height: 350px;
        transform: translateY(40px);
    }
    
    .character-img {
        max-width: 130%;
        max-height: 130%;
    }
    
    .wow-text {
        font-size: 2rem;
        padding: 10px 20px;
        top: 10px;
        right: 20px;
    }
    
    .character-image {
        width: 200px;
        height: 200px;
    }
    
    .pop-art-woman {
        width: 180px;
        height: 200px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .contact-info span {
        justify-content: center;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Footer Responsive */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 40px;
        text-align: center;
    }
    
    .link-group {
        text-align: center;
        align-items: center;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }
    
    .main-nav .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }
    
    .main-nav .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Masaüstü için mega menu göster, mobil dropdown gizle */
    .desktop-only {
        display: block;
    }
    
    .mobile-only {
        display: none;
    }
    
    /* Mobilde mega menu gizle, dropdown göster */
    .mega-dropdown .mega-menu.desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 10px;
        border-radius: 5px;
        padding: 10px 0;
        list-style: none;
        grid-template-columns: 1fr;
        gap: 0;
        min-width: auto;
        width: auto;
    }
    
    .mobile-only li {
        margin: 0;
    }
    
    .mobile-only li a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 10px 15px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 13px;
        transition: all 0.3s ease;
        border-radius: 0;
        background: transparent;
        border: none;
        margin-bottom: 0;
    }
    
    .mobile-only li a:hover {
        background: #e9ecef;
        color: #20B2AA;
        transform: none;
        box-shadow: none;
    }
    
    .mobile-only li a .material-icons {
        font-size: 18px;
        color: #20B2AA;
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .mobile-only li a:hover .material-icons {
        background: #20B2AA;
        color: white;
    }
    
    .dropdown-arrow {
        display: inline-block;
        font-size: 16px !important;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        align-items: center;
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 350px;
    }
    
    .media-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .media-text h2 {
        font-size: 2rem;
        white-space: normal;
    }
    
    .media-text p {
        white-space: normal;
    }
    
    .media-images {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .calendar-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .calendar-text h2 {
        font-size: 1.5rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-text h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-slider {
        max-width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-item {
        flex-direction: column;
        margin: 0 10px;
    }
    
    .blog-image {
        flex: none;
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .treatment-grid {
        grid-template-columns: 1fr;
    }
    
    .fixed-contact-buttons {
        right: 15px;
        bottom: 15px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .media-text h2 {
        font-size: 1.5rem;
    }
    
    .calendar-text h2 {
        font-size: 1.2rem;
    }
    
    .cta-text h2 {
        font-size: 1.2rem;
    }
    
    .blog-slider {
        grid-template-columns: 1fr;
    }
    
    .blog-item {
        margin: 0 10px;
    }
    
    .treatment-item {
        padding: 20px;
    }
    
.feature-item {
    padding: 20px 15px;
}
}

/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.contact-cards {
    display: grid;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .material-icons {
    color: white;
    font-size: 24px;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

/* İletişim Formu */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #20B2AA;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 30px 0;
}


.checkbox-label a {
    color: #000000 !important;      /* Siyah renk */
    font-weight: 700 !important;    /* Kalın yazı */
    text-decoration: none;          /* Alt çizgiyi kaldırmak istersen */
}


.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #20B2AA;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #20B2AA, #2068f4);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3); /* turkuaz gölge */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #48D1CC, #2068f4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.4); /* hover gölge */
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.submit-btn .material-icons {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .material-icons {
    transform: translateX(3px);
}

.success-message,
.error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Harita Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Responsive İletişim */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Randevu Sayfası Stilleri */
.appointment-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.appointment-form-section {
    text-align: center;
}

.appointment-form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

/* Randevu Bilgileri Section */
.appointment-info-section {
    padding: 80px 0;
    background: white;
}

.appointment-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon .material-icons {
    color: white !important;
    font-size: 24px;
}

.info-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.info-details p {
    color: #666;
    line-height: 1.6;
}

/* Randevu Formu */
.appointment-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Hızlı Randevu Section */
.quick-appointment-section {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 60px 0;
    color: white;
}

.quick-appointment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.quick-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.quick-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.quick-buttons {
    display: flex;
    gap: 20px;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2196F3;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

/* Randevu Kuralları Section */
.appointment-rules-section {
    padding: 80px 0;
    background: white;
}

.appointment-rules-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.rule-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.rule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rule-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.rule-icon .material-icons {
    color: white;
    font-size: 32px;
}

.rule-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.rule-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Randevu */
@media (max-width: 768px) {
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .appointment-form {
        padding: 30px 20px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quick-appointment-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .quick-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-phone,
    .btn-whatsapp {
        width: 200px;
        justify-content: center;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rule-item {
        padding: 25px 20px;
    }
}

/* Cihazlarımız Sayfası Stilleri */
.devices-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.section-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.device-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.device-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.device-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.device-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.device-item:hover .device-image img {
    transform: scale(1.1);
}

.device-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 178, 170, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.device-item:hover .device-overlay {
    opacity: 1;
}

.device-overlay .material-icons {
    color: white;
    font-size: 48px;
}

.device-content {
    padding: 30px;
}

.device-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.device-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.device-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Cihaz Özellikleri Section */
.device-features-section {
    padding: 80px 0;
    background: white;
}

.device-features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon .material-icons {
    color: white;
    font-size: 32px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Tedavi Alanları Section */
.treatment-areas-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.treatment-areas-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.treatment-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.treatment-area {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.treatment-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.area-icon .material-icons {
    color: white;
    font-size: 28px;
}

.treatment-area h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.treatment-area ul {
    list-style: none;
    padding: 0;
}

.treatment-area ul li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.treatment-area ul li:last-child {
    border-bottom: none;
}

.treatment-area ul li:before {
    content: '•';
    color: #20B2AA;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Cihazlar CTA Section */
.devices-cta-section {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 80px 0;
    color: white;
}

.devices-cta-section .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.devices-cta-section .cta-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    white-space: nowrap;
}

.devices-cta-section .cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.devices-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-appointment {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #20B2AA;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Cihazlar */
@media (max-width: 768px) {
    .devices-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .device-item {
        margin: 0 10px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .treatment-areas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .devices-cta-section .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .devices-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-appointment,
    .btn-contact {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .device-content {
        padding: 20px;
    }
    
    .treatment-area {
        padding: 20px;
    }
}

/* Egzersizler Sayfası Stilleri */
.exercise-categories-section {
    padding: 60px 0;
    background: white;
}

.exercise-categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.categories-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 120px;
}

.category-item:hover,
.category-item.active {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.category-item .material-icons {
    font-size: 32px;
    transition: all 0.3s ease;
}

.category-item:hover .material-icons,
.category-item.active .material-icons {
    color: white;
}

.category-item span {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

/* Egzersizler Section */
.exercises-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.exercises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.exercise-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.exercise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.exercise-media {
    position: relative;
    height: 250px;
    overflow: hidden;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* PDF Container */
.pdf-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.pdf-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #666;
}

.pdf-preview .material-icons {
    font-size: 80px;
    color: #dc3545;
}

.pdf-preview span {
    font-size: 18px;
    font-weight: 600;
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.exercise-item:hover .image-container img {
    transform: scale(1.1);
}

/* Media Type Badge */
.media-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.media-type-badge.video {
    background: #dc3545;
}

.media-type-badge.pdf {
    background: #fd7e14;
}

.media-type-badge.image {
    background: #198754;
}

.media-type-badge .material-icons {
    font-size: 16px;
}

/* Exercise Content */
.exercise-content {
    padding: 30px;
}

.exercise-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.exercise-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.exercise-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.duration,
.difficulty {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.difficulty.easy {
    color: #198754;
}

.difficulty.medium {
    color: #fd7e14;
}

.difficulty.hard {
    color: #dc3545;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Egzersiz İpuçları Section */
.exercise-tips-section {
    padding: 80px 0;
    background: white;
}

.exercise-tips-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.tip-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tip-icon .material-icons {
    color: white;
    font-size: 32px;
}

.tip-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
}

/* Egzersizler CTA Section */
.exercises-cta-section {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 80px 0;
    color: white;
}

.exercises-cta-section .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.exercises-cta-section .cta-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.exercises-cta-section .cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.exercises-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
}

/* Responsive Egzersizler */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-item {
        min-width: auto;
        padding: 15px;
    }
    
    .category-item span {
        font-size: 12px;
    }
    
    .exercises-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .exercise-content {
        padding: 20px;
    }
    
    .exercise-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .exercises-cta-section .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .exercises-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-appointment,
    .btn-contact {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tip-item {
        padding: 20px 15px;
    }
    
    .exercise-media {
        height: 200px;
    }
}

/* Kurumsal Sayfası Stilleri */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #20B2AA;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.credentials {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #20B2AA;
}

.credentials h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.credentials ul li:before {
    content: '✓';
    color: #20B2AA;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.expertise-item {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: #333;
    border: 2px solid #20B2AA;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: #20B2AA;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
}

/* Misyon Vizyon Section */
.mission-vision-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon .material-icons {
    color: white;
    font-size: 36px;
}

.mission-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.mission-item p {
    color: #666;
    line-height: 1.7;
}

/* Eğitim Section */
.education-section {
    padding: 80px 0;
    background: white;
}

.education-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.education-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 0 30px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* İstatistikler Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Tedavi Yaklaşımı Section */
.approach-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

/* Bütüncül Tedavi Anlayışı */
.approach-intro {
    text-align: center;
    margin-bottom: 60px;
}

.approach-intro h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.approach-intro p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.approach-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-item .material-icons {
    color: white;
    font-size: 28px;
    background: linear-gradient(135deg, #20B2AA, #0070df);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item span {
    font-weight: 500;
    color: #333;
    text-align: center;
    font-size: 14px;
}

/* Tedavi Süreci */
.treatment-process {
    text-align: center;
    margin-top: 60px;
}

.treatment-process h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.process-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.process-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Kurumsal CTA Section */
.corporate-cta-section {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 80px 0;
    color: white;
}

.corporate-cta-section .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.corporate-cta-section .cta-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.corporate-cta-section .cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.corporate-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
}

/* Responsive Kurumsal */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .education-timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 100px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .approach-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .corporate-cta-section .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .corporate-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-appointment,
    .btn-contact {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .step-item {
        padding: 20px;
    }
    
    .mission-item {
        padding: 30px 20px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Medya Sayfası Stilleri */
.media-categories-section {
    padding: 60px 0;
    background: white;
}

.media-categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.media-categories-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.media-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 120px;
}

.media-category-item:hover,
.media-category-item.active {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.media-category-item .material-icons {
    font-size: 32px;
    transition: all 0.3s ease;
}

.media-category-item:hover .material-icons,
.media-category-item.active .material-icons {
    color: white;
}

.media-category-item span {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

/* Medya İçerikleri Section */
.media-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.media-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.media-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.media-media {
    position: relative;
    height: 250px;
    overflow: hidden;
}

/* Video Container */
.media-media .video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.media-media .video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* News Container */
.news-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.news-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #666;
}

.news-preview .material-icons {
    font-size: 80px;
    color: #fd7e14;
}

.news-preview span {
    font-size: 18px;
    font-weight: 600;
}

/* Image Container */
.media-media .image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.media-media .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-item:hover .media-media .image-container img {
    transform: scale(1.1);
}

/* Media Type Badge */
.media-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.media-type-badge.video {
    background: #dc3545;
}

.media-type-badge.image {
    background: #198754;
}

.media-type-badge.news {
    background: #fd7e14;
}

.media-type-badge.interview {
    background: #6f42c1;
}

.media-type-badge .material-icons {
    font-size: 16px;
}

/* Media Content */
.media-content {
    padding: 30px;
}

.media-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.media-content p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.media-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.media-date,
.media-duration,
.media-views,
.media-source {
    display: flex;
    align-items: center;
}

.no-media .material-icons {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-media h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.no-media p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Medya İstatistikleri Section */
.media-stats-section {
    padding: 80px 0;
    background: white;
}

.media-stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon .material-icons {
    color: white;
    font-size: 32px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    display: block;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

/* Sosyal Medya Section */
.social-media-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.social-media-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.social-platform {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-platform:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.platform-icon.youtube {
    background: #ff0000;
}

.platform-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.platform-icon.facebook {
    background: #1877f2;
}

.platform-icon .material-icons {
    color: white;
    font-size: 36px;
}

.social-platform h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.social-platform p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.platform-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Medya CTA Section */
.media-cta-section {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 80px 0;
    color: white;
}

.media-cta-section .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.media-cta-section .cta-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.media-cta-section .cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.media-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
}

/* Responsive Medya */
@media (max-width: 768px) {
    .media-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .media-category-item {
        min-width: auto;
        padding: 15px;
    }
    
    .media-category-item span {
        font-size: 12px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .media-info {
        padding: 20px;
    }
    
    .media-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .social-platforms {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-platform {
        padding: 30px 20px;
    }
    
    .media-cta-section .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .media-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-appointment,
    .btn-contact {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .media-categories-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .media-thumbnail {
        height: 200px;
    }
    
    .platform-stats {
        flex-direction: column;
        gap: 5px;
    }
}

/* Blog Sayfası Stilleri */
.blog-categories-section {
    padding: 60px 0;
    background: white;
}

.blog-categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.blog-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
}

.blog-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 120px;
    width: 100%;
}

.blog-category-item:hover,
.blog-category-item.active {
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.blog-category-item .material-icons {
    font-size: 32px;
    transition: all 0.3s ease;
}

.blog-category-item:hover .material-icons,
.blog-category-item.active .material-icons {
    color: white;
}

.blog-category-item span {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

/* Blog İçerikleri Section */
.blog-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-post-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-post-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-item:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.blog-category-badge.fibromiyalji {
    background: #20B2AA;
}

.blog-category-badge.tedavi {
    background: #48D1CC;
}

.blog-category-badge.egzersiz {
    background: #40E0D0;
}

.blog-category-badge.beslenme {
    background: #AFEEEE;
}

.blog-category-badge.saglik {
    background: #20B2AA;
}

.blog-post-content {
    padding: 30px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-content h3 {
    margin-bottom: 15px;
}

.blog-post-content h3 a {
    color: #333;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-post-content h3 a:hover {
    color: #20B2AA;
}

.blog-post-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #20B2AA;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #27A0B0;
    transform: translateX(5px);
}

/* Blog İstatistikleri */
.blog-stats-section {
    padding: 80px 0;
    background: white;
}

.blog-stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 80px 0;
    color: white;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    margin: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #20B2AA;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Blog CTA Section */
.blog-cta-section {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 80px 0;
    color: white;
}

.blog-cta-section .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.blog-cta-section .cta-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-cta-section .cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.blog-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
}

/* Blog Detay Sayfası Stilleri */
.blog-detail-header {
    background: linear-gradient(135deg, #20B2AA, #E0F6FF);
    padding: 80px 0;
    color: white;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.blog-breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.blog-breadcrumb a:hover {
    opacity: 1;
}

.blog-breadcrumb .material-icons {
    font-size: 16px;
    opacity: 0.6;
}

.blog-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
}

.blog-excerpt {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar .material-icons {
    font-size: 24px;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 600;
    font-size: 16px;
}

.publish-date {
    font-size: 14px;
    opacity: 0.8;
}

.blog-stats {
    display: flex;
    gap: 20px;
}

.read-time,
.view-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    opacity: 0.8;
}

/* Blog İçerik */
.blog-detail-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-main-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-featured-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* İçindekiler */
.table-of-contents {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid #20B2AA;
}

.table-of-contents h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents ul li {
    margin-bottom: 10px;
}

.table-of-contents ul li a {
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.table-of-contents ul li a:hover {
    color: #20B2AA;
    padding-left: 10px;
}

/* Blog Makale İçeriği */
.blog-article-content {
    line-height: 1.8;
    color: #333;
}

.blog-article-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #20B2AA;
}

.blog-article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333;
}

.blog-article-content p {
    margin-bottom: 20px;
    color: #666;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-article-content ul li,
.blog-article-content ol li {
    margin-bottom: 10px;
    color: #666;
}

.blog-article-content strong {
    color: #333;
    font-weight: 600;
}

/* FAQ Bölümü */
.faq-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.faq-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #20B2AA;
    color: white;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-question .material-icons {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .material-icons {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Paylaşım Butonları */
.blog-share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.blog-share h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    color: white;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-sidebar .author-card {
    position: sticky;
    top: 150px;
}

.blog-sidebar .sidebar-cta {
    position: sticky;
    top: 500px;
}

/* Yazar Kartı */
.author-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.author-avatar-large .material-icons {
    color: white;
    font-size: 36px;
}

.author-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.author-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.author-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: #20B2AA;
    color: white;
    transform: translateY(-2px);
}

/* İlgili Yazılar */
.related-posts {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.related-posts h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.related-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.related-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-post-content h4 {
    margin-bottom: 8px;
}

.related-post-content h4 a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: #20B2AA;
}

.related-post-date {
    font-size: 12px;
    color: #666;
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, #20B2AA, #E0F6FF);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.sidebar-cta h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.sidebar-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #20B2AA;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .blog-category-item {
        min-width: auto;
        padding: 15px 10px;
        font-size: 12px;
    }
    
    .blog-category-item .material-icons {
        font-size: 24px;
    }
    
    .blog-category-item span {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-post-content {
        padding: 20px;
    }
    
    .blog-post-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-cta-section .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .blog-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-appointment,
    .btn-contact {
        width: 200px;
        justify-content: center;
    }
    
    /* Blog Detay Responsive */
    .blog-header-content h1 {
        font-size: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-main-content {
        padding: 30px 20px;
    }
    
    .table-of-contents {
        padding: 20px;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-categories-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-featured-image img {
        height: 250px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* Hastalıklar Sayfası Stilleri */
.disease-categories-section {
    padding: 60px 0;
    background: white;
}

.disease-categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.disease-categories-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.disease-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 120px;
}

.disease-category-item:hover,
.disease-category-item.active {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.disease-category-item .material-icons {
    font-size: 32px;
    transition: all 0.3s ease;
}

.disease-category-item:hover .material-icons,
.disease-category-item.active .material-icons {
    color: white;
}

.disease-category-item span {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

/* Hastalıklar Section */
.diseases-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.diseases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.disease-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.disease-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.disease-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.disease-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.disease-icon .material-icons {
    color: white;
    font-size: 28px;
}

.disease-title {
    flex: 1;
}

.disease-title h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.3;
}

.disease-category-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.disease-category-badge.fibromiyalji {
    background: #20B2AA;
}

.disease-category-badge.agri {
    background: #dc3545;
}

.disease-category-badge.eklem {
    background: #2196F3;
}

.disease-category-badge.kas {
    background: #4CAF50;
}

.disease-category-badge.sinir {
    background: #27A0B0;
}

.disease-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.symptoms-section {
    margin-bottom: 25px;
}

.symptoms-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.symptoms-section h4:before {
    content: '•';
    color: #20B2AA;
    font-size: 20px;
}

.symptoms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.symptoms-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.symptoms-list li:last-child {
    border-bottom: none;
}

.symptoms-list li:before {
    content: '→';
    color: #20B2AA;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.treatment-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.treatment-info h4:before {
    content: '⚕';
    color: #20B2AA;
    font-size: 18px;
}

.treatment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.treatment-tag {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.treatment-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.3);
}

/* Hastalık İstatistikleri Section */
.disease-stats-section {
    padding: 80px 0;
    background: white;
}

.disease-stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

/* Tanı Süreci Section */
.diagnosis-process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.diagnosis-process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Hastalıklar CTA Section */
.diseases-cta-section {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 80px 0;
    color: white;
}

.diseases-cta-section .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.diseases-cta-section .cta-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.diseases-cta-section .cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.diseases-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
}

/* Responsive Hastalıklar */
@media (max-width: 768px) {
    .disease-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .disease-category-item {
        min-width: auto;
        padding: 15px;
    }
    
    .disease-category-item span {
        font-size: 12px;
    }
    
    .diseases-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .disease-item {
        padding: 25px 20px;
    }
    
    .disease-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .disease-title h3 {
        font-size: 1.2rem;
    }
    
    .treatment-tags {
        justify-content: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step {
        padding: 25px 20px;
    }
    
    .diseases-cta-section .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .diseases-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-appointment,
    .btn-contact {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .disease-categories-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .disease-item {
        padding: 20px 15px;
    }
    
    .disease-icon {
        width: 50px;
        height: 50px;
    }
    
    .disease-icon .material-icons {
        font-size: 24px;
    }
    
    .symptoms-list li {
        padding: 6px 0;
        font-size: 14px;
    }
    
    .treatment-tag {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 13px;
    }
}

/* Dolu Saatler için Stiller */
.appointment-form select option.booked-time {
    color: #999;
    background-color: #f8f9fa;
    font-style: italic;
}

.appointment-form select option:disabled {
    color: #999 !important;
    background-color: #f8f9fa !important;
}

/* Tedavi Sayfaları Stilleri */
.treatment-hero {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    padding: 100px 0 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.treatment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.treatment-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 300px;
    padding: 60px 0;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.breadcrumb a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
}

.breadcrumb .current {
    color: white;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Tedaviler Grid */
.treatments-grid {
    padding: 80px 0;
    background: #f8f9fa;
}

.treatments-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.treatment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.treatment-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-image img {
    transform: scale(1.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image .material-icons {
    font-size: 80px;
    color: #666;
}

.treatment-content {
    padding: 30px;
}

.treatment-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.treatment-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.treatment-info {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.info-item .material-icons {
    font-size: 18px;
    color: #20B2AA;
}

.treatment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #20B2AA, #1e3a8a); /* Turkuaz → Koyu Mavi */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.treatment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3); /* Hafif mavi gölge */
}

.no-treatments {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-treatments .material-icons {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Tedavi CTA Section */
.treatment-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #20B2AA, #98EDFA);
    color: white;
}

.treatment-cta .cta-content {
    text-align: center;
}

.treatment-cta .cta-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
}

.treatment-cta .cta-content p {
    font-size: 1.2rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.treatment-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: white;
    color: #20B2AA;
    border: 2px solid #20B2AA;
}

.btn-secondary:hover {
    background: #20B2AA;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Tedavi Detay Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.treatment-modal {
    max-width: 900px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #20B2AA, #20B2AA);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.close-btn .material-icons {
    font-size: 20px;
}

.modal-body {
    padding: 30px;
}

/* Tedavi Detay İçeriği */
.treatment-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.treatment-detail-image {
    border-radius: 15px;
    overflow: hidden;
}

.treatment-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.treatment-detail-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.treatment-meta {
    text-align: center;
}

.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #20B2AA, #27A0B0);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.treatment-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #20B2AA;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.info-card .material-icons {
    font-size: 24px;
    color: #20B2AA;
    transition: color 0.3s ease;
}

.info-card:hover .material-icons {
    color: white;
}

.info-card div h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    transition: color 0.3s ease;
}

.info-card:hover div h4 {
    color: white;
}

.info-card div p {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

.info-card:hover div p {
    color: white;
}

.treatment-content {
    line-height: 1.8;
    color: #333;
}

.treatment-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333;
    border-bottom: 2px solid #20B2AA;
    padding-bottom: 10px;
}

.treatment-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 12px;
    color: #333;
}

.treatment-content p {
    margin-bottom: 15px;
    color: #666;
}

.treatment-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.treatment-content ul li {
    margin-bottom: 8px;
    color: #666;
}

.treatment-benefits {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #4CAF50;
}

.treatment-benefits h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.treatment-benefits h3 .material-icons {
    color: #4CAF50;
    font-size: 24px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #e9ecef;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li .material-icons {
    color: #4CAF50;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.treatment-process {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #2196F3;
}

.treatment-process h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.treatment-process h3 .material-icons {
    color: #2196F3;
    font-size: 24px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #20B2AA, #20B2AA);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.treatment-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.loading {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading .material-icons {
    font-size: 48px;
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
    text-align: center;
    padding: 60px 20px;
    color: #dc3545;
}

.error .material-icons {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Responsive Tedavi Sayfaları */
@media (max-width: 768px) {
    .treatment-hero {
        padding: 80px 0 60px 0;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .breadcrumb {
        margin-bottom: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .breadcrumb a {
        padding: 3px 8px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .treatments-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .treatment-card {
        margin: 0 10px;
    }
    
    .treatment-content {
        padding: 25px 20px;
    }
    
    .treatment-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .treatment-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .treatment-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .treatment-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .treatment-image {
        height: 200px;
    }
    
    .treatment-content {
        padding: 20px 15px;
    }
    
    .treatment-title {
        font-size: 1.2rem;
    }
    
    .treatment-detail-image img {
        height: 200px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .treatment-benefits,
    .treatment-process {
        padding: 20px 15px;
    }
    
    .process-step {
        padding: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Contact Buttons Container */
.contact-buttons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Phone Horizontal Button */
.phone-horizontal-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2196F3;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.phone-horizontal-button a:hover {
    transform: translateY(-3px);
    box-shadow: none;
    background: #1976D2;
}

.phone-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* İletişim sayfasındaki kutuların hover çerçevelerini turkuaz yapar */
.contact-info div:hover,
.contact-info .info-box:hover,
.address-box:hover,
.phone-box:hover,
.email-box:hover {
    border-color: #20B2AA !important;       /* Turkuaz çerçeve */
    box-shadow: 0 5px 15px rgba(32,178,170,0.3) !important; /* Turkuaz gölge */
    transition: all 0.3s ease !important;
}

.phone-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* WhatsApp Horizontal Button */
.whatsapp-horizontal-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.whatsapp-horizontal-button a:hover {
    transform: translateY(-3px);
    box-shadow: none;
    background: #128C7E;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile Contact Buttons */
@media (max-width: 768px) {
    .contact-buttons-container {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }
    
    .phone-horizontal-button a,
    .whatsapp-horizontal-button a {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .phone-icon,
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
    
    .phone-icon svg,
    .whatsapp-icon svg {
        width: 18px;
        height: 18px;
    }
}


@media (max-width: 480px) {
    .contact-buttons-container {
        bottom: 15px;
        right: 15px;
        gap: 6px;
    }
    
    .phone-horizontal-button a,
    .whatsapp-horizontal-button a {
        padding: 8px 14px;
        font-size: 12px;
        gap: 8px;
    }
    
    .phone-icon,
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
    
    .phone-icon svg,
    .whatsapp-icon svg {
        width: 16px;
        height: 16px;
    }
}
/* TURUNCU TONLARI TEMİZLEME – İLETİŞİM SAYFASI BUTONU */
.submit-btn,
.submit-btn:hover,
.submit-btn:active {
    background: linear-gradient(135deg, #20B2AA, #48D1CC) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.4) !important;
}

@media (max-width: 768px) { /* Mobil ekranlar */
    .top-bar .contact-info {
        display: flex;
        justify-content: space-between; /* Sol-sağ eşit boşluk */
        align-items: center; /* Dikey ortala */
        flex-wrap: nowrap; /* Tek satırda kalsın */
    }

    .top-bar .contact-info span {
        display: flex;
        align-items: center;
        gap: 5px; /* ikon ile metin arası boşluk */
    }
}
