/* Insan Fizik Tedavi - Revamp Style */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0d9488; /* Teal 600 */
    --primary-dark: #0f766e; /* Teal 700 */
    --primary-light: #ccfbf1; /* Teal 100 */
    --secondary-color: #0f172a; /* Slate 900 */
    --text-color: #334155; /* Slate 700 */
    --text-light: #64748b; /* Slate 500 */
    --bg-light: #f8fafc; /* Slate 50 */
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px; /* SEO ve okunabilirlik için minimum 16px */
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Utilities */
.text-primary-custom { color: var(--primary-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}
.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    background: transparent;
}
.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-padding { padding: 80px 0; }
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem; /* 16px - minimum okunabilir boyut */
    line-height: 1.7; /* Okunabilirlik için artırıldı */
}

/* Header */
.navbar {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-color);
}
.navbar-brand span { color: var(--primary-color); }
.nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 10px;
}
.nav-link:hover, .nav-link.active { color: var(--primary-color); }

/* Modern Hero Slider */
.modern-hero-section {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 80px);
    max-height: 800px;
    margin-top: 0;
}

.modern-carousel {
    height: 100%;
    position: relative;
    width: 100%;
}

.modern-carousel.carousel {
    overflow: visible;
}

.modern-carousel .carousel-inner {
    height: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}

.modern-carousel .carousel-inner::after {
    display: none;
}

.modern-carousel .carousel-item {
    height: 100% !important;
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
}

/* Bootstrap carousel-fade için özel ayarlar - TÜM item'lar absolute olmalı */
.modern-carousel.carousel-fade .carousel-item {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.6s ease-in-out !important;
    transform: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.modern-carousel.carousel-fade .carousel-item.active {
    position: absolute !important;
    opacity: 1 !important;
    z-index: 2 !important;
}

.modern-carousel.carousel-fade .carousel-item:not(.active) {
    z-index: 1 !important;
}

/* Bootstrap'in carousel-inner transform'unu devre dışı bırak */
.modern-carousel.carousel-fade .carousel-inner {
    transform: none !important;
}

.modern-slide {
    position: relative;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow: hidden;
    display: block !important;
}

.modern-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.modern-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.05) contrast(1.1);
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.modern-slide-placeholder {
    width: 100%;
    height: 100%;
}

.modern-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.4) 0%, rgba(15, 118, 110, 0.35) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 10;
}

.modern-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100 !important;
    color: white;
    pointer-events: none;
}

.modern-slide-content .container {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px 15px;
    pointer-events: auto;
}

.modern-slide-content .row {
    width: 100%;
    margin: 0;
}

.modern-slide-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem; /* 14px - badge için kabul edilebilir, ama 16px'e çıkarabiliriz */
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.modern-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.7);
}

.modern-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.7);
}

.modern-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.7);
    max-width: 600px;
}

.modern-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 2rem;
}

.btn-modern-primary {
    background: white;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
    background: #f8fafc;
}

.btn-modern-outline {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Modern Carousel Controls */
.modern-control-prev,
.modern-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 10;
}

.modern-control-prev {
    left: 30px;
}

.modern-control-next {
    right: 30px;
}

.modern-control-prev:hover,
.modern-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

.modern-control-prev .carousel-control-prev-icon,
.modern-control-next .carousel-control-next-icon {
    filter: brightness(0) invert(1);
    width: 24px;
    height: 24px;
}

/* Modern Indicators */
.modern-indicators {
    bottom: 40px;
    margin-bottom: 0;
    z-index: 10;
}

.modern-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin: 0 6px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.modern-indicators button:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.6);
}

.modern-indicators button.active {
    background-color: white;
    border-color: white;
    width: 40px;
    border-radius: 6px;
    opacity: 1;
}

