/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    overflow-x: hidden;
}

/* Modern Header */
.site-header-modern {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

/* Top Bar */
.header-top {
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-info-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.top-info-item i {
    opacity: 0.9;
}

.header-top a {
    transition: all 0.3s ease;
}

.header-top a:hover {
    opacity: 0.85;
    text-decoration: underline !important;
}

.social-links-top a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.social-links-top a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Main Navbar */
.site-header-modern .navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.modern-brand {
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-img {
    max-height: 60px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.modern-brand:hover .logo-img {
    transform: scale(1.05);
}

.brand-text {
    line-height: 1.3;
}

.brand-name {
    font-size: 1.25rem;
    color: #0066cc;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 0.125rem;
}

.modern-brand:hover .brand-name {
    color: #00a8e8;
}

/* Responsive brand */
@media (max-width: 991px) {
    .brand-name {
        font-size: 1.1rem;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    .logo-img {
        max-height: 50px;
    }
}

/* Navigation Links */
.navbar-nav .nav-link {
    font-weight: 600;
    color: #2c3e50 !important;
    padding: 0.75rem 1.25rem !important;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link i {
    opacity: 0.7;
    font-size: 0.875rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0066cc !important;
    background: rgba(0, 102, 204, 0.05);
}

.navbar-nav .nav-link.active {
    font-weight: 700;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #00a8e8);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* Language Switcher Modern */
.language-switcher-modern {
    display: flex;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.25rem;
    border-radius: 50px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    color: #6c757d;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: transparent;
}

.lang-btn .flag-emoji {
    font-size: 1.2rem;
}

.lang-btn .lang-code {
    font-weight: 600;
}

.lang-btn:hover {
    color: #0066cc;
    background: rgba(0, 102, 204, 0.1);
}

.lang-btn.active {
    background: #0066cc;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

/* Appointment Button */
.btn-appointment {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

/* Scrolled State */
.site-header-modern.scrolled .navbar {
    padding: 0.5rem 0;
}

.site-header-modern.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }

    .btn-appointment {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }

    .language-switcher-modern {
        margin-top: 1rem;
        justify-content: center;
    }
}

/* Modern Footer */
.site-footer-modern {
    margin-top: auto;
}

.footer-main {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.footer-main .container {
    position: relative;
    z-index: 1;
}

/* Footer Brand */
.footer-brand-name {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.footer-brand-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-logo {
    max-height: 60px;
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-logo {
    transform: scale(1.05);
}

/* Social Links */
.social-links-footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links-footer .social-icon:hover {
    background: #0066cc;
    border-color: #00a8e8;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Footer Headings */
.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #00a8e8);
    border-radius: 2px;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-link:hover {
    color: #00a8e8;
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact li {
    margin-bottom: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact a:hover {
    color: #00a8e8 !important;
}

/* Footer Bottom */
.footer-bottom {
    background: #000;
}

.footer-bottom .hover-primary:hover {
    color: #00a8e8 !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 !important;
    }

    .footer-brand-name {
        font-size: 1.25rem;
    }

    .footer-logo {
        max-height: 50px;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .social-links-footer {
        justify-content: center;
        margin: 1.5rem 0;
    }

    .footer-contact li,
    .footer-links li {
        /*text-align: center;*/
    }
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

/* ============================================
   KLINIKLER THEME STYLES
   ============================================ */

/* Hero Section */
.hero-section-klinikler {
    background: linear-gradient(135deg, #0066cc 0%, #00a8e8 50%, #00d4ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section-klinikler::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons .btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats h3 {
    font-size: 2.5rem;
    color: #fff;
}

.hero-image-wrapper {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.floating-card {
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-shape {
    z-index: 1;
}

/* Services Section */
.services-section-klinikler {
    padding: 100px 0;
    background: #fff;
}

.service-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: #0066cc;
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.2);
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0066cc, #00a8e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.service-icon-wrapper i {
    font-size: 2.5rem;
    color: #fff;
}

.service-card-modern h4 {
    color: #2c3e50;
    font-size: 1.5rem;
}

.service-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: #00a8e8;
    transform: translateX(5px);
}

/* About Section */
.about-section-klinikler {
    padding: 100px 0;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Team Section */
.team-section-klinikler {
    padding: 100px 0;
    background: #fff;
}

.team-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.team-card-modern:hover {
    transform: translateY(-10px);
    border-color: #0066cc;
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.2);
}

.team-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f0f0f0;
    transition: all 0.4s ease;
}

.team-card-modern:hover .team-image-wrapper {
    border-color: #0066cc;
    transform: scale(1.05);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card-modern:hover .team-image {
    transform: scale(1.1);
}

.team-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066cc, #00a8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.team-card-modern:hover .team-overlay {
    opacity: 1;
}

.team-social a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.team-social a:hover {
    transform: scale(1.2);
}

/* Blog Section */
.blog-section-klinikler {
    padding: 100px 0;
}

.blog-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    border-color: #0066cc;
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.2);
}

.blog-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-modern:hover .blog-image {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 102, 204, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card-modern:hover .blog-overlay {
    opacity: 1;
}

.blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.blog-link:hover {
    color: #00a8e8;
    transform: translateX(5px);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #0066cc, #00a8e8);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0052a3, #0088c7);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.btn-outline-primary {
    border: 2px solid #0066cc;
    color: #0066cc;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #0066cc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-control {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .language-switcher {
        justify-content: center;
        margin-top: 10px;
    }

    .hero-section-klinikler {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-section-klinikler,
    .about-section-klinikler,
    .team-section-klinikler,
    .blog-section-klinikler {
        padding: 60px 0;
    }

    .service-card-modern,
    .team-card-modern,
    .blog-card-modern {
        margin-bottom: 30px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: #0066cc;
    color: #fff;
}

::-moz-selection {
    background: #0066cc;
    color: #fff;
}

/* ============================================
   PAGE HEADER & BREADCRUMB
   ============================================ */

.page-header-klinikler {
    background: linear-gradient(135deg, #0066cc 0%, #00a8e8 50%, #00d4ff 100%);
    position: relative;
    overflow: hidden;
}

.page-header-klinikler::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.breadcrumb-klinikler {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #00a8e8;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    padding: 0 0.5rem;
}

/* ============================================
   BLOG LISTING & DETAIL
   ============================================ */

.blog-listing-klinikler {
    background: #fff;
}

.blog-date-badge {
    font-size: 0.9rem;
    line-height: 1.2;
    min-width: 60px;
    text-align: center;
}

.blog-article {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.blog-featured-image img {
    transition: transform 0.5s ease;
}

.blog-featured-image:hover img {
    transform: scale(1.02);
}

.blog-content-modern {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #2c3e50;
}

.blog-content-modern h1,
.blog-content-modern h2,
.blog-content-modern h3,
.blog-content-modern h4 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content-modern p {
    margin-bottom: 1.5rem;
}

.blog-content-modern img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
}

.blog-share {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
}

.related-blog-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 15px;
}

.related-blog-card:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.related-blog-image {
    width: 100px;
    height: 80px;
    object-fit: cover;
}

.sidebar-widget {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

/* ============================================
   PAGE CONTENT
   ============================================ */

.page-content-klinikler {
    background: #fff;
}

.page-content-modern {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #2c3e50;
}

.page-content-modern h1,
.page-content-modern h2,
.page-content-modern h3,
.page-content-modern h4 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content-modern p {
    margin-bottom: 1.5rem;
}

.page-content-modern img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
}

.page-cta {
    background: linear-gradient(135deg, #0066cc, #00a8e8);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
}

.page-cta h4 {
    color: #fff;
}

.page-cta p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section-klinikler {
    background: #f8f9fa;
}

.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.contact-form-modern .form-control {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-form-modern .form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.hours-item {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.hours-item:last-child {
    border-bottom: none;
}

/* ============================================
   TEAM LISTING
   ============================================ */

.team-listing-klinikler {
    background: #fff;
}

/* ============================================
   GALLERY LISTING
   ============================================ */

.gallery-listing-klinikler {
    background: #fff;
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item-modern {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.gallery-item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.2);
}

.gallery-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-modern:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item-modern:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    margin-bottom: 15px;
}

.gallery-caption {
    padding: 0 20px;
    text-align: center;
}

.video-card-modern {
    transition: all 0.4s ease;
}

.video-card-modern:hover {
    transform: translateY(-5px);
}

.section-header {
    text-align: center;
}

/* ============================================
   CERTIFICATES LISTING
   ============================================ */

.certificates-listing-klinikler {
    background: #fff;
}

.certificate-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.certificate-card-modern:hover {
    transform: translateY(-10px);
    border-color: #0066cc;
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.2);
}

.certificate-image-wrapper {
    height: 250px;
    overflow: hidden;
}

.certificate-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.certificate-card-modern:hover .certificate-image {
    transform: scale(1.1);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.certificate-card-modern:hover .certificate-overlay {
    opacity: 1;
}

.certificate-placeholder {
    border-radius: 20px 20px 0 0;
}

.certificate-content {
    background: #fff;
}

/* Pagination */
.pagination .page-link {
    color: #0066cc;
    border-color: #e9ecef;
    border-radius: 10px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #0066cc, #00a8e8);
    border-color: #0066cc;
    color: #fff;
}