/* Hero (Eski - Geriye dönük uyumluluk için) */
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .carousel-item {
    padding: 80px 0;
}
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
}
/* Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.hero-section .carousel-control-prev {
    left: 30px;
}
.hero-section .carousel-control-next {
    right: 30px;
}
.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-color);
}
.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-image {
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}
.hero-section .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-section .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(0);
}
/* Carousel Indicators */
.hero-section .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}
.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    transition: all 0.3s ease;
}
.hero-section .carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Services Cards */
.service-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-light);
}
.service-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}
.service-image-wrapper {
    position: relative;
    overflow: hidden;
}
.service-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(13, 148, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card:hover .service-image-wrapper::after {
    opacity: 1;
}
.service-image-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, #14b8a6 100%);
    position: relative;
    overflow: hidden;
}
.service-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.service-icon-small {
    flex-shrink: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #94a3b8;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    font-size: 1rem; /* 16px - minimum okunabilir boyut */
    line-height: 1.7; /* Okunabilirlik için artırıldı */
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}
footer h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}
footer a {
    color: #94a3b8;
    font-size: 1rem; /* 16px - minimum okunabilir boyut */
    transition: all 0.3s ease;
}
footer a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}
.footer-links a {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
}
.footer-contact li {
    transition: all 0.3s ease;
}
.footer-contact li:hover {
    transform: translateX(5px);
}
.footer-social-link:hover {
    background: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4);
}

/* Team Cards */
.team-card {
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 kare format */
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2f1 100%);
}

.team-member-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; /* Görselin tamamı görünsün, kesilmesin */
    object-position: center center;
    display: block;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.team-card:hover .team-member-image {
    transform: translate(-50%, -50%) scale(1.05);
}

.team-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card:hover .team-image-placeholder {
    transform: scale(1.05);
}

/* Content Styling */
.content {
    color: var(--text-color);
    font-size: 1rem; /* 16px - minimum okunabilir boyut */
    line-height: 1.7; /* Okunabilirlik için artırıldı */
}

.content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content ul, .content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content li {
    margin-bottom: 0.5rem;
}

.content strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.content p {
    margin-bottom: 1.25rem;
    font-size: 1rem; /* 16px - minimum okunabilir boyut */
    line-height: 1.7; /* Okunabilirlik için artırıldı */
}

/* Breadcrumb Modern Style */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--text-light);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Accordion Modern Style */
.accordion-button {
    font-weight: 600;
    color: var(--secondary-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Pagination Modern Style */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 4px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Contact Page Styles */
.contact-card {
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Working Hours */
.working-hours-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

/* Mobile */
@media (max-width: 768px) {
    /* Modern Hero Mobile */
    .modern-hero-section {
        height: 500px;
        max-height: 500px;
        margin-top: 0;
    }
    
    .modern-carousel {
        height: 100%;
    }
    
    .modern-slide {
        height: 100%;
        min-height: 100%;
        max-height: 100%;
    }
    
    .modern-slide-content .container {
        padding: 30px 15px;
    }
    
    .modern-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .modern-subtitle {
        font-size: 1.125rem !important;
        margin-bottom: 1rem !important;
    }
    
    .modern-description {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .modern-badge {
        font-size: 0.875rem !important; /* 14px - mobilde minimum kabul edilebilir */
        padding: 8px 16px !important;
        margin-bottom: 1rem !important;
    }
    
    .modern-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-modern-primary,
    .btn-modern-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 1rem; /* 16px - minimum okunabilir boyut */
    }
    
    .modern-control-prev,
    .modern-control-next {
        width: 45px !important;
        height: 45px !important;
        left: 15px !important;
        right: 15px !important;
    }
    
    .modern-control-prev .carousel-control-prev-icon,
    .modern-control-next .carousel-control-next-icon {
        width: 18px !important;
        height: 18px !important;
    }
    
    .modern-indicators {
        bottom: 20px !important;
    }
    
    .modern-indicators button {
        width: 8px !important;
        height: 8px !important;
        margin: 0 4px !important;
    }
    
    .modern-indicators button.active {
        width: 30px !important;
    }
    
    /* Hero Section Mobile Fixes */
    .hero-section {
        min-height: auto !important;
    }
    .hero-section .carousel-item {
        padding: 40px 0 !important;
        min-height: auto !important;
    }
    .hero-section .carousel-item .container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    /* Hero Content Mobile */
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    .hero-content h2 {
        font-size: 1.25rem !important;
        margin-bottom: 10px !important;
    }
    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }
    .hero-content .lead {
        font-size: 1rem !important;
    }
    
    /* Hero Buttons Mobile */
    .hero-content .btn {
        font-size: 0.9rem !important;
        padding: 10px 20px !important;
        width: 100%;
        margin-bottom: 10px;
    }
    .hero-content .d-flex.flex-wrap {
        flex-direction: column;
    }
    
    /* Hero Image Mobile */
    .hero-section .col-lg-6:last-child {
        margin-top: 30px;
    }
    .hero-image-wrapper {
        min-height: 250px !important;
    }
    .hero-slider-image {
        min-height: 250px !important;
    }
    
    /* Carousel Controls Mobile */
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 40px !important;
        height: 40px !important;
        left: 10px !important;
        right: 10px !important;
        opacity: 0.9;
    }
    .hero-section .carousel-control-prev-icon,
    .hero-section .carousel-control-next-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    /* Carousel Indicators Mobile */
    .hero-section .carousel-indicators {
        bottom: 15px !important;
    }
    .hero-section .carousel-indicators button {
        width: 8px !important;
        height: 8px !important;
        margin: 0 3px !important;
    }
    .hero-section .carousel-indicators button.active {
        width: 24px !important;
    }
    
    /* Section Title Mobile */
    .section-title h2 { font-size: 2rem; }
    .display-4 { font-size: 2rem; }
    
    /* Badge Mobile */
    .hero-content .badge {
        font-size: 0.875rem !important; /* 14px - badge için minimum kabul edilebilir */
        padding: 6px 12px !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 576px) {
    .modern-hero-section {
        height: 450px;
        max-height: 450px;
    }
    
    .modern-title {
        font-size: 1.75rem !important;
    }
    
    .modern-subtitle {
        font-size: 1rem !important;
    }
    
    .modern-description {
        font-size: 1rem !important; /* 16px - minimum okunabilir boyut */
    }
    
    .modern-slide-content .container {
        padding: 20px 15px;
    }
    
    .modern-control-prev,
    .modern-control-next {
        width: 40px !important;
        height: 40px !important;
        left: 10px !important;
        right: 10px !important;
    }
    
    .hero-content h1 {
        font-size: 1.75rem !important;
    }
    .hero-section .carousel-item {
        padding: 30px 0 !important;
    }
    .hero-image-wrapper {
        min-height: 200px !important;
    }
    .hero-slider-image {
        min-height: 200px !important;
    }
}

/* Pop-up Modal Styles */
#campaignPopup .modal-content {
    animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#campaignPopup .popup-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

#campaignPopup .popup-content p {
    margin-bottom: 1rem;
}

#campaignPopup .popup-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

#campaignPopup .modal-header {
    padding: 2rem;
}

#campaignPopup .modal-body {
    padding: 2rem;
}

@media (max-width: 768px) {
    #campaignPopup .modal-dialog {
        margin: 1rem;
    }
    
    #campaignPopup .modal-header {
        padding: 1.5rem;
    }
    
    #campaignPopup .modal-body {
        padding: 1.5rem;
    }
    
    #campaignPopup .popup-content {
        font-size: 1rem;
    }
}

/* Görsel Yükleme Optimizasyonları */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Görsel yükleme animasyonu */
@keyframes imageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

img.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Lokasyonlar Dropdown Menü Stilleri */
#locationsDropdown {
    cursor: pointer;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-item:hover {
    background-color: #f0fdfa;
    color: #0d9488;
    padding-left: 1.5rem;
}

.dropdown-item i {
    font-size: 0.9rem;
}

/* Mobil için dropdown düzenlemesi */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: 1px solid #e0e0e0;
        border-radius: 0;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
    }
}
